You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case an entity with a PhysicsBody is created inside another entity with PhysicsBody, the beginContact callback from PhysicsContact is triggered before the entity has been initialized (init has not been called in the script) and the entity has no entityId.
Expected behaviour : beginContact call is deferred until the script attached to the entity has been initialized and the entityId has been assigned.
Situation where I encountered this issue :
When two entities are really close and one fires a projectile at the other, the projectile entity is created inside the other one.
The text was updated successfully, but these errors were encountered:
In case an entity with a
PhysicsBody
is created inside another entity withPhysicsBody
, thebeginContact
callback fromPhysicsContact
is triggered before the entity has been initialized (init
has not been called in the script) and the entity has noentityId
.Expected behaviour :
beginContact
call is deferred until the script attached to the entity has beeninit
ialized and theentityId
has been assigned.Situation where I encountered this issue :
When two entities are really close and one fires a projectile at the other, the projectile entity is created inside the other one.
The text was updated successfully, but these errors were encountered: