using UnityEngine; public class Collector : MonoBehaviour { // How many things we have collected public int collected; // What should happen if we enter trigger private void OnTriggerEnter2D(Collider2D collision) { // If it's collectible if (collision.gameObject.CompareTag("Collectible")) { // Destroy it Destroy(collision.gameObject); // Increase count of objects we collected collected++; } } }If you play the game now, cat should be able to collect objects you placed, and number of items collected should increse whenever you pick something.
Rename our 'New Text' object to 'Score' for clarity sake and place it wherever you want by using 'Rect Tool' (marked on upper left of corner the screenshot). Also make sure to set anchor correctly under Rect Transform. It tells unity to stick your UI element to one side of the screen, which is important if your screen will change sizes (without it, your element might end up outside of the screen if you make game window smaller for example). And finally, make sure default text is "0".
using UnityEngine; using UnityEngine.UI; public class Collector : MonoBehaviour { // How many things we have collected public int collected; // Text UI for displaying score public Text score; // What should happen if we enter trigger private void OnTriggerEnter2D(Collider2D collision) { // If it's collectible if (collision.gameObject.CompareTag("Collectible")) { // Destroy it Destroy(collision.gameObject); // Increase count of objects we collected collected++; // Update our score score.text = collected.ToString(); } } }Assign our 'Score' Game Object to Score property of Collector.cs script.
No comments:
Post a Comment