當前位置: 首頁>>代碼示例>>Java>>正文


Java Keys.toString方法代碼示例

本文整理匯總了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;
}
 
開發者ID:infinity8,項目名稱:Roguelike,代碼行數:21,代碼來源:OptionsScreen.java

示例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;
}
 
開發者ID:MMORPG-Prototype,項目名稱:MMORPG_Prototype,代碼行數:11,代碼來源:KeyHandlerFactory.java

示例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;
}
 
開發者ID:anonl,項目名稱:nvlist,代碼行數:15,代碼來源:GdxInputRobot.java


注:本文中的com.badlogic.gdx.Input.Keys.toString方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。