API reference
API reference
Select your platform
No SDKs available
No versions available

IPointableElement Interface

This interface specifies that an implementing type is a recipient of PointerEvents and is thus conceptually something, "to which one can point." Note that IPointableElement is (as an IPointable) both an originator of and a consumer of PointerEvents; this manifests the common Interaction SDK pattern that PointerEvents are created by the instrument which does the pointing, are received by the target to which one points, and are then forwarded by that target to additional consumers.

Methods

ProcessPointerEvent ( evt )
Instructs the IPointableElement to handle a provided PointerEvent which represents a user action of "pointing" something at this IPointableElement.
This processing will typically result in the processed PointerEvent being re-emitted after processing by the IPointableElement as part of its role as an IPointable.
Signature
void Oculus.Interaction.IPointableElement.ProcessPointerEvent(PointerEvent evt)
Parameters
evt: PointerEvent  The PointerEvent to be processed
Returns
void