瀏覽代碼

Changed keybinds for the automation example to avoid conflict with browser shortcuts (#3519)

pull/3523/head
Miloslav Milenkov 1 年之前
committed by GitHub
父節點
當前提交
a92c34d83c
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      examples/core/core_automation_events.c
  2. 二進制
      examples/core/core_automation_events.png

+ 4
- 4
examples/core/core_automation_events.c 查看文件

@ -201,7 +201,7 @@ int main(void)
//----------------------------------------------------------------------------------
// Toggle events recording
if (IsKeyPressed(KEY_F2))
if (IsKeyPressed(KEY_S))
{
if (!eventPlaying)
{
@ -220,7 +220,7 @@ int main(void)
}
}
}
else if (IsKeyPressed(KEY_F3))
else if (IsKeyPressed(KEY_A))
{
if (!eventRecording && (aelist.count > 0))
{
@ -291,8 +291,8 @@ int main(void)
DrawText("- SPACE: Player jump", 30, 60, 10, DARKGRAY);
DrawText("- R: Reset game state", 30, 80, 10, DARKGRAY);
DrawText("- F2: START/STOP RECORDING INPUT EVENTS", 30, 110, 10, BLACK);
DrawText("- F3: REPLAY LAST RECORDED INPUT EVENTS", 30, 130, 10, BLACK);
DrawText("- S: START/STOP RECORDING INPUT EVENTS", 30, 110, 10, BLACK);
DrawText("- A: REPLAY LAST RECORDED INPUT EVENTS", 30, 130, 10, BLACK);
// Draw automation events recording indicator
if (eventRecording)

二進制
examples/core/core_automation_events.png 查看文件

Before After
Width: 800  |  Height: 450  |  Size: 17 KiB Width: 800  |  Height: 450  |  Size: 20 KiB

Loading…
取消
儲存