interface MAGES::IMobile3DActions¶
Overview¶
Interface for the Mobile3D Actions that can be implemented on this device. More…
interface IMobile3DActions { // methods void AddActionOnPointerPosition(ActionpointerMoveAction); void AddActionOnPointer(Action pointerPressAction); void AddActionOnMouseHold(Action pointerPressAction); }; // direct descendants class InputController; class MAGESDeviceManagerV2;
Detailed Documentation¶
Interface for the Mobile3D Actions that can be implemented on this device.
Deprecated This interface is deprecated and will be removed in future versions.
Methods¶
void AddActionOnPointerPosition(ActionpointerMoveAction)
Mobile 3D pointer position movement.
Deprecated This function is deprecated and will be removed in future versions. Please use DeviceManager’s OnDriverEvent to listen for events.
Parameters:
pointerMoveAction |
The action that will be called. |
void AddActionOnPointer(ActionpointerPressAction)
Mobile 3D pointer press.
Deprecated This function is deprecated and will be removed in future versions. Please use DeviceManager’s OnDriverEvent to listen for events.
Parameters:
pointerPressAction |
The action that will be called. |
void AddActionOnMouseHold(ActionpointerPressAction)
Mobile 3D pointer press.
Deprecated This function is deprecated and will be removed in future versions. Please use DeviceManager’s OnDriverEvent to listen for events.
Parameters:
pointerPressAction |
The action that will be called. |