12 lines
230 B
C#
12 lines
230 B
C#
|
using UnityEngine;
|
||
|
using UnityEngine.Serialization;
|
||
|
|
||
|
namespace RoR2.UI;
|
||
|
|
||
|
public class UIInputPassthrough : MonoBehaviour
|
||
|
{
|
||
|
[FormerlySerializedAs("FilterAllButMovement")]
|
||
|
[SerializeField]
|
||
|
public bool OnlyAllowMovement = true;
|
||
|
}
|