74 lines
1.8 KiB
C#
74 lines
1.8 KiB
C#
using RoR2;
|
|
using RoR2.Projectile;
|
|
using UnityEngine;
|
|
|
|
namespace EntityStates.VagrantMonster;
|
|
|
|
public class FireTrackingBomb : BaseState
|
|
{
|
|
public static float baseDuration = 3f;
|
|
|
|
public static GameObject projectilePrefab;
|
|
|
|
public static GameObject muzzleEffectPrefab;
|
|
|
|
public static string fireBombSoundString;
|
|
|
|
public static float bombDamageCoefficient;
|
|
|
|
public static float bombForce;
|
|
|
|
public float novaRadius;
|
|
|
|
private float duration;
|
|
|
|
private float stopwatch;
|
|
|
|
private static int FireTrackingBombStateHash = Animator.StringToHash("FireTrackingBomb");
|
|
|
|
private static int FireTrackingBombParamHash = Animator.StringToHash("FireTrackingBomb.playbackRate");
|
|
|
|
public override void OnEnter()
|
|
{
|
|
base.OnEnter();
|
|
stopwatch = 0f;
|
|
duration = baseDuration / attackSpeedStat;
|
|
PlayAnimation("Gesture, Override", FireTrackingBombStateHash, FireTrackingBombParamHash, duration);
|
|
FireBomb();
|
|
}
|
|
|
|
public override void OnExit()
|
|
{
|
|
base.OnExit();
|
|
}
|
|
|
|
public override void FixedUpdate()
|
|
{
|
|
base.FixedUpdate();
|
|
stopwatch += GetDeltaTime();
|
|
if (stopwatch >= duration && base.isAuthority)
|
|
{
|
|
outer.SetNextStateToMain();
|
|
}
|
|
}
|
|
|
|
private void FireBomb()
|
|
{
|
|
Ray aimRay = GetAimRay();
|
|
Transform modelTransform = GetModelTransform();
|
|
if ((bool)modelTransform)
|
|
{
|
|
ChildLocator component = modelTransform.GetComponent<ChildLocator>();
|
|
if ((bool)component)
|
|
{
|
|
aimRay.origin = component.FindChild("TrackingBombMuzzle").transform.position;
|
|
}
|
|
}
|
|
EffectManager.SimpleMuzzleFlash(muzzleEffectPrefab, base.gameObject, "TrackingBombMuzzle", transmit: false);
|
|
if (base.isAuthority)
|
|
{
|
|
ProjectileManager.instance.FireProjectile(projectilePrefab, aimRay.origin, Util.QuaternionSafeLookRotation(aimRay.direction), base.gameObject, damageStat * bombDamageCoefficient, bombForce, Util.CheckRoll(critStat, base.characterBody.master));
|
|
}
|
|
}
|
|
}
|