[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

View File

@@ -6,10 +6,10 @@ using UnityEngine.Experimental.PlayerLoop;
public class Spinner : MonoBehaviour
{
private Vector3 speed = new Vector3(0, 1, 0);
private Vector3 speed = new Vector3(0, -90, 0);
private void Update()
{
transform.rotation = Quaternion.Euler(speed * Time.deltaTime);
transform.rotation = Quaternion.Euler(transform.rotation.eulerAngles + speed * Time.deltaTime);
}
}