[TASK] Added more duck spawn, performance fixes, instruction in the minigame, option to zoom in on stickers

This commit is contained in:
2019-08-30 00:39:13 +02:00
parent bb4b5afb18
commit c60a130874
51 changed files with 86781 additions and 45090 deletions

11
Assets/ProfileButton.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ProfileButton : MonoBehaviour
{
public void OnProfileButtonClicked()
{
BadeendGoGameManager.Instance.GameState = GameState.StickerOverview;
}
}