エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Unity、Oculus(HTC Vive)、VRIKで簡易モーションキャプチャを作った話 - Qiita
using System.Collections; using System.Collections.Generic; using UnityEngine; using UniRx; using... using System.Collections; using System.Collections.Generic; using UnityEngine; using UniRx; using UniRx.Triggers; using System; using LitJson; using System.IO; using UnityEditor; public class RecordHumanPose : MonoBehaviour { /// <summary> /// 対象のアニメーター /// </summary> [SerializeField] Animator m_animator; int m_frameCount; HumanPose m_pose; HumanPoseHandler m_handler; Action m_recordEndCB; /// <su
2017/03/21 リンク