19 lines
635 B
TypeScript
19 lines
635 B
TypeScript
// Content/Input/IMC_Default.ts
|
|
|
|
import type {InputMappingContext} from "../types.js";
|
|
import {IA_LeftTrigger} from "./Actions/IA_LeftTrigger.js";
|
|
import {IA_RightTrigger} from "./Actions/IA_RightTrigger.js";
|
|
import {IA_NextDebugMode} from "./Actions/IA_NextDebugMode.js";
|
|
import {IA_PrevDebugMode} from "./Actions/IA_PrevDebugMode.js";
|
|
import {IA_ToggleHUD} from "./Actions/IA_ToggleHUD.js";
|
|
import {IA_ToggleVisualDebug} from "./Actions/IA_ToggleVisualDebug.js";
|
|
|
|
export const IMC_Default: InputMappingContext = [
|
|
IA_LeftTrigger,
|
|
IA_RightTrigger,
|
|
IA_NextDebugMode,
|
|
IA_PrevDebugMode,
|
|
IA_ToggleHUD,
|
|
IA_ToggleVisualDebug,
|
|
]
|