Class UnityGameSettingsGetFloatValueOutput
Unity-specific output DTO for float game setting values.
Extends the base GameSettingsGetFloatValueOutput with Unity foundation integration
for type-safe float game settings retrieval results.
Namespace: Serenity.GameSettings.InterfaceAdapters.DTO
Assembly: Serenity.UnityGlobal.InterfaceAdapters.dll
Syntax
public class UnityGameSettingsGetFloatValueOutput : GameSettingsGetFloatValueOutput
Constructors
UnityGameSettingsGetFloatValueOutput(string, float)
Initializes a new instance of the UnityGameSettingsGetFloatValueOutput with float value.
Creates output data containing the setting ID and float value result.
Declaration
public UnityGameSettingsGetFloatValueOutput(string id, float value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the float game setting |
| float | value | Float value of the game setting |
UnityGameSettingsGetFloatValueOutput(string, string)
Initializes a new instance of the UnityGameSettingsGetFloatValueOutput with string value.
Creates output data containing the setting ID and string representation of float value.
Declaration
public UnityGameSettingsGetFloatValueOutput(string id, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | id | Unique identifier of the float game setting |
| string | value | String representation of the float value |