C# Class TangoPoseController, beerpong

This is a basic movement controller based on pose estimation returned from the Tango Service.
Inheritance: MonoBehaviour, ITangoLifecycle, ITangoPose
Show file Open project: ashomk/beerpong Class Usage Examples

Public Methods

Method Description
Awake ( ) : void

Initialize the controller.

OnApplicationPause ( bool pauseStatus ) : void

Unity callback when application is paused.

OnTangoPoseAvailable ( Tango pose ) : void

Handle the callback sent by the Tango Service when a new pose is sampled.

Start ( ) : void

Start this instance.

Method Details

Awake() public method

Initialize the controller.
public Awake ( ) : void
return void

OnApplicationPause() public method

Unity callback when application is paused.
public OnApplicationPause ( bool pauseStatus ) : void
pauseStatus bool The pauseStatus as reported by Unity.
return void

OnTangoPoseAvailable() public method

Handle the callback sent by the Tango Service when a new pose is sampled.
public OnTangoPoseAvailable ( Tango pose ) : void
pose Tango Pose from Tango.
return void

Start() public method

Start this instance.
public Start ( ) : void
return void