mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-27 12:03:00 +00:00
Merge pull request #23 from CarsonKompon/fix-fork-lifter-maximum-peas-on-fork
Fork now only holds up to 4 peas in Fork Lifter
This commit is contained in:
commit
c234a7165e
1 changed files with 31 additions and 28 deletions
|
@ -47,6 +47,8 @@ namespace RhythmHeavenMania.Games.ForkLifter
|
|||
{
|
||||
ForkLifterPlayer.instance.Stab(this);
|
||||
|
||||
if (ForkLifterPlayer.instance.currentPerfectPeasOnFork < 4)
|
||||
{
|
||||
GameObject pea = new GameObject();
|
||||
|
||||
pea.transform.parent = ForkLifterPlayer.instance.perfect.transform;
|
||||
|
@ -78,6 +80,7 @@ namespace RhythmHeavenMania.Games.ForkLifter
|
|||
psprite.sortingOrder = 102;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
GameObject hitFXo = new GameObject();
|
||||
hitFXo.transform.localPosition = new Vector3(1.9969f, -3.7026f);
|
||||
|
|
Loading…
Reference in a new issue