本文整理匯總了Java中com.badlogic.gdx.Input.Keys.toString方法的典型用法代碼示例。如果您正苦於以下問題:Java Keys.toString方法的具體用法?Java Keys.toString怎麽用?Java Keys.toString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.badlogic.gdx.Input.Keys
的用法示例。
在下文中一共展示了Keys.toString方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: keyDown
import com.badlogic.gdx.Input.Keys; //導入方法依賴的package包/類
@Override
public boolean keyDown( int keycode )
{
if (mappingTo != null)
{
String name = Keys.toString( keycode );
mappingTo.setText( name );
Global.Controls.setKeyMap(mapKey, keycode);
mappingTo = null;
mapKey = null;
}
else
{
keyboardHelper.keyDown( keycode );
}
return false;
}
示例2: produce
import com.badlogic.gdx.Input.Keys; //導入方法依賴的package包/類
public KeyHandler produce(int key)
{
desiredKeyName = Keys.toString(key);
Class<?>[] keyHandlers = inputHandler.getClass().getDeclaredClasses();
for (Class<?> keyHandler : keyHandlers)
if (isPublic(keyHandler) && isDesiredKeyHandler(keyHandler))
return tryCreatingInstance(keyHandler, inputHandler);
return KeyHandler.EMPTY;
}
示例3: type
import com.badlogic.gdx.Input.Keys; //導入方法依賴的package包/類
/**
* Simulates pressing the keyboard button with the given key code.
*/
public GdxInputRobot type(int keyCode) {
doType(keyCode);
// Try to find the matching key char
String string = Keys.toString(keyCode);
if (string.length() == 1) {
doType(Character.toLowerCase(string.charAt(0)));
}
return this;
}