diff --git a/src/project/ModJson.ts b/src/project/ModJson.ts index 86ce46b..28a7a5b 100644 --- a/src/project/ModJson.ts +++ b/src/project/ModJson.ts @@ -359,6 +359,18 @@ export interface ColorAlphaSetting extends ValueSetting { } export interface KeybindSetting extends ValueSetting { type: "keybind", + /** + * The category of the keybind, which controls where it appears in the keybind editor. + */ + category?: "universal" | "gameplay" | "editor", + /** + * The original Custom Keybinds ID this keybind is migrating from. + */ + "migrate-from"?: string, + /** + * The priority of this keybind compared to other keybinds with the same input. Lower number means higher priority. + */ + priority?: number, default: SettingDefaultValue, } /**