Returns the precise type for Integer or Floating point properties.
Additional resources: SerializedProperty.numericType, SerializedProperty.intValue, SerializedProperty.uintValue, SerializedProperty.longValue, SerializedProperty.ulongValue, SerializedProperty.floatValue, SerializedProperty.doubleValue.
Unknown | Represents a type that is not a numeric type. |
Int8 | Represents an 8 bit signed integer (sbyte). |
UInt8 | Represents an 8 bit unsigned integer (byte). |
Int16 | Represents a 16 bit signed integer (short). |
UInt16 | Represents a 16 bit unsigned integer (ushort). |
Int32 | Represents a 32 bit signed integer. |
UInt32 | Represents a 32 bit unsigned integer (uint). |
Int64 | Represents a 64 bit signed integer (long). |
UInt64 | Represents a 64 bit unsigned integer (ulong). |
Float | Represents a single precision (32 bit) floating point type. |
Double | Represents a double precision (64 bit) floating point type. |