How do I change the position of a body element programatically?
I've tried
body.SetPosition( 0, 0 );
body.SetPosition( { x: 0, y: 0 } );
body.SetPosition( ).x = 0;
body.SetPosition( ).y = 0;
None of the tutorials seem to cover this either - they simply cover how to make an entity and let physics do the rest. I'm trying to manually be able to move the entity, and if needed, give it a new position (e.g teleportation)