10class EditorHotkeysWindow
16 bool IsCapturing()
const;
24 void DrawCategorySection(
const char* category);
25 void DrawActionRow(EditorAction action);
26 void DrawCaptureOverlay();
28 void RefreshPresetList();
29 void StartCapture(EditorAction action);
30 bool PollKeyPress(int32_t& outKeyCode)
const;
33 std::vector<std::string> mPresetNames;
34 int mSelectedPreset = -1;
35 char mNewPresetName[64] = { 0 };
36 char mImportExportPath[260] = { 0 };
37 char mSearchBuffer[64] = { 0 };
39 bool mCapturing =
false;
40 EditorAction mCaptureAction = EditorAction::Count;
41 float mCaptureTimer = 0.0f;
44EditorHotkeysWindow* GetEditorHotkeysWindow();