mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
60 lines
No EOL
1.9 KiB
C#
60 lines
No EOL
1.9 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using RhythmHeavenMania.Util;
|
|
|
|
namespace RhythmHeavenMania.Games.SpaceSoccer
|
|
{
|
|
public class SpaceSoccer : Minigame
|
|
{
|
|
[Header("Components")]
|
|
[SerializeField] private GameObject ballRef;
|
|
[SerializeField] private Kicker kicker;
|
|
|
|
[Header("Properties")]
|
|
[SerializeField] private bool ballDispensed;
|
|
|
|
public static SpaceSoccer instance { get; private set; }
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (ballDispensed)
|
|
{
|
|
}
|
|
}
|
|
|
|
public void Dispense(float beat)
|
|
{
|
|
if (kicker.ball != null) return;
|
|
ballDispensed = true;
|
|
|
|
GameObject ball = Instantiate(ballRef, this.transform);
|
|
Ball ball_ = ball.GetComponent<Ball>();
|
|
ball_.dispensedBeat = beat;
|
|
ball_.dispensing = true;
|
|
kicker.ball = ball_;
|
|
kicker.dispenserBeat = beat;
|
|
kicker.kickTimes = 0;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
{
|
|
new MultiSound.Sound("spaceSoccer/dispenseNoise", beat),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble1", beat + 0.25f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble2", beat + 0.5f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble2B", beat + 0.5f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble3", beat + 0.75f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble4", beat + 1f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble5", beat + 1.25f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble6", beat + 1.5f),
|
|
new MultiSound.Sound("spaceSoccer/dispenseTumble6B", beat + 1.75f),
|
|
});
|
|
}
|
|
}
|
|
|
|
} |