Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SerializedPropertyNumericType

Returns the precise type for Integer or Floating point properties.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Enum
  • Namespace: UnityEditor
  • Assembly: UnityEditor
public enum SerializedPropertyNumericType

Remarks

Fields

Value

Description

DoubleRepresents a double precision (64 bit) floating point type.
FloatRepresents a single precision (32 bit) floating point type.
Int16Represents a 16 bit signed integer (short).
Int32Represents a 32 bit signed integer.
Int64Represents a 64 bit signed integer (long).
Int8Represents an 8 bit signed integer (sbyte).
UInt16Represents a 16 bit unsigned integer (ushort).
UInt32Represents a 32 bit unsigned integer (uint).
UInt64Represents a 64 bit unsigned integer (ulong).
UInt8Represents an 8 bit unsigned integer (byte).
UnknownRepresents a type that is not a numeric type.