コード例 #1
0
ファイル: input.go プロジェクト: hajimehoshi/ebiten
// IsKeyPressed returns a boolean indicating whether key is pressed.
//
// This function is concurrent-safe.
func IsKeyPressed(key Key) bool {
	return ui.CurrentInput().IsKeyPressed(ui.Key(key))
}
コード例 #2
0
ファイル: input.go プロジェクト: DrJosh9000/ebiten
// IsKeyPressed returns a boolean indicating whether key is pressed.
func IsKeyPressed(key Key) bool {
	return ui.IsKeyPressed(ui.Key(key))
}