This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
public class BoomGoesBlock : MonoBehaviour { | |
public static int amount = 0; | |
private GameObject go; | |
// Use this for initialization | |
void Start () { | |
go = this.gameObject; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Collections; | |
public class BoomGoesText : MonoBehaviour { | |
private Text text; | |
void Start () { |