SettingsCompiler.Direction.Direction C# (CSharp) 메소드

Direction() 공개 메소드

public Direction ( float x, float y, float z ) : System
x float
y float
z float
리턴 System
        public Direction(float x, float y, float z)
        {
            X = x;
            Y = y;
            Z = z;
        }
    }
Direction