Ejemplo n.º 1
0
 public void InputFieldWasSelected(InputFieldExtension inputField)
 {
     if (inputField == soundNameInputField)
     {
         // Animate the bottom panel up based on the height of the keyboard...
         Debug.Log("InputFieldExtension::OnSelect KB height: " + TouchScreenKeyboard.area.height);
         UpdateBottomPanel(animated: true, delay: 0, Ease.InOutExpo, bottomMargin: botPanelDefaultHeight * 0.37f);
     }
 }
Ejemplo n.º 2
0
        public void InputFieldWasSelected(InputFieldExtension inputField)
        {
            if (inputField == soundNameInputField)
            {
                // Animate the bottom panel up based on the height of the keyboard...
                Debug.Log("InputFieldExtension::OnSelect KB height: " + TouchScreenKeyboard.area.height);

                _bottomPanel.setIsVisibleAboveKeyboard();
            }
        }