AssemblyCSharp.VectorEx.ReplaceZ C# (CSharp) 메소드

ReplaceZ() 공개 정적인 메소드

public static ReplaceZ ( this lhs, float val ) : Vector3
lhs this
val float
리턴 UnityEngine.Vector3
        public static Vector3 ReplaceZ(this Vector3 lhs, float val)
        {
            lhs.z = val;
            return lhs;
        }