mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-14 05:35:08 +00:00
85f9b508a2
* oops! deleted the branch with no backup! basically have to rebuild prefab. at least i kept the animations and scripts. not actually that bad but like half an hour of my life was lost getting all these files back together * started moving animation stuff and allat to a separate Octopus.cs script * changed order of octopodes; it's much more intuitive for it to be left to right than right to left i think the sprites are too low res tho :( only 2k for 22 sprites not including the text stuff * did some stuf * pushing stuff for unity editor * basically just everything. still more work that needs to be done tho * unity update color stuff idk * icon
158 lines
No EOL
4.8 KiB
C#
158 lines
No EOL
4.8 KiB
C#
using HeavenStudio.Util;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HeavenStudio.Games.Scripts_OctopusMachine
|
|
{
|
|
public class Octopus : MonoBehaviour
|
|
{
|
|
[SerializeField] Animator anim;
|
|
[SerializeField] SpriteRenderer sr;
|
|
[SerializeField] bool player;
|
|
|
|
private OctopusMachine game;
|
|
public static Octopus instance;
|
|
|
|
void Awake()
|
|
{
|
|
game = OctopusMachine.instance;
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
void LateUpdate()
|
|
{
|
|
if (Conductor.instance.ReportBeat(ref game.lastReportedBeat)/* && !game.isPreparing && game.bopOn*/)
|
|
{
|
|
//if (anim.IsAnimationNotPlaying() || anim.IsPlayingAnimationName("Idle"))
|
|
if (game.isHappy) {
|
|
anim.DoScaledAnimation("Happy", 0.5f);
|
|
} else if (game.isAngry) {
|
|
anim.DoScaledAnimation("Angry", 0.5f);
|
|
} else if (game.isShocked) {
|
|
anim.DoScaledAnimation("Oops", 0.5f);
|
|
} else {
|
|
anim.DoScaledAnimation("Bop", 0.5f);
|
|
}
|
|
}
|
|
}
|
|
|
|
void OnDestroy()
|
|
{
|
|
|
|
}
|
|
|
|
public void TogglePresence(bool disappear)
|
|
{
|
|
gameObject.SetActive(false);
|
|
}
|
|
|
|
public void MissPose()
|
|
{
|
|
|
|
}
|
|
|
|
public void StartCrouch()
|
|
{
|
|
|
|
}
|
|
|
|
public void StartYell()
|
|
{
|
|
/*
|
|
if (singing || disappeared) return;
|
|
singing = true;
|
|
anim.SetBool("Mega", true);
|
|
anim.Play("OpenMouth", 0, 0);
|
|
shouldMegaClose = true;
|
|
if (currentSound != null) Jukebox.KillLoop(currentSound, 0f);
|
|
Jukebox.PlayOneShotGame("gleeClub/LoudWailStart");
|
|
currentSound = Jukebox.PlayOneShotGame("gleeClub/LoudWailLoop", -1, currentPitch, 1f, true);
|
|
BeatAction.New(game.gameObject, new List<BeatAction.Action>()
|
|
{
|
|
new BeatAction.Action(Conductor.instance.songPositionInBeats + 1f, delegate { UnYell(); })
|
|
});
|
|
*/
|
|
}
|
|
|
|
void UnYell()
|
|
{
|
|
//if (singing && !anim.GetCurrentAnimatorStateInfo(0).IsName("YellIdle")) anim.Play("YellIdle", 0, 0);
|
|
}
|
|
|
|
public void StartSinging(bool forced = false)
|
|
{
|
|
/*
|
|
if ((singing && !forced) || disappeared) return;
|
|
singing = true;
|
|
anim.SetBool("Mega", false);
|
|
shouldMegaClose = false;
|
|
anim.Play("OpenMouth", 0, 0);
|
|
if (currentSound != null) Jukebox.KillLoop(currentSound, 0f);
|
|
currentSound = Jukebox.PlayOneShotGame("gleeClub/WailLoop", -1, currentPitch, 1f, true);
|
|
*/
|
|
}
|
|
|
|
public void StopSinging(bool mega = false, bool playSound = true)
|
|
{
|
|
/*
|
|
if (!singing || disappeared) return;
|
|
singing = false;
|
|
anim.Play(mega ? "MegaCloseMouth" : "CloseMouth", 0, 0);
|
|
if (currentSound != null) Jukebox.KillLoop(currentSound, 0f);
|
|
if (playSound) Jukebox.PlayOneShotGame("gleeClub/StopWail");
|
|
*/
|
|
}
|
|
|
|
public void Bop(float beat)
|
|
{
|
|
if (!game.isPreparing && game.bopOn)
|
|
{
|
|
if (anim.IsAnimationNotPlaying() || anim.IsPlayingAnimationName("Idle"))
|
|
if (game.isHappy) {
|
|
anim.DoScaledAnimation("Happy", 0.5f);
|
|
} else if (game.isAngry) {
|
|
anim.DoScaledAnimation("Angry", 0.5f);
|
|
} else if (game.isShocked) {
|
|
anim.DoScaledAnimation("Oops", 0.5f);
|
|
} else {
|
|
anim.DoScaledAnimation("Bop", 0.5f);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void PlayAnimation(float beat, bool keepBopping, int whichBop)
|
|
{
|
|
switch (whichBop)
|
|
{
|
|
case 0:
|
|
anim.DoScaledAnimation("Bop", 0.5f);
|
|
break;
|
|
case 1:
|
|
anim.DoScaledAnimation("Happy", 0.5f);
|
|
break;
|
|
case 2:
|
|
anim.DoScaledAnimation("Angry", 0.5f);
|
|
break;
|
|
case 3:
|
|
anim.DoScaledAnimation("Oops", 0.5f);
|
|
break;
|
|
}
|
|
if (keepBopping) {
|
|
game.isHappy = whichBop == 1 ? keepBopping : !keepBopping;
|
|
game.isAngry = whichBop == 2 ? keepBopping : !keepBopping;
|
|
game.isShocked = whichBop == 3 ? keepBopping : !keepBopping;
|
|
}
|
|
}
|
|
|
|
public void GameplayModifiers(bool isActive, Color octoColor)
|
|
{
|
|
gameObject.SetActive(isActive);
|
|
sr.color = octoColor;
|
|
}
|
|
}
|
|
} |