r2mods/ilspy_dump/ror2_csproj/EntityStates.MagmaWorm/DeathState.cs

81 lines
2.3 KiB
C#

using RoR2;
using UnityEngine;
using UnityEngine.Networking;
namespace EntityStates.MagmaWorm;
public class DeathState : GenericCharacterDeath
{
public static GameObject initialDeathExplosionEffect;
public static string deathSoundString;
public static float duration;
private float stopwatch;
public override void OnEnter()
{
base.OnEnter();
WormBodyPositions2 component = GetComponent<WormBodyPositions2>();
WormBodyPositionsDriver component2 = GetComponent<WormBodyPositionsDriver>();
if ((bool)component)
{
component2.yDamperConstant = 0f;
component2.ySpringConstant = 0f;
component2.maxTurnSpeed = 0f;
component.meatballCount = 0;
Util.PlaySound(deathSoundString, component.bones[0].gameObject);
}
Transform modelTransform = GetModelTransform();
if (!modelTransform)
{
return;
}
PrintController printController = modelTransform.gameObject.AddComponent<PrintController>();
printController.printTime = duration;
printController.enabled = true;
printController.startingPrintHeight = 99999f;
printController.maxPrintHeight = 99999f;
printController.startingPrintBias = 1f;
printController.maxPrintBias = 3.5f;
printController.animateFlowmapPower = true;
printController.startingFlowmapPower = 1.14f;
printController.maxFlowmapPower = 30f;
printController.disableWhenFinished = false;
printController.printCurve = AnimationCurve.EaseInOut(0f, 0f, 1f, 1f);
ParticleSystem[] componentsInChildren = modelTransform.GetComponentsInChildren<ParticleSystem>();
for (int i = 0; i < componentsInChildren.Length; i++)
{
componentsInChildren[i].Stop();
}
ChildLocator component3 = modelTransform.GetComponent<ChildLocator>();
if ((bool)component3)
{
Transform transform = component3.FindChild("PP");
if ((bool)transform)
{
PostProcessDuration component4 = transform.GetComponent<PostProcessDuration>();
if ((bool)component4)
{
component4.enabled = true;
component4.maxDuration = duration;
}
}
}
if (NetworkServer.active)
{
EffectManager.SimpleMuzzleFlash(initialDeathExplosionEffect, base.gameObject, "HeadCenter", transmit: true);
}
}
public override void FixedUpdate()
{
stopwatch += GetDeltaTime();
if (NetworkServer.active && stopwatch > duration)
{
EntityState.Destroy(base.gameObject);
}
}
}