Unity 3Dでゲームを開発しています。
UIのボタンをクリックしたときに、インスペクター上で指定したオブジェクトの輪郭を表示するOutline Effectというコンポーネント(GlobalOutlineというネームスペース内)があります。
以下のスクリプトで、単一のオブジェクトのみの輪郭を表示したい場合はうまくいったのですが、、
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5using GlobalOutline; 6 7public class Button : MonoBehaviour 8{ 9 public GameObject targetObject; 10 11 private OutlineEffect outlineEffect; 12 13 // Start is called before the first frame update 14 void Start() 15 { 16 outlineEffect = targetObject.GetComponent<OutlineEffect>(); 17 } 18 19 // Update is called once per frame 20 void Update() 21 { 22 23 } 24 25 public void OnClick() 26 { 27 outlineEffect.enabled = !outlineEffect.enabled; 28 } 29}
複数のオブジェクトの輪郭を表示させたいときにうまくいかず、困っています。
c#
1コードusing System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5using GlobalOutline; 6 7public class Button : MonoBehaviour 8{ 9 public GameObject[] targetObjects; 10 11 private OutlineEffect outlineEffect; 12 13 // Start is called before the first frame update 14 void Start() 15 { 16 foreach (targetObject in targetObjects) 17{ 18 outlineEffect = targetObject.GetComponents<OutlineEffect>(); 19 } 20 21 // Update is called once per frame 22 void Update() 23 { 24 25 } 26 27 public void OnClick() 28 { 29 outlineEffect.enabled = !outlineEffect.enabled; 30 } 31}``` 32 33まず、配列の要素の数が指定できていないのも問題な気もするのですが。。 34 35力業で、輪郭表示するオブジェクトを2つに絞ったスクリプトを書こうとしました。 36 37```c# 38using System.Collections; 39using System.Collections.Generic; 40using UnityEngine; 41using UnityEngine.UI; 42using GlobalOutline; 43 44public class Button : MonoBehaviour 45{ 46 public GameObject targetObject; 47 48 public GameObject targetObject2; 49 50 private OutlineEffect outlineEffect; 51 52 // Start is called before the first frame update 53 void Start() 54 { 55 for(int i = 0; i < 2; ++i) 56 { 57 outlineEffect = targetObject[i].GetComponents<OutlineEffect>(); 58 } 59 60 // Update is called once per frame 61 void Update() 62 { 63 64 } 65 66 public void OnClick() 67 { 68 outlineEffect.enabled = !outlineEffect.enabled; 69 } 70}
これでもうまくいかず。。
上記のスクリプトの訂正にお力添えを頂けますと幸甚です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/05 01:30