AssemblyCSharp.VectorEx.ReplaceY C# (CSharp) Method

ReplaceY() public static method

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