InGameEditorSettings: {
    shortcuts?: {
        [commandName: string]: string;
    };
    theme: {
        iconButtonSelectedBackgroundColor: string;
        iconButtonSelectedColor: string;
        textColorPrimary: string;
        toolbarBackgroundColor: string;
        toolbarSeparatorColor: string;
    };
}

Type declaration

  • Optional shortcuts?: {
        [commandName: string]: string;
    }

    The shortcuts handled by the in-game editor, by command name, in the format of the IDE shortcuts (for example "Shift+KeyW"). A command that is not listed keeps its default shortcut, an empty string removes it.

    • [commandName: string]: string
  • theme: {
        iconButtonSelectedBackgroundColor: string;
        iconButtonSelectedColor: string;
        textColorPrimary: string;
        toolbarBackgroundColor: string;
        toolbarSeparatorColor: string;
    }
    • iconButtonSelectedBackgroundColor: string
    • iconButtonSelectedColor: string
    • textColorPrimary: string
    • toolbarBackgroundColor: string
    • toolbarSeparatorColor: string