Toluene: More points for collecting

parent 78e8a8c3
......@@ -18,7 +18,7 @@ public class Collectible : MonoBehaviour
void OnTriggerEnter2D(Collider2D other)
{
Destroy(gameObject);
_player.GetComponent<Player>().Score += 10;
_player.GetComponent<Player>().Score += 50;
_player.GetComponent<Player>().Progression += 1;
_player.GetComponent<Player>().NbVials += 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment