This commit is contained in:
aozhiwei 2022-12-20 11:06:17 +08:00
parent 5af52aa19a
commit 6452f850e1
3 changed files with 6 additions and 14 deletions

View File

@ -208,7 +208,12 @@ static void InternalCreateBullet(BulletInfo& bullet_info)
}
bullet_uniid = bullet_uniid ? bullet_uniid : c->room->AllocUniid();
#ifdef DEBUG
a8::XPrintf("bullet_born_pos:%f,%f\n", {bullet_info.bullet_born_pos.x, bullet_info.bullet_born_pos.y});
a8::XPrintf("bullet_born_pos:%f,%f,%f\n",
{
bullet_info.bullet_born_pos.x,
bullet_info.bullet_born_pos.y,
bullet_info.bullet_born_pos.z,
});
#endif
c->room->frame_event.AddBullet
(bullet_uniid,

View File

@ -99,13 +99,6 @@ message MFTupleString
repeated string values = 1; //values
}
//2d
message MFVec2
{
optional float x = 1; //x轴
optional float y = 2; //y轴
}
//3d
message MFVec3
{

View File

@ -1,11 +1,5 @@
package metatable;
message MFPair
{
optional int32 key = 1; //key
optional int32 value = 2; //val
}
message Parameter
{
optional string param_name = 1;