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;
        }