AssemblyCSharp.VectorEx.ReplaceZ C# (CSharp) Méthode

ReplaceZ() public static méthode

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