Looking-Glass/Assets/props/key objects/code panel/KeyPanelLockable.cs
2024-02-28 17:25:06 +00:00

16 lines
354 B
C#

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