|
static T[] | ArrayMinSize< T > (int minSize, T[] array) |
| Ensure the array has at least minSize elements. More...
|
|
static string[] | ParseArray (string text, params char[] separators) |
| Returns a string array of the values separated by the optional separators More...
|
|
static string[] | ParseArray (string text, StringSplitOptions options, params char[] separators) |
| Returns returns a string array of the values separated by a comma in a string More...
|
|
static bool | TryParseBoolArray (string text, out bool[]flags) |
| Parse a string to an array of boolean flags More...
|
|
static bool | TryParseColor (string text, out Color result) |
|
static bool | TryParseColor32 (string text, out Color32 result) |
|
static bool | TryParseEnumIntArray< T > (string text, out T[]flags) |
| Parse a string to an array of enum flags represented as ints More...
|
|
static bool | TryParseQuaternion (string text, out Quaternion result) |
|
static bool | TryParseQuaternionD (string text, out QuaternionD result) |
|
static bool | TryParseRect (string text, out Rect result) |
|
static bool | TryParseVector2 (string text, out Vector2 result) |
| Returns true if the string can be parsed into a Vector2 and stores the result into the out More...
|
|
static bool | TryParseVector2d (string text, out Vector2d result) |
| Returns true if the string can be parsed into a Vector2d and stores the result into the out More...
|
|
static bool | TryParseVector3 (string text, out Vector3 result) |
| Returns true if the string can be parsed into a Vector3 and stores the result into the out More...
|
|
static bool | TryParseVector3d (string text, out Vector3d result) |
| Returns true if the string can be parsed into a Vector3d and stores the result into the out More...
|
|
static bool | TryParseVector4 (string text, out Vector4 result) |
| Returns true if the string can be parsed into a Vector4 and stores the result into the out More...
|
|
static bool | TryParseVector4d (string text, out Vector4d result) |
| Returns true if the string can be parsed into a Vector4d and stores the result into the out More...
|
|