don't cache theme colours

This commit is contained in:
2022-12-02 11:03:00 +01:00
parent 88f1b19990
commit 824e043862
10 changed files with 71 additions and 75 deletions

View File

@@ -0,0 +1,30 @@
using System.Collections.Generic;
using NaughtyAttributes;
using UnityEngine;
namespace EscapeRoomEngine.Desert.Runtime
{
[RequireComponent(typeof(Collider))]
public class Hoop : MonoBehaviour
{
[BoxGroup("Internal")] [SerializeField]
private List<Emission> rings;
public bool Solved
{
set
{
if (value)
{
rings.ForEach(ring => ring.color = );
}
else
{
}
}
}
private int _orbCount;
}
}