SetPropertyInt
Sets a PlayerSettings named int property.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor
SetPropertyInt(string, int, BuildTargetGroup)
Sets a PlayerSettings named int property.
public static void SetPropertyInt(string name, int value, BuildTargetGroup target)
Parameters
Name of the property.
Value of the property (int).
BuildTarget for which the property should apply (use default value BuildTargetGroup.Unknown to apply to all targets).
Remarks
Additional Resources: PlayerSettings.GetPropertyInt.
SetPropertyInt(string, int)
Sets a PlayerSettings named int property.
public static void SetPropertyInt(string name, int value)
Parameters
Remarks
Additional Resources: PlayerSettings.GetPropertyInt.
SetPropertyInt(string, int, BuildTarget)
Sets a PlayerSettings named int property.
public static void SetPropertyInt(string name, int value, BuildTarget target)
Parameters
Name of the property.
Value of the property (int).
BuildTarget for which the property should apply (use default value BuildTargetGroup.Unknown to apply to all targets).
Remarks
Additional Resources: PlayerSettings.GetPropertyInt.