Skip to content
Permalink
ee3ac1d8d3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (29 sloc) 721 Bytes
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class Score : MonoBehaviour {
//public static string updateField;
//public static int scoreTracker = 0;
//Text updates;
//public GameObject bullet;
//void OnCollisionEnter(Collision collision)
//{
// if (collision.gameObject.tag == "Bullet")
// {
// if (other.gameObject.tag == "enemy")
// scoreTracker = scoreTracker + 10;
// }
//}
//void Awake()
//{
// updates = GetComponent<Text>();
//}
//void Start()
//{
// updateField = "000";
//}
//void Update()
//{
// updateField = scoreTracker.ToString();
//}
}