Fixes
This commit is contained in:
@ -117,6 +117,12 @@ namespace ia::iae
|
||||
STATIC BOOL WasInputActionReleased(IN CONST String &action);
|
||||
STATIC Handle BindInputAction(IN CONST String &name, IN InputKey key);
|
||||
STATIC VOID BindInputAxis(IN InputKey upKey, IN InputKey downKey, IN InputKey leftKey, IN InputKey rightKey);
|
||||
STATIC VOID SetAxisUp(IN BOOL v);
|
||||
STATIC VOID SetAxisDown(IN BOOL v);
|
||||
STATIC VOID SetAxisLeft(IN BOOL v);
|
||||
STATIC VOID SetAxisRight(IN BOOL v);
|
||||
STATIC VOID SetKey(IN InputKey key, IN BOOL state);
|
||||
STATIC VOID SetAxis(IN BOOL up, IN BOOL down, IN BOOL left, IN BOOL right);
|
||||
|
||||
// Utility Functions
|
||||
STATIC String ReadTextAsset(IN CONST String& path);
|
||||
|
||||
@ -28,6 +28,10 @@ namespace ia::iae
|
||||
STATIC VOID SetMarkup(IN CONST String &markup, IN CONST String &styles);
|
||||
|
||||
STATIC VOID AddClickEvent(IN PCCHAR elementId, IN std::function<VOID()> callback);
|
||||
STATIC VOID AddPointerUpEvent(IN PCCHAR elementId, IN std::function<VOID()> callback);
|
||||
STATIC VOID AddPointerDownEvent(IN PCCHAR elementId, IN std::function<VOID()> callback);
|
||||
STATIC VOID AddPointerExitEvent(IN PCCHAR elementId, IN std::function<VOID()> callback);
|
||||
STATIC VOID AddPointerEnterEvent(IN PCCHAR elementId, IN std::function<VOID()> callback);
|
||||
|
||||
public:
|
||||
STATIC VOID Initialize();
|
||||
|
||||
Reference in New Issue
Block a user