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
Once the entity was spawned, it would just stay still at the spawn location even when MoveToAction was being called and a CharacterMoveInputEvent was being sent. In this scenario, both the location component of the entity and the target field of the MinionMoveComponent would point to the right places, but the entity would just not move. The CharacterMoveInputEvent would have the right fields but the character would not move.
Scenario 2:
The spawned entity starts moving in the direction of the target block but fails to stop at the target position. It would continue moving in a straight line indefinitely. Sometimes, the location component would point to the initial spawn point and would not get updated but the target field of the MinionMoveComponent would point to the right place.
Scenario 3:
Some times, the target would point to the spawn position itself and the entity would remain stuck at that position thinking it had reached its final position even though it hadn't.
The text was updated successfully, but these errors were encountered:
Investigating the
move_to
behavior nodeWhen trying to use the
move_to
behavior node in TutorialPathfinding , there were a couple of issues I came across that led to unexpected behavior.Related to Terasology/MetalRenegades#70
Scenario 1:
Once the entity was spawned, it would just stay still at the spawn location even when
MoveToAction
was being called and aCharacterMoveInputEvent
was being sent. In this scenario, both the location component of the entity and the target field of theMinionMoveComponent
would point to the right places, but the entity would just not move. TheCharacterMoveInputEvent
would have the right fields but the character would not move.Scenario 2:
The spawned entity starts moving in the direction of the target block but fails to stop at the target position. It would continue moving in a straight line indefinitely. Sometimes, the location component would point to the initial spawn point and would not get updated but the target field of the MinionMoveComponent would point to the right place.
Scenario 3:
Some times, the target would point to the spawn position itself and the entity would remain stuck at that position thinking it had reached its final position even though it hadn't.
The text was updated successfully, but these errors were encountered: