AssemblyCSharp.VectorEx.ReplaceX C# (CSharp) Method

ReplaceX() public static method

public static ReplaceX ( this lhs, float val ) : Vector3
lhs this
val float
return UnityEngine.Vector3
        public static Vector3 ReplaceX(this Vector3 lhs, float val)
        {
            lhs.x = val;
            return lhs;
        }