概要と教えてほしいこと
上にあるGif画像の観覧車にナマケモノが追従するようにしたいです。観覧車のゴンドラと、ナマケモノ自体にはスクリプトはついていません。観覧車本体にはクリック長押しで回るようなスクリプトがついています。
###コード
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Ferriswheel_spin : MonoBehaviour 6{ 7 public GameObject red; 8 public GameObject blue; 9 public GameObject yellow; 10 public GameObject green; 11 public GameObject lightblue; 12 13 // Start is called before the first frame update 14 void Start() 15 { 16 17 } 18 19 // Update is called once per frame 20 void Update() 21 { 22 23 } 24 25 private void OnMouseOver() 26 { 27 if (Input.GetMouseButton(1)) 28 { 29 transform.Rotate(new Vector3(0, 0, 0.3f)); 30 red.transform.Rotate(new Vector3(0, 0, -0.3f)); 31 blue.transform.Rotate(new Vector3(0, 0, -0.3f)); 32 yellow.transform.Rotate(new Vector3(0, 0, -0.3f)); 33 green.transform.Rotate(new Vector3(0, 0, -0.3f)); 34 lightblue.transform.Rotate(new Vector3(0, 0, -0.3f)); 35 } 36 else if(Input.GetMouseButton(0)) 37 { 38 transform.Rotate(new Vector3(0, 0, -0.3f)); 39 red.transform.Rotate(new Vector3(0, 0, 0.3f)); 40 blue.transform.Rotate(new Vector3(0, 0, 0.3f)); 41 yellow.transform.Rotate(new Vector3(0, 0, 0.3f)); 42 green.transform.Rotate(new Vector3(0, 0, 0.3f)); 43 lightblue.transform.Rotate(new Vector3(0, 0, 0.3f)); 44 } 45 else 46 { 47 48 } 49 } 50}
観覧車に関係しているものはこのスクリプトのみです。
###親子関係について
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。