本文整理匯總了Java中org.lwjgl.glfw.GLFW.glfwGetMouseButton方法的典型用法代碼示例。如果您正苦於以下問題:Java GLFW.glfwGetMouseButton方法的具體用法?Java GLFW.glfwGetMouseButton怎麽用?Java GLFW.glfwGetMouseButton使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.lwjgl.glfw.GLFW
的用法示例。
在下文中一共展示了GLFW.glfwGetMouseButton方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getMouseButton
import org.lwjgl.glfw.GLFW; //導入方法依賴的package包/類
/**
* Returns the state of the specified mouse button
* @param button The mouse button (0 = left, 1 = right, 2 = middle)
* @return
*/
public int getMouseButton(int button) throws IllegalStateException {
if(handle == 0) {
throw new IllegalStateException("handle is NULL");
}
return GLFW.glfwGetMouseButton(handle, button);
}
示例2: isButtonPressedRaw
import org.lwjgl.glfw.GLFW; //導入方法依賴的package包/類
public boolean isButtonPressedRaw(int button) {
return GLFW.glfwGetMouseButton(this.windowID, button) == GLFW.GLFW_PRESS;
}
示例3: GetMouse
import org.lwjgl.glfw.GLFW; //導入方法依賴的package包/類
public static boolean GetMouse(int mouseButton)
{
return GLFW.glfwGetMouseButton(Window.CurrentWindow(), mouseButton) == GLFW.GLFW_PRESS;//Mouse.isButtonDown(mouseButton);
}