Can i get a script like the unity transform .translate or transform.rotate
In Flax the transform is inside the actor so you can do like:
// to get transform value
var myTransform = Actor.Transform;
// to move actor up
Actor.Position += new Vector3(0, 10, 0);
// to rotate actor
Actor.LookAt(new Vector3(0, 10, 0));
Thanks men, great engine by the way