Humanoid Control for Unity v4
|
Have a humaonid grab objects from a distance.
The Humanoid Telegrabber enables humanoids to grab objects which are normally out of reach for the hands. This Interaction Pointer should be used on a child of a HandTarget.
Public Types | |
enum | RayType { Straight , Bezier , Gravity , SphereCast } |
The ray modes for interaction pointers. | |
enum | PointerType { FocusPoint , Ray } |
The type of interaction pointer. | |
Public Member Functions | |
void | GrabObject () |
Grab the object currently in focus of the InteractionPointer. | |
void | PointTo (GameObject obj) |
void | SetDirection (Vector3 lookDirection) |
void | LaunchRigidbody (Rigidbody rigidbody) |
void | LaunchPrefab (GameObject prefab) |
void | SpawnOnObjectInFocus (GameObject prefab) |
Spawns a prefab as a child of the objectInFocus. | |
void | ApplyForce (float magnitude) |
void | FullClick () |
Click on the objectInFocus. | |
virtual void | Click (bool clicking=true) |
Change the click status on the objectInFocus. | |
virtual void | Activation (bool _active) |
Change the active status of the InteractionPointer. | |
virtual void | ActivateClick (bool _active) |
Static Public Member Functions | |
static InteractionPointer | Add (Transform parentTransform, PointerType pointerType=PointerType.Ray) |
Adds a default InteractionPointer to the transform. | |
Public Attributes | |
bool | active = true |
Is the interaction pointer active? | |
float | timedClick |
Automatically initiates a click when the objectInFocus does not change for the set amount of seconds. | |
GameObject | focusPointObj |
The GameObject which represents the focus point of the Interaction Pointer when it is active. | |
GameObject | objectInFocus |
The object to which the Interaction Pointer is pointing at. | |
float | focusDistance |
Distance to the objectInFocus. | |
RayType | rayType = RayType.Straight |
The ray mode for this interaction pointer. | |
float | maxDistance = 10 |
The maximum length of the curve in units(meters) | |
float | resolution = 0.2F |
The size of a segment in the curve. | |
float | speed = 3 |
The horizontal speed for a gravity curve. | |
float | radius = 0.1F |
The radius of the sphere in a SphereCast. | |
GameObjectEventHandlers | focusEvent |
Event based on the current focus. | |
Vector3EventList | focusPointEvent |
Event based on the current focus. | |
GameObjectEventHandlers | clickEvent |
Event based on the clicking status. | |
BoolEvent | activeEvent = new BoolEvent() |
Event based on the active status. | |
Protected Member Functions | |
override void | Awake () |
virtual InteractionModule | CreateInteractionModule () |
virtual EventSystem | CreateEventSystem () |
virtual void | Start () |
virtual void | Update () |
virtual void | UpdateStraight () |
virtual void | UpdateBezier () |
virtual Vector3[] | UpdateBezierCurve (Transform transform, float maxDistance, out Vector3 normal, out GameObject focusObject) |
Vector3 | GetPoint (float t, Transform transform) |
Vector3 | GetVelocity (float t, Transform transform) |
virtual void | UpdateGravity () |
virtual void | UpdateGravityCurve (Transform transform, float forwardSpeed, out Vector3 normal, out GameObject hitObject) |
virtual void | UpdateSpherecast () |
virtual void | UpdateFocus () |
void | UpdateFocusPoint () |
virtual void | OnDrawGizmosSelected () |
Static Protected Member Functions | |
static void | DebugLog (string s) |
|
protectedvirtual |
Reimplemented from Passer.InteractionPointer.
void Passer.Humanoid.Telegrabber.GrabObject | ( | ) |
Grab the object currently in focus of the InteractionPointer.
If current objectInFocus is a Rigidbody, this function will have the Humanoid hand try to grab the object.
|
staticinherited |
Adds a default InteractionPointer to the transform.
parentTransform | The transform to which the Teleporter will be added |
pointerType | The interaction pointer type for the Teleporter. |
|
inherited |
Spawns a prefab as a child of the objectInFocus.
prefab | The prefab to spawn |
The spawn position and rotation will match the focusPoint transform. When the objectInFocus is null, the prefab will be spawned as a root transform.
|
inherited |
Click on the objectInFocus.
This function will do a full click: a button down followed by a button up.
|
virtualinherited |
Change the click status on the objectInFocus.
clicking | Indicates if the button is down |
Reimplemented in Passer.Teleporter.
|
virtualinherited |
Change the active status of the InteractionPointer.
_active | Indicates if the InteractionPointer is active |
|
inherited |
Is the interaction pointer active?
When an interaction pointer is active, it will actively point to objects. The objectInFocus will be updated based on the pointer. When a focusPointObj is set, this object will be set active. When a Line Renderer is set, the line renderer will be updated according to the properties of the pointer.
|
inherited |
Automatically initiates a click when the objectInFocus does not change for the set amount of seconds.
The value 0 disables this function.
|
inherited |
The GameObject which represents the focus point of the Interaction Pointer when it is active.
If this is set and the pointer is active, the object will be objected based on the pointer's properties This GameObject will be disabled when the pointer is not active.
|
inherited |
The object to which the Interaction Pointer is pointing at.
This is updated at runtime while the pointer is active. The value is null when the pointer is not reaching any object.
|
inherited |
Distance to the objectInFocus.
This is float.infintiy when no object is in focus
|
inherited |
The maximum length of the curve in units(meters)
This value is used for Straight, SphereCast and Bezier RayTypes
|
inherited |
The size of a segment in the curve.
Lower values will give a smoother curve, but requires more performance This value is used for Bezier and Gravity RayTypes
|
inherited |
The horizontal speed for a gravity curve.
A higher speed will reach further positions.
|
inherited |
Event based on the current focus.
This event is generated from the objectInFocus. It has the objectInFocus as parameter. It can be used to execute functions when the focus changes between objects.
|
inherited |
Event based on the current focus.
This event is generated from the objectInFocus. It has the objectInFocus as parameter. It can be used to execute functions when the focus changes between objects.
|
inherited |
Event based on the clicking status.
This event is generated from the clicking boolean. It has the objectInFocus as parameter. It can be used to exectue functions when the user has clicked on an object.
Event based on the active status.
This event is genereated from the active boolean Is has the active boolean as parameter. It can be used to execute functions when the interaction pointer is activated.