mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
107 lines
2.9 KiB
C#
107 lines
2.9 KiB
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System;
|
||
|
using UnityEngine;
|
||
|
using NaughtyBezierCurves;
|
||
|
|
||
|
using RhythmHeavenMania.Util;
|
||
|
|
||
|
namespace RhythmHeavenMania.Games.Scripts_BlueBear
|
||
|
{
|
||
|
public class Treat : PlayerActionObject
|
||
|
{
|
||
|
const float rotSpeed = 360f;
|
||
|
|
||
|
public bool isCake;
|
||
|
public float startBeat;
|
||
|
|
||
|
bool flying = true;
|
||
|
float flyBeats;
|
||
|
|
||
|
[NonSerialized] public BezierCurve3D curve;
|
||
|
|
||
|
private BlueBear game;
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
game = BlueBear.instance;
|
||
|
|
||
|
flyBeats = isCake ? 3f : 2f;
|
||
|
}
|
||
|
|
||
|
private void Update()
|
||
|
{
|
||
|
if (flying)
|
||
|
{
|
||
|
var cond = Conductor.instance;
|
||
|
|
||
|
float flyPos = cond.GetPositionFromBeat(startBeat, flyBeats);
|
||
|
flyPos *= isCake ? 0.75f : 0.6f;
|
||
|
transform.position = curve.GetPoint(flyPos);
|
||
|
|
||
|
if (flyPos > 1f)
|
||
|
{
|
||
|
GameObject.Destroy(gameObject);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
float rot = isCake ? rotSpeed : -rotSpeed;
|
||
|
transform.rotation = Quaternion.Euler(0, 0, transform.rotation.eulerAngles.z + (rot * Time.deltaTime));
|
||
|
|
||
|
float normalizedBeat = cond.GetPositionFromMargin(startBeat + flyBeats, 1f);
|
||
|
StateCheck(normalizedBeat);
|
||
|
|
||
|
if (PlayerInput.Pressed())
|
||
|
{
|
||
|
if (!isCake)
|
||
|
{
|
||
|
if (state.perfect)
|
||
|
{
|
||
|
flying = false;
|
||
|
|
||
|
Jukebox.PlayOneShotGame("blueBear/chompDonut");
|
||
|
|
||
|
// Placeholder! Show particles here!
|
||
|
GameObject.Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else if (PlayerInput.GetAnyDirection())
|
||
|
{
|
||
|
if (isCake)
|
||
|
{
|
||
|
if (state.perfect)
|
||
|
{
|
||
|
flying = false;
|
||
|
|
||
|
Jukebox.PlayOneShotGame("blueBear/chompCake");
|
||
|
|
||
|
// Placeholder! Show particles here!
|
||
|
GameObject.Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override void OnAce()
|
||
|
{
|
||
|
flying = false;
|
||
|
|
||
|
if (isCake)
|
||
|
{
|
||
|
game.headAndBodyAnim.Play("BiteL", 0, 0);
|
||
|
Jukebox.PlayOneShotGame("blueBear/chompCake");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
game.headAndBodyAnim.Play("BiteR", 0, 0);
|
||
|
Jukebox.PlayOneShotGame("blueBear/chompDonut");
|
||
|
}
|
||
|
|
||
|
// Placeholder! Show particles here!
|
||
|
GameObject.Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|