Transform.GeometricRotation

Transform.GeometricRotation property

Gets or sets the geometric Euler rotation(measured in degree). Geometric transformation only affects the entities attached and leave the child nodes unaffected. It will be merged as local transformation when you export the geometric transformation to file types that does not support it.

public Vector3 GeometricRotation { get; set; }

Examples

Node node = new Node();
node.getTransform().setGeometricRotation(new Vector3(90, 0, 0));

See Also