igIsKeyPressed() приватный Метод

private igIsKeyPressed ( int key_index, bool repeat ) : bool
key_index int
repeat bool
Результат bool
Пример #1
0
 public static bool IsKeyPressed(int keyIndex, bool repeat = true)
 {
     return(ImGuiNative.igIsKeyPressed(keyIndex, repeat));
 }
Пример #2
0
 public static bool IsKeyPressed(int keyIndex, bool repeat = true)
 => ImGuiNative.igIsKeyPressed(keyIndex, repeat);