Improve text hints in input config.

This commit is contained in:
2023-02-18 15:49:45 +08:00
parent ee7b0f5081
commit 4fab20953a
2 changed files with 12 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ namespace Cryville.Crtr.Config {
m_button.interactable = true;
if (e.Proxy == null) {
m_value.text = "(Unassigned)";
if (e.Required) m_value.text += " (Required)";
}
else {
m_value.text = e.Proxy.Value.Handler.GetTypeName(e.Proxy.Value.Type);