r2mods/ilspy_dump/ror2_csproj/EntityStates.LunarTeleporter/LunarTeleporterBaseState.cs

36 lines
837 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using RoR2;
namespace EntityStates.LunarTeleporter;
public class LunarTeleporterBaseState : BaseState
{
protected GenericInteraction genericInteraction;
protected Interactability preferredInteractability = Interactability.Available;
protected TeleporterInteraction teleporterInteraction;
public override void OnEnter()
{
base.OnEnter();
genericInteraction = GetComponent<GenericInteraction>();
teleporterInteraction = base.transform.root.GetComponent<TeleporterInteraction>();
}
public override void FixedUpdate()
{
base.FixedUpdate();
if ((bool)TeleporterInteraction.instance)
{
if (TeleporterInteraction.instance.isIdle)
{
genericInteraction.Networkinteractability = preferredInteractability;
}
else
{
genericInteraction.Networkinteractability = Interactability.Disabled;
}
}
}
}