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:
@@ -15,6 +15,9 @@ public class NoTrail : Pickup
|
||||
|
||||
public override void OnPickup()
|
||||
{
|
||||
//hide sprite renderer
|
||||
gameObject.GetComponent<SpriteRenderer>().enabled = false;
|
||||
|
||||
player.trail.SetActive(false);
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ public class Player : MonoBehaviour
|
||||
public float rotationSpeed;
|
||||
public float direction;
|
||||
public List<ParticleCollisionEvent> collisionEvents;
|
||||
public float speedIncrease;
|
||||
public bool isLit;
|
||||
|
||||
public Camera camera;
|
||||
@@ -58,8 +59,10 @@ public class Player : MonoBehaviour
|
||||
//mousePos.y = transform.position.y;
|
||||
//transform.LookAt(mousePos);
|
||||
|
||||
|
||||
//if isLit decrease health
|
||||
if (isLit)
|
||||
//Invincible for the first 2 seconds to avoid particle collision bug
|
||||
if (isLit && Time.timeSinceLevelLoad > 2)
|
||||
{
|
||||
health -= 100.0f * Time.deltaTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user