GlobalTransform.Scale

GlobalTransform.Scale property

Gets the scale

public Vector3 Scale { get; }

Examples

Scene scene = Scene.FromFile("test.fbx");
var tr = scene.RootNode.GlobalTransform;
Console.WriteLine($"Scale = {tr.Scale}");

See Also