This is probably easy to answer! I’m fairly new with game development and I’m working to learn Xenko.
I have working:
- A sprite based entity (vehicle) that I can move around with W, A, S, D on top of another sprite (Map).
When I add physics or the character collider to the vehicle entity and add a flat 2D box collider to the map I can see that the vehicle does not fall through the map. However after adding the colliders the vehicle is no longer able to move around with W, A, S, D. It makes a small motion toward the direction and then regresses back. It looks like the position is not really being updated. Remove the colliders and it works as above.
Is there some fundamental physics property that I’m not understanding? Or some relative update to position required? Any assistance is appreciated.
-Jarmo