@ -291,7 +291,7 @@ MonoBehaviour:
m_HighlightedColor: {r: 0, g: 0.6, b: 0.93333334, a: 0.19607843}
m_PressedColor: {r: 0, g: 0.6, b: 0.93333334, a: 0.39215687}
m_SelectedColor: {r: 0, g: 0, b: 0, a: 0}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_DisabledColor: {r: 0, g: 0, b: 0, a: 0}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
m_SpriteState:
@ -30,6 +30,11 @@ public class FloorController : MonoBehaviour
public bool isFireControlRoom;
public bool isInit;
private void Awake()
{
GetComponent<Toggle>().interactable = false;
}
// Start is called before the first frame update
void Start()
@ -58,6 +63,7 @@ public class FloorController : MonoBehaviour
Hydrants = shinei.transform.Find("Hydrants").transform;
isInit = true;
AssetManager.Instance.SetLoadingPanel(false);
GetComponent<Toggle>().interactable = true;
OnChange(value);
};