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); } }
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(); } }