TressFXLib.HairStrandVertex.GetTressFXPosition C# (CSharp) Метод

GetTressFXPosition() публичный Метод

Creates a 4-component tressfx position vector. Tressfx uses the first 3 components for the actual world position (XYZ) and the fourth component as "movable flag". If the movable flag is 0, the hair is immovable. If it is > 0 it is movable.
public GetTressFXPosition ( ) : System.Vector4
Результат System.Vector4
        public Vector4 GetTressFXPosition()
        {
            return new Vector4(this.position, (this.isMovable ? 1 : 0));
        }