102 lines
2.4 KiB
C#
102 lines
2.4 KiB
C#
using RoR2;
|
|
using UnityEngine;
|
|
|
|
namespace EntityStates.RoboBallBoss.Weapon;
|
|
|
|
public class ChargeEyeblast : BaseState
|
|
{
|
|
public static float baseDuration = 1f;
|
|
|
|
public static GameObject chargeEffectPrefab;
|
|
|
|
public static string attackString;
|
|
|
|
public static string muzzleString;
|
|
|
|
private float duration;
|
|
|
|
private GameObject chargeInstance;
|
|
|
|
protected EffectManagerHelper _emh_chargeInstance;
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
chargeInstance = null;
|
|
_emh_chargeInstance = null;
|
|
}
|
|
|
|
public override void OnEnter()
|
|
{
|
|
base.OnEnter();
|
|
duration = baseDuration / attackSpeedStat;
|
|
Animator modelAnimator = GetModelAnimator();
|
|
Transform modelTransform = GetModelTransform();
|
|
Util.PlayAttackSpeedSound(attackString, base.gameObject, attackSpeedStat);
|
|
if ((bool)modelTransform)
|
|
{
|
|
ChildLocator component = modelTransform.GetComponent<ChildLocator>();
|
|
if ((bool)component)
|
|
{
|
|
Transform transform = component.FindChild(muzzleString);
|
|
if ((bool)transform && (bool)chargeEffectPrefab)
|
|
{
|
|
if (!EffectManager.ShouldUsePooledEffect(chargeEffectPrefab))
|
|
{
|
|
chargeInstance = Object.Instantiate(chargeEffectPrefab, transform.position, transform.rotation);
|
|
}
|
|
else
|
|
{
|
|
_emh_chargeInstance = EffectManager.GetAndActivatePooledEffect(chargeEffectPrefab, transform.position, transform.rotation);
|
|
chargeInstance = _emh_chargeInstance.gameObject;
|
|
}
|
|
chargeInstance.transform.parent = transform;
|
|
ScaleParticleSystemDuration component2 = chargeInstance.GetComponent<ScaleParticleSystemDuration>();
|
|
if ((bool)component2)
|
|
{
|
|
component2.newDuration = duration;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ((bool)modelAnimator)
|
|
{
|
|
PlayCrossfade("Gesture, Additive", "ChargeEyeBlast", "ChargeEyeBlast.playbackRate", duration, 0.1f);
|
|
}
|
|
}
|
|
|
|
public override void OnExit()
|
|
{
|
|
base.OnExit();
|
|
if (_emh_chargeInstance != null && _emh_chargeInstance.OwningPool != null)
|
|
{
|
|
_emh_chargeInstance.OwningPool.ReturnObject(_emh_chargeInstance);
|
|
}
|
|
else
|
|
{
|
|
EntityState.Destroy(chargeInstance);
|
|
}
|
|
chargeInstance = null;
|
|
_emh_chargeInstance = null;
|
|
}
|
|
|
|
public override void FixedUpdate()
|
|
{
|
|
base.FixedUpdate();
|
|
if (base.fixedAge >= duration && base.isAuthority)
|
|
{
|
|
outer.SetNextState(GetNextState());
|
|
}
|
|
}
|
|
|
|
public virtual EntityState GetNextState()
|
|
{
|
|
return new FireEyeBlast();
|
|
}
|
|
|
|
public override InterruptPriority GetMinimumInterruptPriority()
|
|
{
|
|
return InterruptPriority.Skill;
|
|
}
|
|
}
|