Parsing.ParseVector3 C# (CSharp) Method

ParseVector3() public static method

public static ParseVector3 ( string literal, Vector3 &result ) : bool
literal string
result Vector3
return bool
    public static bool ParseVector3(string literal, ref Vector3 result)
    {
        //Debug.Log("Parsing " + literal + " as Decimal3");
        var i = 0;
        return ParseVector3(literal, ref i, ref result);
    }

Same methods

Parsing::ParseVector3 ( string literal, int &from, Vector3 &result ) : bool