Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

SerializedProperty.intValue

public int intValue;

Description

Value of an integer property.

Contains a valid value when propertyType is SerializedPropertyType.Integer. For accessing sbyte, byte, short, ushort, int and uint properties. If you are accessing long or ulong properties use longValue instead.

When assigning a value to intValue, the value is clamped in the range of the property's declared type. For example, a property that is declared as a byte is clamped between 0 and 255.

See Also: longValue, propertyType, SerializedPropertyType.Integer.