本文整理汇总了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;
}