Class UISetting_Text
UISetting subclass representing a setting
with a numeric or string value using a simple text input field.
Can be used to read in integer and float values as strings.
Inheritance
object
UISetting_Text
Namespace: AS2.UI
Assembly: .dll
Syntax
public class UISetting_Text : UISetting
Constructors
|
Edit this page
View Source
UISetting_Text(GameObject, Transform, string, string, InputType)
Declaration
public UISetting_Text(GameObject go, Transform parentTransform, string name, string text, UISetting_Text.InputType inputType)
Parameters
Type |
Name |
Description |
GameObject |
go |
|
Transform |
parentTransform |
|
string |
name |
|
string |
text |
|
UISetting_Text.InputType |
inputType |
|
Fields
|
Edit this page
View Source
input
Declaration
private TMP_InputField input
Field Value
Type |
Description |
TMP_InputField |
|
|
Edit this page
View Source
inputType
Declaration
private UISetting_Text.InputType inputType
Field Value
|
Edit this page
View Source
onValueChangedEvent
Declaration
public Action<string, string> onValueChangedEvent
Field Value
Type |
Description |
Action<string, string> |
|
|
Edit this page
View Source
prevText
Declaration
Field Value
Methods
|
Edit this page
View Source
ClearRefs()
Clears all subclass-specific callback events.
Declaration
protected override void ClearRefs()
Overrides
|
Edit this page
View Source
GetValueString()
Access to the current value.
Declaration
public override string GetValueString()
Returns
Type |
Description |
string |
The current value of the setting as a string.
|
Overrides
|
Edit this page
View Source
IsInputValid(string)
Declaration
protected bool IsInputValid(string input)
Parameters
Type |
Name |
Description |
string |
input |
|
Returns
|
Edit this page
View Source
LockSetting()
Locks the setting to prevent changes.
Declaration
protected override void LockSetting()
Overrides
|
Edit this page
View Source
OnValueChanged()
Declaration
private void OnValueChanged()
|
Edit this page
View Source
SetInteractableState(bool)
Sets the setting's interactable state.
Declaration
protected override void SetInteractableState(bool interactable)
Parameters
Type |
Name |
Description |
bool |
interactable |
The new interactable state.
|
Overrides
|
Edit this page
View Source
SetValueString(string)
The inverse of GetValueString().
If calling both methods after each other, nothing should change.
Declaration
public override void SetValueString(string input)
Parameters
Type |
Name |
Description |
string |
input |
String representation of the setting's new value.
|
Overrides
|
Edit this page
View Source
UnlockSetting()
Unlocks the setting to allow changes again after locking.
Declaration
protected override void UnlockSetting()
Overrides
|
Edit this page
View Source
UpdateValue(string)
Declaration
public void UpdateValue(string text)
Parameters
Type |
Name |
Description |
string |
text |
|