Class UnityGameSettingsSetIntValueInput
Unity-specific input DTO for setting integer game setting values. Extends the base GameSettingsSetIntValueInput with Unity foundation integration for type-safe integer game settings modification operations.
Namespace: Serenity.InterfaceAdapters.DTO
Assembly: Serenity.UnityGlobal.InterfaceAdapters.dll
Syntax
public class UnityGameSettingsSetIntValueInput : GameSettingsSetIntValueInput
Constructors
UnityGameSettingsSetIntValueInput(string, int)
Initializes a new instance of the UnityGameSettingsSetIntValueInput with integer value.
Creates input data for setting an integer game setting value by ID.
Declaration
public UnityGameSettingsSetIntValueInput(string id, int value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the integer game setting to modify |
| int | value | New integer value to set for the game setting |
UnityGameSettingsSetIntValueInput(string, string)
Initializes a new instance of the UnityGameSettingsSetIntValueInput with string value.
Creates input data for setting an integer game setting using string representation.
Declaration
public UnityGameSettingsSetIntValueInput(string id, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the integer game setting to modify |
| string | value | String representation of the integer value to set |