mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
26 lines
727 B
C#
26 lines
727 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public class QuiverToggle : MonoBehaviour
|
|
{
|
|
public void Update()
|
|
{
|
|
PawnKeyframe keyframe = Workspace.GetCurrentOrPreviousKeyframe(Workspace.ActorID);
|
|
GetComponent<Toggle>().isOn = keyframe != null && keyframe.Quiver;
|
|
}
|
|
|
|
public void OnValueChanged()
|
|
{
|
|
PawnKeyframe keyframe = Workspace.GetCurrentOrPreviousKeyframe(Workspace.ActorID);
|
|
|
|
if (keyframe != null)
|
|
{ keyframe.Quiver = GetComponent<Toggle>().isOn; }
|
|
|
|
Workspace.RecordEvent("Actor quiver");
|
|
}
|
|
}
|
|
}
|