mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
330c538947
* update blue bear to use PlayerActionEvent * update built to scale DS to use PlayerActionEvent * update clappy trio to use PlayerActionEvent * update crop stomp to use PlayerActionEvent * update drumming practice to use PlayerActionEvent * update fork lifter to use PlayerActionEvent * update minigame icons * update wizard waltz' icon
82 lines
No EOL
2.2 KiB
C#
82 lines
No EOL
2.2 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using HeavenStudio.Util;
|
|
|
|
namespace HeavenStudio.Games.Scripts_DrummingPractice
|
|
{
|
|
public class DrummerHit : PlayerActionObject
|
|
{
|
|
DrummingPractice game;
|
|
public float startBeat;
|
|
public bool applause = true;
|
|
|
|
// Start is called before the first frame update
|
|
void Awake()
|
|
{
|
|
game = DrummingPractice.instance;
|
|
}
|
|
|
|
void Start()
|
|
{
|
|
game.ScheduleInput(startBeat, 1f, InputType.STANDARD_DOWN, Just, Miss, Out);
|
|
|
|
BeatAction.New(game.gameObject, new List<BeatAction.Action>()
|
|
{
|
|
new BeatAction.Action(startBeat+1f, delegate {
|
|
Jukebox.PlayOneShotGame("drummingPractice/drum");
|
|
game.leftDrummer.Hit(true, false);
|
|
game.rightDrummer.Hit(true, false);
|
|
}),
|
|
});
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update() { }
|
|
|
|
private void Just(PlayerActionEvent caller, float state)
|
|
{
|
|
if (state >= 1f || state <= -1f) {
|
|
Hit(false);
|
|
}
|
|
Hit(true);
|
|
}
|
|
|
|
private void Miss(PlayerActionEvent caller)
|
|
{
|
|
game.SetFaces(2);
|
|
BeatAction.New(game.gameObject, new List<BeatAction.Action>()
|
|
{
|
|
new BeatAction.Action(startBeat+2f, delegate {
|
|
game.SetFaces(0);
|
|
})
|
|
});
|
|
CleanUp();
|
|
}
|
|
|
|
private void Out(PlayerActionEvent caller) {}
|
|
|
|
public void Hit(bool _hit)
|
|
{
|
|
game.player.Hit(_hit, applause, true);
|
|
game.SetFaces(_hit ? 1 : 2);
|
|
|
|
if (!_hit)
|
|
{
|
|
BeatAction.New(game.gameObject, new List<BeatAction.Action>()
|
|
{
|
|
new BeatAction.Action(startBeat+2f, delegate {
|
|
game.SetFaces(0);
|
|
}),
|
|
});
|
|
}
|
|
CleanUp();
|
|
}
|
|
|
|
public void CleanUp()
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
} |