クリックをしたらShape2Dの色を順番に変更したいのですが、その方法のコードの書き方が分かりません。今の状態では全てのShape2Dの色が変わってしまいます。
コードは以下になります。
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using Shapes2D; 5 6public class Ellipes : MonoBehaviour 7{ 8 private Shape theSR; 9 10 void Start() 11 { 12 theSR = GetComponent<Shape>(); 13 } 14 15 16 void Update() 17 { 18 19 if (Input.GetMouseButtonDown(0)) 20 { 21 22 theSR.settings.fillColor = Color.red; 23 24 } 25 26 } 27 28}
現在の状態↓
やりたい事↓
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/22 23:13 編集