Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 lines
1.0 KiB

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
using Oculus.Avatar;
public class OvrAvatarHand : OvrAvatarComponent
{
public bool isLeftHand = true;
ovrAvatarHandComponent component = new ovrAvatarHandComponent();
void Update()
{
if (owner == null)
{
return;
}
bool hasComponent = false;
if (isLeftHand)
{
hasComponent = CAPI.ovrAvatarPose_GetLeftHandComponent(owner.sdkAvatar, ref component);
}
else
{
hasComponent = CAPI.ovrAvatarPose_GetRightHandComponent(owner.sdkAvatar, ref component);
}
if (hasComponent)
{
UpdateAvatar(component.renderComponent);
}
else
{
if (isLeftHand)
{
owner.HandLeft = null;
}
else
{
owner.HandRight = null;
}
Destroy(this);
}
}
}