2022-07-29 19:06:22 +00:00
|
|
|
using System;
|
2021-12-29 06:52:48 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2022-03-14 14:21:05 +00:00
|
|
|
using HeavenStudio.Util;
|
2021-12-29 06:52:48 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
//THIS CLASS IS TO BE RENAMED
|
|
|
|
|
2022-04-12 16:14:46 +00:00
|
|
|
namespace HeavenStudio.Games.Loaders
|
|
|
|
{
|
|
|
|
using static Minigames;
|
2022-07-29 19:06:22 +00:00
|
|
|
public static class RvlNewKarateLoader
|
2022-04-12 16:14:46 +00:00
|
|
|
{
|
|
|
|
public static Minigame AddGame(EventCaller eventCaller) {
|
2022-07-29 19:06:22 +00:00
|
|
|
return new Minigame("karateman", "Karate Man [INDEV REWORK]", "70A8D8", false, false, new List<GameAction>()
|
2022-04-12 16:14:46 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new GameAction("bop", delegate { }, 0.5f, true),
|
|
|
|
new GameAction("hit", delegate { var e = eventCaller.currentEntity; KarateMan.instance.CreateItem(e.beat, e.type); }, 2, false,
|
|
|
|
new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.HitType.Pot, "Object", "The object to fire")
|
|
|
|
}),
|
|
|
|
new GameAction("bulb", delegate { var e = eventCaller.currentEntity; KarateMan.instance.CreateBulbSpecial(e.beat, e.type, e.colorA); }, 2, false,
|
|
|
|
new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.LightBulbType.Normal, "Type", "The preset bulb type. Yellow is used for kicks while Blue is used for combos"),
|
|
|
|
new Param("colorA", new Color(), "Custom Color", "The color to use when the bulb type is set to Custom")
|
|
|
|
}),
|
2022-07-29 19:26:59 +00:00
|
|
|
new GameAction("kick", delegate { KarateMan.instance.Kick(eventCaller.currentEntity.beat); }, 4f),
|
2022-04-12 16:14:46 +00:00
|
|
|
new GameAction("combo", delegate { KarateMan.instance.Combo(eventCaller.currentEntity.beat); }, 4f),
|
2022-07-29 19:06:22 +00:00
|
|
|
new GameAction("hitX", delegate { var e = eventCaller.currentEntity; KarateMan.instance.DoWord(e.beat, e.type); }, 1f, false,
|
|
|
|
new List<Param>()
|
2022-04-12 16:14:46 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new Param("type", KarateMan.HitThree.HitThree, "Type", "The warning text to show")
|
|
|
|
}),
|
|
|
|
new GameAction("prepare", delegate { }, 1f, true),
|
2022-07-10 02:42:28 +00:00
|
|
|
new GameAction("set background effects", delegate {
|
2022-04-12 16:14:46 +00:00
|
|
|
}, 0.5f, false, new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.BackgroundType.Yellow, "Background Type", "The preset background type"),
|
|
|
|
new Param("type2", KarateMan.ShadowType.Tinted, "Shadow Type", "The shadow type. If Tinted doesn't work with your background color try Custom"),
|
|
|
|
new Param("colorA", new Color(), "Custom Background Color", "The background color to use when background type is set to Custom"),
|
|
|
|
new Param("colorB", new Color(), "Custom Shadow Color", "The shadow color to use when shadow type is set to Custom"),
|
2022-07-28 22:16:20 +00:00
|
|
|
new Param("type3", KarateMan.BackgroundFXType.None, "FX Type", "The background effect to be displayed")
|
2022-04-12 16:14:46 +00:00
|
|
|
|
|
|
|
}),
|
2022-07-29 19:06:22 +00:00
|
|
|
|
2022-04-12 16:14:46 +00:00
|
|
|
// These are still here for backwards-compatibility but are hidden in the editor
|
2022-07-29 19:06:22 +00:00
|
|
|
new GameAction("pot", delegate { KarateMan.instance.CreateItem(eventCaller.currentEntity.beat, (int) KarateMan.HitType.Pot); }, 2, hidden: true),
|
|
|
|
new GameAction("rock", delegate { KarateMan.instance.CreateItem(eventCaller.currentEntity.beat, (int) KarateMan.HitType.Rock); }, 2, hidden: true),
|
|
|
|
new GameAction("ball", delegate { KarateMan.instance.CreateItem(eventCaller.currentEntity.beat, (int) KarateMan.HitType.Ball); }, 2, hidden: true),
|
|
|
|
new GameAction("tacobell", delegate { KarateMan.instance.CreateItem(eventCaller.currentEntity.beat, (int) KarateMan.HitType.TacoBell); }, 2, hidden: true),
|
|
|
|
new GameAction("hit4", delegate { KarateMan.instance.DoWord(eventCaller.currentEntity.beat, (int) KarateMan.HitThree.HitFour); }, hidden: true),
|
|
|
|
new GameAction("bgfxon", delegate { }, hidden: true),
|
|
|
|
new GameAction("bgfxoff", delegate { }, hidden: true),
|
|
|
|
new GameAction("hit3", delegate { var e = eventCaller.currentEntity; KarateMan.instance.DoWord(e.beat, e.type); }, 1f, false,
|
|
|
|
new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.HitThree.HitThree, "Type", "The warning text to show")
|
|
|
|
},
|
|
|
|
hidden: true),
|
|
|
|
new GameAction("set background color", delegate { }, 0.5f, false,
|
|
|
|
new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.BackgroundType.Yellow, "Background Type", "The preset background type"),
|
|
|
|
new Param("type2", KarateMan.ShadowType.Tinted, "Shadow Type", "The shadow type. If Tinted doesn't work with your background color try Custom"),
|
|
|
|
new Param("colorA", new Color(), "Custom Background Color", "The background color to use when background type is set to Custom"),
|
|
|
|
new Param("colorB", new Color(), "Custom Shadow Color", "The shadow color to use when shadow type is set to Custom"),
|
|
|
|
|
|
|
|
}),
|
2022-07-10 02:42:28 +00:00
|
|
|
new GameAction("set background fx", delegate {
|
|
|
|
}, 0.5f, false, new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("type", KarateMan.BackgroundFXType.None, "FX Type", "The background effect to be displayed")
|
|
|
|
},
|
2022-07-29 19:06:22 +00:00
|
|
|
hidden: true)
|
2022-04-12 16:14:46 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
});
|
2022-04-12 16:14:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 14:21:05 +00:00
|
|
|
namespace HeavenStudio.Games
|
2021-12-29 06:52:48 +00:00
|
|
|
{
|
2022-03-12 04:10:13 +00:00
|
|
|
using Scripts_KarateMan;
|
2021-12-29 06:52:48 +00:00
|
|
|
public class KarateMan : Minigame
|
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
public static KarateMan instance;
|
2022-03-01 08:17:06 +00:00
|
|
|
|
|
|
|
public enum HitType
|
|
|
|
{
|
|
|
|
Pot = 0,
|
2022-07-29 19:06:22 +00:00
|
|
|
Lightbulb = 1,
|
2022-03-01 08:17:06 +00:00
|
|
|
Rock = 2,
|
|
|
|
Ball = 3,
|
2022-03-03 04:23:20 +00:00
|
|
|
CookingPot = 6,
|
|
|
|
Alien = 7,
|
|
|
|
TacoBell = 999
|
2022-03-01 08:17:06 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 21:16:06 +00:00
|
|
|
public enum HitThree
|
|
|
|
{
|
|
|
|
HitTwo,
|
|
|
|
HitThree,
|
|
|
|
HitThreeAlt,
|
2022-07-29 19:06:22 +00:00
|
|
|
HitFour,
|
|
|
|
Grr,
|
|
|
|
Warning,
|
|
|
|
Combo,
|
|
|
|
HitOne,
|
2022-03-03 21:16:06 +00:00
|
|
|
}
|
|
|
|
|
2022-02-26 06:31:35 +00:00
|
|
|
public enum LightBulbType
|
|
|
|
{
|
2022-02-26 18:57:09 +00:00
|
|
|
Normal,
|
|
|
|
Blue,
|
|
|
|
Yellow,
|
|
|
|
Custom
|
2022-02-26 06:31:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-26 18:27:02 +00:00
|
|
|
public enum BackgroundType
|
2022-02-26 06:31:35 +00:00
|
|
|
{
|
2022-02-26 18:57:09 +00:00
|
|
|
Yellow,
|
2022-02-27 23:46:32 +00:00
|
|
|
Fuchsia,
|
2022-02-26 18:57:09 +00:00
|
|
|
Blue,
|
|
|
|
Red,
|
|
|
|
Orange,
|
|
|
|
Pink,
|
|
|
|
Custom
|
2022-02-26 18:27:02 +00:00
|
|
|
}
|
|
|
|
|
2022-03-01 17:40:59 +00:00
|
|
|
public enum BackgroundFXType
|
|
|
|
{
|
|
|
|
None,
|
2022-03-01 20:37:06 +00:00
|
|
|
Sunburst,
|
2022-07-29 19:06:22 +00:00
|
|
|
Rings,
|
|
|
|
Fade
|
2022-03-01 17:40:59 +00:00
|
|
|
}
|
|
|
|
|
2022-02-27 17:02:46 +00:00
|
|
|
public enum ShadowType
|
|
|
|
{
|
|
|
|
Tinted,
|
|
|
|
Custom
|
|
|
|
}
|
|
|
|
|
2022-02-26 18:57:09 +00:00
|
|
|
public Color[] LightBulbColors;
|
2022-02-26 18:27:02 +00:00
|
|
|
public Color[] BackgroundColors;
|
2022-02-27 17:02:46 +00:00
|
|
|
public Color[] ShadowColors;
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
//camera positions (normal, special)
|
|
|
|
public Transform[] CameraPosition;
|
|
|
|
Vector3 cameraPosition;
|
2021-12-30 12:17:22 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
//pot trajectory stuff
|
|
|
|
public Transform ItemHolder;
|
|
|
|
public GameObject Item;
|
|
|
|
public KarateManJoe Joe;
|
2022-01-03 22:42:43 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
//warning text
|
|
|
|
public Animator Word;
|
|
|
|
float wordClearTime = Single.MinValue;
|
|
|
|
const float hitVoiceOffset = 0.042f;
|
2021-12-30 12:17:22 +00:00
|
|
|
|
2021-12-29 06:52:48 +00:00
|
|
|
private void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
2022-07-29 19:06:22 +00:00
|
|
|
KarateManPot.ResetLastCombo();
|
|
|
|
cameraPosition = CameraPosition[0].position;
|
2022-02-26 18:27:02 +00:00
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
private void Start()
|
2022-02-26 18:27:02 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
GameCamera.additionalPosition = cameraPosition - GameCamera.defaultPosition;
|
2021-12-29 06:52:48 +00:00
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
private void Update()
|
2022-01-20 01:48:52 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
GameCamera.additionalPosition = cameraPosition - GameCamera.defaultPosition;
|
|
|
|
if (Conductor.instance.songPositionInBeats >= wordClearTime)
|
2022-01-20 01:48:52 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
Word.Play("NoPose");
|
2022-01-20 01:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
public void DoWord(float beat, int type)
|
2021-12-30 12:17:22 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
switch (type)
|
2021-12-30 12:17:22 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
case (int) HitThree.HitTwo:
|
|
|
|
Word.Play("Word02");
|
|
|
|
wordClearTime = beat + 4f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
2022-01-19 05:40:49 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new MultiSound.Sound("karateman/hit", beat + 0.5f, offset: hitVoiceOffset),
|
|
|
|
new MultiSound.Sound("karateman/two", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
break;
|
|
|
|
case (int) HitThree.HitThree:
|
|
|
|
Word.Play("Word03");
|
|
|
|
wordClearTime = beat + 4f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
2022-01-19 05:40:49 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new MultiSound.Sound("karateman/hit", beat + 0.5f, offset: hitVoiceOffset),
|
|
|
|
new MultiSound.Sound("karateman/three", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
break;
|
|
|
|
case (int) HitThree.HitThreeAlt:
|
|
|
|
Word.Play("Word03");
|
|
|
|
wordClearTime = beat + 4f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("karateman/hitAlt", beat + 0.5f, offset: hitVoiceOffset),
|
|
|
|
new MultiSound.Sound("karateman/threeAlt", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
break;
|
|
|
|
case (int) HitThree.HitFour:
|
|
|
|
Word.Play("Word04");
|
|
|
|
wordClearTime = beat + 4f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("karateman/hit", beat + 0.5f, offset: hitVoiceOffset),
|
|
|
|
new MultiSound.Sound("karateman/four", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
break;
|
|
|
|
case (int) HitThree.Grr:
|
|
|
|
Word.Play("Word01");
|
|
|
|
wordClearTime = beat + 1f;
|
|
|
|
break;
|
|
|
|
case (int) HitThree.Warning:
|
|
|
|
Word.Play("Word05");
|
|
|
|
wordClearTime = beat + 1f;
|
|
|
|
break;
|
|
|
|
case (int) HitThree.Combo:
|
|
|
|
Word.Play("Word00");
|
|
|
|
wordClearTime = beat + 3f;
|
|
|
|
break;
|
|
|
|
case (int) HitThree.HitOne: //really?
|
|
|
|
Word.Play("Word06");
|
|
|
|
wordClearTime = beat + 4f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("karateman/hit", beat + 0.5f, offset: hitVoiceOffset),
|
|
|
|
new MultiSound.Sound("karateman/one", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
break;
|
2022-02-14 13:48:41 +00:00
|
|
|
}
|
2021-12-30 12:17:22 +00:00
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
public void CreateItem(float beat, int type)
|
2021-12-30 12:17:22 +00:00
|
|
|
{
|
2022-03-01 20:37:06 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
string outSound;
|
|
|
|
if (Starpelly.Mathp.GetDecimalFromFloat(beat + 0.5f) == 0f)
|
|
|
|
outSound = "karateman/offbeatObjectOut";
|
2022-03-01 17:40:59 +00:00
|
|
|
else
|
2022-07-29 19:06:22 +00:00
|
|
|
outSound = "karateman/objectOut";
|
|
|
|
|
|
|
|
switch (type)
|
2022-03-01 17:40:59 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
case (int) HitType.Pot:
|
|
|
|
CreateItemInstance(beat, "Item00");
|
|
|
|
break;
|
|
|
|
case (int) HitType.Lightbulb:
|
|
|
|
if (Starpelly.Mathp.GetDecimalFromFloat(beat + 0.5f) == 0f)
|
|
|
|
outSound = "karateman/offbeatLightbulbOut";
|
|
|
|
else
|
|
|
|
outSound = "karateman/lightbulbOut";
|
|
|
|
var mobj = CreateItemInstance(beat, "Item01", KarateManPot.ItemType.Bulb);
|
|
|
|
mobj.GetComponent<KarateManPot>().SetBulbColor(LightBulbColors[0]);
|
|
|
|
break;
|
|
|
|
case (int) HitType.Rock:
|
|
|
|
CreateItemInstance(beat, "Item02", KarateManPot.ItemType.Rock);
|
|
|
|
break;
|
|
|
|
case (int) HitType.Ball:
|
|
|
|
CreateItemInstance(beat, "Item03", KarateManPot.ItemType.Ball);
|
|
|
|
break;
|
|
|
|
case (int) HitType.CookingPot:
|
|
|
|
CreateItemInstance(beat, "Item06", KarateManPot.ItemType.Cooking);
|
|
|
|
break;
|
|
|
|
case (int) HitType.Alien:
|
|
|
|
CreateItemInstance(beat, "Item07", KarateManPot.ItemType.Alien);
|
|
|
|
break;
|
|
|
|
case (int) HitType.TacoBell:
|
|
|
|
CreateItemInstance(beat, "Item99", KarateManPot.ItemType.TacoBell);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CreateItemInstance(beat, "Item00");
|
|
|
|
break;
|
2022-03-01 17:40:59 +00:00
|
|
|
}
|
2022-07-29 19:06:22 +00:00
|
|
|
Jukebox.PlayOneShotGame(outSound, forcePlay: true);
|
2022-02-26 18:27:02 +00:00
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
public void CreateBulbSpecial(float beat, int type, Color c)
|
2022-02-26 18:27:02 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
string outSound;
|
|
|
|
if (Starpelly.Mathp.GetDecimalFromFloat(beat + 0.5f) == 0f)
|
|
|
|
outSound = "karateman/offbeatLightbulbOut";
|
|
|
|
else
|
|
|
|
outSound = "karateman/lightbulbOut";
|
|
|
|
var mobj = CreateItemInstance(beat, "Item01", KarateManPot.ItemType.Bulb);
|
2021-12-30 12:17:22 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
if (type == (int) LightBulbType.Custom)
|
|
|
|
mobj.GetComponent<KarateManPot>().SetBulbColor(c);
|
|
|
|
else
|
|
|
|
mobj.GetComponent<KarateManPot>().SetBulbColor(LightBulbColors[type]);
|
|
|
|
Jukebox.PlayOneShotGame(outSound, forcePlay: true);
|
2021-12-29 06:52:48 +00:00
|
|
|
}
|
2022-01-19 05:40:49 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
public void Combo(float beat)
|
2022-03-03 21:16:06 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
Jukebox.PlayOneShotGame("karateman/barrelOutCombos", forcePlay: true);
|
2022-03-03 21:16:06 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
int comboId = KarateManPot.GetNewCombo();
|
|
|
|
|
|
|
|
BeatAction.New(gameObject, new List<BeatAction.Action>()
|
2022-01-21 07:09:32 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new BeatAction.Action(beat, delegate { CreateItemInstance(beat, "Item00", KarateManPot.ItemType.ComboPot1, comboId); }),
|
|
|
|
new BeatAction.Action(beat + 0.25f, delegate { CreateItemInstance(beat + 0.25f, "Item00", KarateManPot.ItemType.ComboPot2, comboId); }),
|
|
|
|
new BeatAction.Action(beat + 0.5f, delegate { CreateItemInstance(beat + 0.5f, "Item00", KarateManPot.ItemType.ComboPot3, comboId); }),
|
|
|
|
new BeatAction.Action(beat + 0.75f, delegate { CreateItemInstance(beat + 0.75f, "Item00", KarateManPot.ItemType.ComboPot4, comboId); }),
|
|
|
|
new BeatAction.Action(beat + 1f, delegate { CreateItemInstance(beat + 1f, "Item00", KarateManPot.ItemType.ComboPot5, comboId); }),
|
|
|
|
new BeatAction.Action(beat + 1.5f, delegate { CreateItemInstance(beat + 1.5f, "Item05", KarateManPot.ItemType.ComboBarrel, comboId); }),
|
2022-01-21 07:09:32 +00:00
|
|
|
});
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
2022-01-21 07:09:32 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
new MultiSound.Sound("karateman/punchy1", beat + 1f),
|
|
|
|
new MultiSound.Sound("karateman/punchy2", beat + 1.25f),
|
|
|
|
new MultiSound.Sound("karateman/punchy3", beat + 1.5f),
|
|
|
|
new MultiSound.Sound("karateman/punchy4", beat + 1.75f),
|
|
|
|
new MultiSound.Sound("karateman/ko", beat + 2f),
|
|
|
|
new MultiSound.Sound("karateman/pow", beat + 2.5f)
|
|
|
|
}, forcePlay: true);
|
2022-01-19 05:40:49 +00:00
|
|
|
}
|
2022-02-27 03:28:15 +00:00
|
|
|
|
2022-07-29 19:26:59 +00:00
|
|
|
public void Kick(float beat)
|
|
|
|
{
|
|
|
|
Jukebox.PlayOneShotGame("karateman/barrelOutKicks", forcePlay: true);
|
|
|
|
|
|
|
|
CreateItemInstance(beat, "Item05", KarateManPot.ItemType.KickBarrel);
|
|
|
|
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("karateman/punchKick1", beat + 1f),
|
|
|
|
new MultiSound.Sound("karateman/punchKick2", beat + 1.5f),
|
|
|
|
new MultiSound.Sound("karateman/punchKick3", beat + 1.75f),
|
|
|
|
new MultiSound.Sound("karateman/punchKick4", beat + 2.5f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
}
|
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
GameObject CreateItemInstance(float beat, string awakeAnim, KarateManPot.ItemType type = KarateManPot.ItemType.Pot, int comboId = -1)
|
2022-02-27 03:28:15 +00:00
|
|
|
{
|
2022-07-29 19:06:22 +00:00
|
|
|
GameObject mobj = GameObject.Instantiate(Item, ItemHolder);
|
|
|
|
KarateManPot mobjDat = mobj.GetComponent<KarateManPot>();
|
|
|
|
mobjDat.type = type;
|
|
|
|
mobjDat.startBeat = beat;
|
|
|
|
mobjDat.awakeAnim = awakeAnim;
|
|
|
|
mobjDat.comboId = comboId;
|
|
|
|
|
|
|
|
mobj.SetActive(true);
|
2022-02-27 17:02:46 +00:00
|
|
|
|
2022-07-29 19:06:22 +00:00
|
|
|
return mobj;
|
2022-02-27 03:28:15 +00:00
|
|
|
}
|
2021-12-29 06:52:48 +00:00
|
|
|
}
|
|
|
|
}
|