VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
void AVR.UI.Utils.AVRUI_InputField_PlusMinus.Awake ( )
inlineprivate

Definition at line 20 of file AVRUI_InputField_PlusMinus.cs.

20  {
21  input = GetComponent<InputField>();
22  input_tmp = GetComponent<TMPro.TMP_InputField>();
23  if(!input && !input_tmp) {
24  AVR.Core.AVR_DevConsole.cerror("Numeric Inputfield need either a InputField or a TMP_InputField component!", this);
25  Destroy(this);
26  }
27  }