1
This commit is contained in:
parent
5af52aa19a
commit
6452f850e1
@ -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,
|
||||
|
@ -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
|
||||
{
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user