3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Unityでアバターの腕・足の動きをLookAtだけでVRIKっぽく制御する

Last updated at Posted at 2019-03-29

VRIKらしきこと

VRIKは、VRHMDとコントローラからアバターの動きを良い感じに調整してくれるアセット(色々語弊がある)ですが、最近はVIVEトラッカーが潤沢に使える環境にあるので、自分でも似たようなのが作れんじゃね、と考えた

使うのはLookAtだけ

前提はこう

  1. 頭や首は簡単なHMD追従
  2. そこから肩・太腿の位置は得られている

基本的なロジックはこう

  1. コントローラがの位置と向きから肘or膝がある点を求める
  2. その点に向かって肩or太腿のオブジェクトをLookAt
  3. そして肘・膝のオブジェクトをコントローラにLookAt
  4. 手のオブジェクトはコントローラの向きにセット

ということで以下がコード

IKSets.cs
using UnityEngine;

public class IKSets : MonoBehaviour
{
    public Transform FirstPoint;
    public Vector3 FirstFix = new Vector3(0,90,0);


    public Transform SecondPoint;
    public Vector3 SecondFix = new Vector3(0, 90, 0);

    public Transform EndPoint;
    public Vector3 EndFix = new Vector3(0, 90, 0);

    public Transform IkTarget;



    private float _f2sDistance;
    private float _s2eDinstance;

    void Awake()
    {
        SetDistances();
    }

    private void SetDistances()
    {
        _f2sDistance = Vector3.Distance(FirstPoint.position, SecondPoint.position);
        _s2eDinstance = Vector3.Distance(SecondPoint.position, EndPoint.position);
    }

    private void Update()
    {
        SetObjs();
    }

    private void SetObjs()
    {
        var middlePoint = GetMiddlePosition();
        FirstPoint.LookAt(middlePoint);
        FirstPoint.Rotate(FirstFix);


        SecondPoint.LookAt(IkTarget);
        SecondPoint.Rotate(SecondFix);

        EndPoint.eulerAngles = IkTarget.eulerAngles;
        EndPoint.Rotate(EndFix);
    }

    private Vector3 GetMiddlePosition()
    {
        var distance = Vector3.Distance(IkTarget.position, FirstPoint.position);
        if (distance >= _f2sDistance + _s2eDinstance)
        {
            return IkTarget.position;
        }

        return -IkTarget.forward * _s2eDinstance + IkTarget.position;
    }
}

単純なベクトル計算なので説明は省略。

hogeFixってついているVector3に関しては、アバターごとの座標軸の違いに対応するための値。
VRMアバターなら全部(0,90,90)にすれば大丈夫、Unityちゃんなら順に(90,90,0), (90,90,0), (0,90,0)

動かしてみた

実際に使っている動画が次の2つ。
ezgif-1-d744c7bf1ff1.gif
ezgif-1-78052c005f9c.gif

何をどこにアタッチするかは上記を参照。
まあ、FirstPointに根元のオブジェクト、SecondPointに肘とか膝の中間ポイント、EndPointに手や足先みたいな端のオブジェクト、IKTargetに対応するコントローラかトラッカーを入れてあげればいい。SteamVRのコントローラは向きが変だから気を付けるように。

違和感はもちろんあるし、足に適応したらすごい変だったけど、まあ無料のVRIKと思えばクオリティ的にはこんなもんかってレベル

「えっ?VRIKいらなくなるの!?」そんなわけではない

違和感があるとはいえVRIKに代替できそうな気がするけど、これは四肢が完全にトラッキングできている前提なので、例えばトラッカーがなくて足のトラッキングできないときとかは使えない

それに腰に関して一切考えてないので、お辞儀やや首を捻るとかができない

VRIKがすごいのは、コンポーネントとしてアタッチするだけでほぼ全部のことをやってくれること、特に多脚キャラクターの足の動きを制御してくれるのは凄い

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?