SettingsCompiler.Orientation.Orientation C# (CSharp) Method

Orientation() public method

public Orientation ( float x, float y, float z, float w ) : System
x float
y float
z float
w float
return System
        public Orientation(float x, float y, float z, float w)
        {
            X = x;
            Y = y;
            Z = z;
            W = w;
        }
    }
Orientation