2023-02-04 02:50:42 +00:00
|
|
|
using HeavenStudio.Util;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using DG.Tweening;
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Loaders
|
|
|
|
{
|
|
|
|
using static Minigames;
|
|
|
|
public static class RvlRingsideLoader
|
|
|
|
{
|
|
|
|
public static Minigame AddGame(EventCaller eventCaller)
|
|
|
|
{
|
2023-04-01 04:00:04 +00:00
|
|
|
return new Minigame("ringside", "Wrestle Match", "6bdfe7", false, false, new List<GameAction>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
new GameAction("question", "Question")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.Question(e.beat, e["alt"], e["variant"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("alt", false, "Alt", "Whether the alt voice line should be used or not."),
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
|
|
|
new GameAction("woahYouGoBigGuy", "Woah You Go Big Guy!")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.BigGuy(e.beat, e["variant"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
|
|
|
new GameAction("poseForTheFans", "Pose For The Fans!")
|
|
|
|
{
|
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; Ringside.PoseForTheFans(e.beat, e["and"], e["variant"], e["keepZoomedOut"], e["newspaperBeats"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("and", false, "And", "Whether the And voice line should be said or not."),
|
|
|
|
new Param("variant", Ringside.PoseForTheFansVariant.Random, "Variant", "Which variant of the cue do you wish to play."),
|
|
|
|
new Param("keepZoomedOut", false, "Keep Zoomed Out", "Whether the camera should keep being zoomed out after the event has completed."),
|
|
|
|
new Param("newspaperBeats", new EntityTypes.Float(0, 80, 0), "Newspaper Beats", "How many beats should the newspaper stay for?"),
|
|
|
|
new Param("ease", EasingFunction.Ease.EaseOutQuad, "Camera Ease", "What ease should the camera use?"),
|
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
2023-03-07 17:22:32 +00:00
|
|
|
new GameAction("toggleBop", "Bop")
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.ToggleBop(e.beat, e.length, e["bop2"], e["bop"]); },
|
2023-02-04 02:50:42 +00:00
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
new Param("bop2", true, "Bop?", "Whether the wrestler should bop or not."),
|
|
|
|
new Param("bop", false, "Bop? (Auto)", "Whether the wrestler should bop automatically or not."),
|
2023-02-04 02:50:42 +00:00
|
|
|
},
|
2023-03-07 17:22:32 +00:00
|
|
|
resizable = true,
|
2023-02-04 02:50:42 +00:00
|
|
|
},
|
|
|
|
new GameAction("toggleSweat", "Toggle Sweat")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.ToggleSweat(e["sweat"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("sweat", false, "Sweat?", "Whether the wrestler should sweat or not."),
|
|
|
|
},
|
|
|
|
defaultLength = 0.5f
|
|
|
|
},
|
|
|
|
new GameAction("questionScaled", "Question (Stretchable)")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.Question(e.beat, e["alt"], e["variant"], e.length); },
|
|
|
|
preFunction = delegate {if (Ringside.instance == null) return; var e = eventCaller.currentEntity; Ringside.instance.PreQuestion(e.beat, e["variant"], e.length); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("alt", false, "Alt", "Whether the alt voice line should be used or not."),
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f,
|
|
|
|
resizable = true
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games
|
|
|
|
{
|
|
|
|
public class Ringside : Minigame
|
|
|
|
{
|
|
|
|
private static Color _defaultBGColorLight;
|
|
|
|
public static Color defaultBGColorLight
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
ColorUtility.TryParseHtmlString("#5a5a5a", out _defaultBGColorLight);
|
|
|
|
return _defaultBGColorLight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[Header("Components")]
|
|
|
|
[SerializeField] Animator wrestlerAnim;
|
|
|
|
[SerializeField] Animator reporterAnim;
|
|
|
|
[SerializeField] Animator audienceAnim;
|
|
|
|
[SerializeField] Animator wrestlerNewspaperAnim;
|
|
|
|
[SerializeField] Animator reporterNewspaperAnim;
|
|
|
|
[SerializeField] SpriteRenderer flashWhite;
|
|
|
|
[SerializeField] SpriteRenderer blackVoid;
|
|
|
|
[SerializeField] GameObject flashObject;
|
|
|
|
[SerializeField] GameObject poseFlash;
|
|
|
|
[SerializeField] GameObject newspaper;
|
|
|
|
[SerializeField] Transform wrestlerTransform;
|
|
|
|
[SerializeField] SpriteRenderer bg;
|
|
|
|
[SerializeField] ParticleSystem flashParticles;
|
|
|
|
[SerializeField] ParticleSystem sweatParticles;
|
|
|
|
|
|
|
|
[Header("Variables")]
|
|
|
|
public static List<QueuedPose> queuedPoses = new List<QueuedPose>();
|
|
|
|
public struct QueuedPose
|
|
|
|
{
|
|
|
|
public float beat;
|
|
|
|
public bool keepZoomedOut;
|
|
|
|
public float newspaperBeats;
|
|
|
|
}
|
|
|
|
Tween flashTween;
|
|
|
|
Tween bgTween;
|
|
|
|
public enum QuestionVariant
|
|
|
|
{
|
|
|
|
First = 1,
|
|
|
|
Second = 2,
|
|
|
|
Third = 3,
|
|
|
|
Random = 4,
|
|
|
|
}
|
|
|
|
public enum PoseForTheFansVariant
|
|
|
|
{
|
|
|
|
First = 1,
|
|
|
|
Second = 2,
|
|
|
|
Random = 3
|
|
|
|
}
|
|
|
|
private float currentZoomCamBeat;
|
|
|
|
private Vector3 lastCamPos = new Vector3(0, 0, -10);
|
|
|
|
private Vector3 currentCamPos = new Vector3(0, 0, -10);
|
|
|
|
private bool shouldBop = true;
|
|
|
|
private bool missedBigGuy;
|
|
|
|
private bool reporterShouldHeart;
|
|
|
|
private bool hitPose;
|
2023-02-04 17:52:13 +00:00
|
|
|
private bool shouldNotInput;
|
2023-02-05 19:48:41 +00:00
|
|
|
private bool keepZoomOut;
|
2023-02-04 02:50:42 +00:00
|
|
|
private Sound kidsLaugh;
|
|
|
|
private int currentPose;
|
|
|
|
private EasingFunction.Ease lastEase;
|
|
|
|
|
|
|
|
private int currentZoomIndex;
|
|
|
|
|
|
|
|
private List<DynamicBeatmap.DynamicEntity> allCameraEvents = new List<DynamicBeatmap.DynamicEntity>();
|
|
|
|
|
|
|
|
public GameEvent bop = new GameEvent();
|
|
|
|
|
|
|
|
public static Ringside instance;
|
|
|
|
|
|
|
|
void OnDestroy()
|
|
|
|
{
|
|
|
|
if (queuedPoses.Count > 0) queuedPoses.Clear();
|
2023-02-05 19:48:41 +00:00
|
|
|
Jukebox.KillLoop(kidsLaugh, 2f);
|
2023-02-04 23:14:32 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
public override void OnTimeChange()
|
|
|
|
{
|
|
|
|
UpdateCameraZoom();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
var camEvents = EventCaller.GetAllInGameManagerList("ringside", new string[] { "poseForTheFans" });
|
|
|
|
List<DynamicBeatmap.DynamicEntity> tempEvents = new List<DynamicBeatmap.DynamicEntity>();
|
|
|
|
for (int i = 0; i < camEvents.Count; i++)
|
|
|
|
{
|
|
|
|
if (camEvents[i].beat + camEvents[i].beat >= Conductor.instance.songPositionInBeats)
|
|
|
|
{
|
|
|
|
tempEvents.Add(camEvents[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allCameraEvents = tempEvents;
|
|
|
|
|
|
|
|
UpdateCameraZoom();
|
2023-02-04 17:52:13 +00:00
|
|
|
shouldNotInput = false;
|
2023-02-05 19:48:41 +00:00
|
|
|
shouldBop = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
|
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (cond.ReportBeat(ref bop.lastReportedBeat, bop.startBeat % 1))
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
if ((wrestlerAnim.IsPlayingAnimationName("Idle") || wrestlerAnim.IsPlayingAnimationName("BopPec") || wrestlerAnim.IsPlayingAnimationName("Bop")) && shouldBop)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (UnityEngine.Random.Range(1, 18) == 1)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BopPec");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Bop");
|
|
|
|
}
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-04 17:52:13 +00:00
|
|
|
if (PlayerInput.Pressed() && !IsExpectingInputNow(InputType.STANDARD_DOWN) && !shouldNotInput)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
Ringside.instance.ScoreMiss(0.5);
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("YeMiss", 0.25f);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/confusedanswer");
|
2023-02-17 18:45:18 +00:00
|
|
|
if (reporterAnim.IsPlayingAnimationName("IdleReporter")) reporterAnim.Play("IdleLate", 0, 0);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
2023-02-04 17:52:13 +00:00
|
|
|
if (PlayerInput.AltPressed() && !IsExpectingInputNow(InputType.STANDARD_ALT_DOWN) && !shouldNotInput)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
Ringside.instance.ScoreMiss(0.5);
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
|
|
|
reporterAnim.Play("FlinchReporter", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}Raw");
|
|
|
|
Jukebox.PlayOneShotGame("ringside/barely");
|
|
|
|
wrestlerTransform.localScale = new Vector3(1.1f, 1.1f, 1f);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(cond.songPositionInBeats + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
ReporterBlink();
|
|
|
|
}
|
|
|
|
if (allCameraEvents.Count > 0)
|
|
|
|
{
|
|
|
|
if (currentZoomIndex < allCameraEvents.Count && currentZoomIndex >= 0)
|
|
|
|
{
|
|
|
|
if (Conductor.instance.songPositionInBeats >= allCameraEvents[currentZoomIndex].beat)
|
|
|
|
{
|
|
|
|
UpdateCameraZoom();
|
|
|
|
currentZoomIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float normalizedBeat = Conductor.instance.GetPositionFromBeat(currentZoomCamBeat, 2.5f);
|
2023-02-05 19:48:41 +00:00
|
|
|
float normalizedShouldStopBeat = Conductor.instance.GetPositionFromBeat(currentZoomCamBeat, 3.99f);
|
2023-02-04 02:50:42 +00:00
|
|
|
|
|
|
|
if (normalizedBeat >= 0)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (normalizedShouldStopBeat > 1 && !keepZoomOut)
|
|
|
|
{
|
|
|
|
GameCamera.additionalPosition = new Vector3(0, 0, 0);
|
|
|
|
}
|
|
|
|
else if (normalizedBeat > 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
GameCamera.additionalPosition = new Vector3(currentCamPos.x, currentCamPos.y, currentCamPos.z + 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EasingFunction.Function func = EasingFunction.GetEasingFunction(lastEase);
|
|
|
|
float newPosX = func(lastCamPos.x, currentCamPos.x, normalizedBeat);
|
|
|
|
float newPosY = func(lastCamPos.y, currentCamPos.y, normalizedBeat);
|
|
|
|
float newPosZ = func(lastCamPos.z + 10, currentCamPos.z + 10, normalizedBeat);
|
|
|
|
GameCamera.additionalPosition = new Vector3(newPosX, newPosY, newPosZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LateUpdate()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
|
|
|
{
|
|
|
|
if (queuedPoses.Count > 0)
|
|
|
|
{
|
|
|
|
foreach (var p in queuedPoses)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
QueuePose(p.beat, p.keepZoomedOut, p.newspaperBeats);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
queuedPoses.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-03-07 17:22:32 +00:00
|
|
|
public void ToggleBop(float beat, float length, bool startBopping, bool autoBop)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
shouldBop = autoBop;
|
|
|
|
if (startBopping)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + i, delegate
|
|
|
|
{
|
|
|
|
if ((wrestlerAnim.IsPlayingAnimationName("Idle") || wrestlerAnim.IsPlayingAnimationName("BopPec") || wrestlerAnim.IsPlayingAnimationName("Bop")))
|
|
|
|
{
|
|
|
|
if (UnityEngine.Random.Range(1, 18) == 1)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BopPec");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Bop");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void ToggleSweat(bool shouldSweat)
|
|
|
|
{
|
|
|
|
if (shouldSweat)
|
|
|
|
{
|
|
|
|
sweatParticles.Play();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sweatParticles.Stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Question(float beat, bool alt, int questionVariant, float length = 4f)
|
|
|
|
{
|
|
|
|
if (length <= 2f) return;
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
|
|
|
reporterAnim.DoScaledAnimationAsync("WubbaLubbaDubbaThatTrue", 0.4f);
|
|
|
|
List<MultiSound.Sound> qSounds = new List<MultiSound.Sound>();
|
|
|
|
if (alt)
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wub{currentQuestion}", beat));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wubba{currentQuestion}-1", beat));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wubba{currentQuestion}-2", beat + 0.25f));
|
|
|
|
}
|
|
|
|
float extend = length - 3f;
|
|
|
|
int totalExtend = 0;
|
|
|
|
if (extend > 0f)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < extend; i++)
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-1", beat + i + 0.5f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-2", beat + i + 0.75f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-3", beat + i + 1f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-4", beat + i + 1.25f ));
|
|
|
|
totalExtend++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MultiSound.Play(qSounds.ToArray(), forcePlay: true);
|
|
|
|
ThatTrue(beat + totalExtend, currentQuestion);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void PreQuestion(float beat, int questionVariant, float length = 4f)
|
|
|
|
{
|
|
|
|
if (GameManager.instance.currentGame != "ringside") return;
|
|
|
|
if (instance == null) return;
|
|
|
|
if (length <= 2f)
|
|
|
|
{
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat - 0.5f, delegate { reporterAnim.DoScaledAnimationAsync("WubbaLubbaDubbaThatTrue", 0.4f); }),
|
|
|
|
});
|
|
|
|
ThatTrue(beat - 1, currentQuestion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ThatTrue(float beat, int currentQuestion)
|
|
|
|
{
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/that{currentQuestion}", beat + 0.5f),
|
|
|
|
new MultiSound.Sound($"ringside/true{currentQuestion}", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
ScheduleInput(beat, 2f, InputType.STANDARD_DOWN, JustQuestion, Miss, Nothing);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.5f, delegate { reporterAnim.DoScaledAnimationAsync("ThatTrue", 0.5f); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void BigGuy(float beat, int questionVariant)
|
|
|
|
{
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
2023-02-04 17:52:13 +00:00
|
|
|
reporterAnim.DoScaledAnimationAsync("Woah", 0.5f);
|
2023-02-04 02:50:42 +00:00
|
|
|
float youBeat = 0.65f;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Third) youBeat = 0.7f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/woah{currentQuestion}", beat),
|
|
|
|
new MultiSound.Sound($"ringside/you{currentQuestion}", beat + youBeat),
|
|
|
|
new MultiSound.Sound($"ringside/go{currentQuestion}", beat + 1f),
|
|
|
|
new MultiSound.Sound($"ringside/big{currentQuestion}", beat + 1.5f),
|
|
|
|
new MultiSound.Sound($"ringside/guy{currentQuestion}", beat + 2f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
|
|
|
|
ScheduleInput(beat, 2.5f, InputType.STANDARD_DOWN, JustBigGuyFirst, MissBigGuyOne, Nothing);
|
|
|
|
ScheduleInput(beat, 3f, InputType.STANDARD_DOWN, JustBigGuySecond, MissBigGuyTwo, Nothing);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 2f, delegate { reporterAnim.Play("True", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void PoseForTheFans(float beat, bool and, int variant, bool keepZoomedOut, float newspaperBeats)
|
|
|
|
{
|
|
|
|
if (and)
|
|
|
|
{
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("ringside/poseAnd", beat - 0.5f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
}
|
|
|
|
int poseLine = variant;
|
|
|
|
if (poseLine == 3) poseLine = UnityEngine.Random.Range(1, 3);
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/pose{poseLine}", beat),
|
|
|
|
new MultiSound.Sound($"ringside/for{poseLine}", beat + 0.5f),
|
|
|
|
new MultiSound.Sound($"ringside/the{poseLine}", beat + 0.75f),
|
|
|
|
new MultiSound.Sound($"ringside/fans{poseLine}", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
if (GameManager.instance.currentGame == "ringside")
|
2023-02-05 19:48:41 +00:00
|
|
|
{
|
|
|
|
Ringside.instance.QueuePose(beat, keepZoomedOut, newspaperBeats);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
queuedPoses.Add(new QueuedPose { beat = beat, keepZoomedOut = keepZoomedOut, newspaperBeats = newspaperBeats});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void QueuePose(float beat, bool keepZoomedOut, float newspaperBeats)
|
|
|
|
{
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
|
|
|
reporterShouldHeart = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterShouldHeart = false;
|
|
|
|
}
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat, delegate {audienceAnim.DoScaledAnimationAsync("PoseAudience", 0.25f); }),
|
|
|
|
new BeatAction.Action(beat, delegate {wrestlerAnim.DoScaledAnimationAsync("PreparePose", 0.25f); }),
|
|
|
|
new BeatAction.Action(beat, delegate {shouldBop = false; }),
|
|
|
|
new BeatAction.Action(beat + 1, delegate { PoseCheck(beat); }),
|
|
|
|
new BeatAction.Action(beat + 3.99f, delegate { wrestlerAnim.Play("Idle", 0, 0); }),
|
|
|
|
new BeatAction.Action(beat + 3.99f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(beat + 3.99f, delegate { shouldNotInput = false; }),
|
|
|
|
new BeatAction.Action(beat + 3.99f, delegate { shouldBop = true; }),
|
|
|
|
});
|
|
|
|
if (!keepZoomedOut)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
keepZoomOut = true;
|
|
|
|
blackVoid.color = Color.black;
|
|
|
|
newspaper.SetActive(true);
|
|
|
|
if (UnityEngine.Random.Range(1, 3) == 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
newspaper.GetComponent<Animator>().Play("NewspaperEnter", 0, 0);
|
|
|
|
}
|
|
|
|
else
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
newspaper.GetComponent<Animator>().Play("NewspaperEnterRight", 0, 0);
|
|
|
|
}
|
|
|
|
if (!hitPose)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
wrestlerNewspaperAnim.Play($"Miss{UnityEngine.Random.Range(1, 7)}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("IdleReporterNewspaper", 0, 0);
|
|
|
|
kidsLaugh = Jukebox.PlayOneShotGame("ringside/kidslaugh", -1, 1, 1, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Pose{currentPose}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("HeartReporterNewspaper", 0, 0);
|
|
|
|
hitPose = true;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3f + newspaperBeats, delegate
|
|
|
|
{
|
|
|
|
blackVoid.color = new Color(1f, 1f, 1f, 0);
|
|
|
|
newspaper.SetActive(false);
|
|
|
|
lastCamPos = new Vector3(0, 0, -10);
|
|
|
|
Jukebox.KillLoop(kidsLaugh, 0.25f);
|
|
|
|
keepZoomOut = false;
|
|
|
|
})
|
|
|
|
});
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3.99f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
lastCamPos = new Vector3(0, 0, -10);
|
|
|
|
keepZoomOut = false;
|
|
|
|
}),
|
2023-02-04 02:50:42 +00:00
|
|
|
});
|
2023-02-05 19:48:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 2.5f, delegate
|
|
|
|
{
|
|
|
|
lastCamPos = currentCamPos;
|
|
|
|
keepZoomOut = true;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
blackVoid.color = Color.black;
|
|
|
|
newspaper.SetActive(true);
|
|
|
|
if (UnityEngine.Random.Range(1, 3) == 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
newspaper.GetComponent<Animator>().Play("NewspaperEnter", 0, 0);
|
|
|
|
}
|
|
|
|
else
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
newspaper.GetComponent<Animator>().Play("NewspaperEnterRight", 0, 0);
|
|
|
|
}
|
|
|
|
if (!hitPose)
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Miss{UnityEngine.Random.Range(1, 7)}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("IdleReporterNewspaper", 0, 0);
|
|
|
|
kidsLaugh = Jukebox.PlayOneShotGame("ringside/kidslaugh", -1, 1, 1, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Pose{currentPose}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("HeartReporterNewspaper", 0, 0);
|
|
|
|
hitPose = true;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3f + newspaperBeats, delegate
|
|
|
|
{
|
|
|
|
blackVoid.color = new Color(1f, 1f, 1f, 0);
|
|
|
|
newspaper.SetActive(false);
|
|
|
|
Jukebox.KillLoop(kidsLaugh, 0.25f);
|
|
|
|
})
|
|
|
|
});
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void UpdateCameraZoom()
|
|
|
|
{
|
|
|
|
if (currentZoomIndex < allCameraEvents.Count && currentZoomIndex >= 0)
|
|
|
|
{
|
|
|
|
currentZoomCamBeat = allCameraEvents[currentZoomIndex].beat;
|
|
|
|
currentCamPos = new Vector3(poseFlash.transform.position.x, poseFlash.transform.position.y, -21.5f);
|
|
|
|
lastEase = (EasingFunction.Ease)allCameraEvents[currentZoomIndex]["ease"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void PoseCheck(float beat)
|
|
|
|
{
|
|
|
|
ScheduleInput(beat, 2f, InputType.STANDARD_ALT_DOWN, JustPoseForTheFans, MissPose, Nothing);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ChangeFlashColor(Color color, float beats)
|
|
|
|
{
|
|
|
|
var seconds = Conductor.instance.secPerBeat * beats;
|
|
|
|
|
|
|
|
if (flashTween != null)
|
|
|
|
flashTween.Kill(true);
|
|
|
|
|
|
|
|
if (seconds == 0)
|
|
|
|
{
|
|
|
|
flashWhite.color = color;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flashTween = flashWhite.DOColor(color, seconds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void FadeFlashColor(Color start, Color end, float beats)
|
|
|
|
{
|
|
|
|
ChangeFlashColor(start, 0f);
|
|
|
|
ChangeFlashColor(end, beats);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ChangeBGColor(Color color, float beats)
|
|
|
|
{
|
|
|
|
var seconds = Conductor.instance.secPerBeat * beats;
|
|
|
|
|
|
|
|
if (bgTween != null)
|
|
|
|
bgTween.Kill(true);
|
|
|
|
|
|
|
|
if (seconds == 0)
|
|
|
|
{
|
|
|
|
bg.color = color;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flashTween = bg.DOColor(color, seconds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void FadeBGColor(Color start, Color end, float beats)
|
|
|
|
{
|
|
|
|
ChangeBGColor(start, 0f);
|
|
|
|
ChangeBGColor(end, beats);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ReporterBlink()
|
|
|
|
{
|
|
|
|
int randomNumber = UnityEngine.Random.Range(1, 200);
|
|
|
|
if (randomNumber == 1)
|
|
|
|
{
|
2023-02-17 18:45:18 +00:00
|
|
|
if (reporterAnim.IsPlayingAnimationName("IdleReporter"))
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
reporterAnim.DoScaledAnimationAsync("BlinkReporter", 0.5f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustQuestion(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Cough", 0.5f);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/cough");
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessQuestion(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessQuestion(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Ye", 0.5f);
|
|
|
|
reporterAnim.Play("ExtendSmile", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/ye{UnityEngine.Random.Range(1, 4)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { Jukebox.PlayOneShotGame("ringside/yeCamera"); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 0.5f); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { flashObject.SetActive(true); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("SmileReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.6f, delegate { flashObject.SetActive(false); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustBigGuyFirst(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
missedBigGuy = true;
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/muscles1");
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyOne", 0.5f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessBigGuyFirst();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessBigGuyFirst()
|
|
|
|
{
|
|
|
|
missedBigGuy = false;
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/muscles1");
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyOne", 0.5f);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustBigGuySecond(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/muscles2");
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyTwo", 0.5f);
|
|
|
|
if (!missedBigGuy)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { wrestlerAnim.Play("Idle", 0, 0); }),
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessBigGuySecond(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessBigGuySecond(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/muscles2");
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyTwo", 0.5f);
|
|
|
|
if (!missedBigGuy)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendSmile", 0, 0);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { Jukebox.PlayOneShotGame("ringside/musclesCamera"); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("SmileReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 0.5f); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { flashObject.SetActive(true); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.6f, delegate { flashObject.SetActive(false); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { wrestlerAnim.Play("Idle", 0, 0); }),
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustPoseForTheFans(PlayerActionEvent caller, float state)
|
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
shouldNotInput = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
wrestlerTransform.localScale = new Vector3(1.2f, 1.2f, 1f);
|
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}Raw");
|
|
|
|
reporterAnim.Play("IdleMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessPoseForTheFans(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessPoseForTheFans(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
wrestlerTransform.localScale = new Vector3(1.2f, 1.2f, 1f);
|
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
currentPose = randomPose;
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
|
|
|
if (reporterShouldHeart)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("HeartReporter", 0, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExcitedReporter", 0, 0);
|
|
|
|
}
|
|
|
|
hitPose = true;
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}");
|
|
|
|
FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 1f);
|
|
|
|
FadeBGColor(Color.black, defaultBGColorLight, 1f);
|
|
|
|
flashParticles.Play();
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { Jukebox.PlayOneShotGame("ringside/poseCamera"); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { flashParticles.Stop(); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { poseFlash.SetActive(true); poseFlash.GetComponent<Animator>().Play("PoseFlashing", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1.99f, delegate { poseFlash.SetActive(false); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Miss(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissBigGuyOne(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
missedBigGuy = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissBigGuyTwo(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { wrestlerAnim.Play("Idle", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissPose(PlayerActionEvent caller)
|
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
shouldNotInput = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
reporterAnim.Play("IdleMiss", 0, 0);
|
|
|
|
Jukebox.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Nothing(PlayerActionEvent caller){}
|
|
|
|
}
|
|
|
|
}
|