ARMarkerWrapper
- class ARMarker.ARMarkerWrapper(object: Object)
Bases:
Object- IsFound() bool
Is found
Example:
value = instance.IsFound()
- AddTargetFoundHandler(handler: Callable[[Object], CoroutineType]) None
When a marker is detected
- Parameters:
handler –
Asynchronous handler function with signature:
sender (Object): the object that triggered the event
Example:
async def OnTargetFound(sender): pass instance.AddTargetFoundHandler(OnTargetFound)
- AddTargetLostHandler(handler: Callable[[Object], CoroutineType]) None
When a marker is lost
- Parameters:
handler –
Asynchronous handler function with signature:
sender (Object): the object that triggered the event
Example:
async def OnTargetLost(sender): pass instance.AddTargetLostHandler(OnTargetLost)