using UnityEngine; using System.Collections; public class TeamBlockFlag : MonoBehaviour { public TeamUtil.Team team; public Material yellowBlockMaterial; private Material oldMaterial; // Use 哈 this for initialization void Start () { oldMaterial = this.GetComponent().material; } // Update is called once per frame void Update () { } }