New graphics and general polish

Also fixed visual pickup bugs
Sets up bloom effects and materials
UI and ux adjustments/polish
This commit is contained in:
2022-04-24 23:06:25 +02:00
parent f23e06bef2
commit 359578a9db
54 changed files with 3306 additions and 121 deletions

View File

@@ -15,6 +15,9 @@ public class NoTrail : Pickup
public override void OnPickup()
{
//hide sprite renderer
gameObject.GetComponent<SpriteRenderer>().enabled = false;
player.trail.SetActive(false);
}

View File

@@ -13,6 +13,9 @@ public class Slowmotion : Pickup
Debug.Log("Slowmotion");
isSlow = true;
Time.timeScale = Time.timeScale * slowFactor;
//disable sprite renderer
GetComponent<SpriteRenderer>().enabled = false;
}