概要
椅子の prefab である VRCChair をベースに、 座る機能はそのままに持って(=pickupして)運べるようにする機能を追加する。
レシピ
- VRCChair をシーンに置く。
- 移動するための取っ手となるオブジェクトを作る。形や位置など調節する。
- ステップ1で作った VRCChair を取っ手オブジェクトの子に移動する。
- 取っ手オブジェクトに VRC_Pickup を付加する。
- VRCChair の床に接する底面になっている Cube に BoxCollider を付加する。
- 全体(つまり取っ手オブジェクト)に VRC_ObjectSync を追加する。
解説
- 現在(バージョン 0.12.0p10)は、VRC_Pickup で動かす物体は、
その子以降に属している必要があるようです。
- Phyical Root で任意の物体を動かせるようにしようとも見えるのですが、機能しません。
- Unity の物理演算の仕組みのうち joint を使って連結する方法もあり得ますが、pickup した物体の動きに遅れて付いて来るので少し具合が悪いです。
- VRCChair には collider の設定が無いので、追加しています。
- これが無いと VRCChair 部分が床へすり抜けてしまいます。
- 動かした状態を他のプレイヤーのマシンに伝達するために VRC_ObjectSync を追加しています。
追加レシピ:座った状態で運べないようにする
VR モードで椅子に座った状態で他の人に運ばれると、ものすごく酔います。 以下では、これを防止するために座った状態では運べないようにします。
- 上記で作成した、移動可能な椅子に含まれる VRCChair を選択する。 (つまり VRC_Station を持つオブジェクト)
- その VRC_Trigger の
OnStationEntered
トリガーを追加する。 - そのアクションに
SetComponentActive
を加える。 - Receivers に取っ手オブジェクトを設定する。
- Component に UnityEngine.BoxCollider を設定し、Enable は
False
にする。 - 同様に、
OnStationExited
を追加、アクション、Receivers、Component は同じくSetComponentActive
、取っ手オブジェクト、UnityEngine.BoxCollider にして、Enable はTrue
にする。
補足、ポイント
- 椅子の上を歩くとプレイヤーが瞬間移動するように少し飛ばされてしまうことがあるようです。
- BoxCollider を付加したオブジェクトのレイヤーを Walkthrough に設定するとこの現象を防ぐことができます。(ただしプレイヤーが椅子をすり抜けて歩くようになってしまいますが。)
- 取っ手オブジェクトの形状や位置は、椅子がひっくり返っても困らないように工夫する必要があるでしょう。
Recipe: to make a movable-chair
- Put a VRCChair
- Make an object. adjust its shape and location as "handle" of the chair.
- Move handle object to be a child of the VRCChair in object hierarchy.
- Add VRC_Pickup component to the handle
- Add BoxCollider component to bottom Cube of the chair.
- Add VRC_ObjectSync component to whole of this movable chair (that is the handle object)
Additional recipe to prevent moving while someone seated:
- Select VRCChair of movable chair. (That has VRC_Station)
- Add
OnStationEntered
tigger to the VRC_Trigger - Add
SetComponentActive
action to that trigger definition. - Add handle object to Receivers of the definition.
- Select UnityEngine.BoxCollider Component from selection list, and set Enable to
False
. - Same as step 2-4, add
OnStationExited
, set action, Receivers and Component asSetComponentActive
, the handle, UnityEngine.BoxCollider. Then set Enable asTrue