using System.Collections; using System.Collections.Generic; using UnityEngine; public class KeyPanelLockable : Lockable { Material material; public override void StartUnlock(){ material = GetComponent().material; material.color = Color.green; } public override void FailedUnlock(){ return; } }