mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
22 lines
446 B
C#
22 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEngine.EventSystems;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public class ButtonWithKeyCode : Button
|
|
{
|
|
public KeyCode keyCode;
|
|
|
|
public void Update()
|
|
{
|
|
if (Input.GetKeyDown(keyCode))
|
|
{ onClick.Invoke(); }
|
|
}
|
|
}
|
|
}
|