mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
4c4d0a7a7a
* add pause menu assets * layout and animation for pause * make play mode prefab function re-assign unused class inheritance * remove filepath * don't init medals twice * remove PlayerActionObject * initial attempt at anti-note lock TODO: circumvent inputs clearing themselves making the functionality not work * properly implement input lock prevention * fix error on editor open * functional pause menu * bugfix * make unpausing not reset current play statistics * serialize initializer components in inspector instead of procedurally generating * sanity check * note for fade * make flashes in the camera prefabs instead of in world space remove / reorganize script files address issue #411 * fix bug with perfect campaign make minigame transitions hide the game canvas adjust animation of the song credits textbox * fully functional intro scene (placeholder for future title screen) refactored entire game loading procedure re-organized some files * add interaction query to disclaimer text * reword legal * anchor section medals to section display more tempo change placement controls * operation order bugfix * prep for future ratings and stats * loading text * autoload opening scene * splash screen adjustments added setting to force enable splash screen * adjust setting entry
62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using NaughtyBezierCurves;
|
|
using HeavenStudio.Util;
|
|
|
|
namespace HeavenStudio.Games.Scripts_WorkingDough
|
|
{
|
|
public enum FlyingStage
|
|
{
|
|
EnteringUp = 0,
|
|
EnteringDown = 1,
|
|
ExitingUp = 2,
|
|
ExitingDown = 3
|
|
}
|
|
public class NPCDoughBall : MonoBehaviour
|
|
{
|
|
public float startBeat;
|
|
|
|
public FlyingStage currentFlyingStage = FlyingStage.EnteringUp;
|
|
|
|
|
|
[NonSerialized] public BezierCurve3D enterUpCurve;
|
|
[NonSerialized] public BezierCurve3D enterDownCurve;
|
|
[NonSerialized] public BezierCurve3D exitUpCurve;
|
|
[NonSerialized] public BezierCurve3D exitDownCurve;
|
|
|
|
private void Update()
|
|
{
|
|
var cond = Conductor.instance;
|
|
|
|
float flyPos = 0f;
|
|
|
|
switch (currentFlyingStage) {
|
|
case FlyingStage.EnteringUp:
|
|
flyPos = cond.GetPositionFromBeat(startBeat, 0.5f);
|
|
transform.position = enterUpCurve.GetPoint(flyPos);
|
|
if (flyPos > 1f) currentFlyingStage = FlyingStage.EnteringDown;
|
|
break;
|
|
case FlyingStage.EnteringDown:
|
|
flyPos = cond.GetPositionFromBeat(startBeat + 0.5f, 0.5f);
|
|
|
|
transform.position = enterDownCurve.GetPoint(flyPos);
|
|
if (flyPos > 1f) currentFlyingStage = FlyingStage.ExitingUp;
|
|
break;
|
|
case FlyingStage.ExitingUp:
|
|
flyPos = cond.GetPositionFromBeat(startBeat + 1f, 0.5f);
|
|
|
|
transform.position = exitUpCurve.GetPoint(flyPos);
|
|
if (flyPos > 1f) currentFlyingStage = FlyingStage.ExitingDown;
|
|
break;
|
|
case FlyingStage.ExitingDown:
|
|
flyPos = cond.GetPositionFromBeat(startBeat + 1.5f, 0.5f);
|
|
|
|
transform.position = exitDownCurve.GetPoint(flyPos);
|
|
if (flyPos > 1f) GameObject.Destroy(gameObject);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|