123456789101112131415161718192021 |
- 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<Renderer>().material;
- }
-
- // Update is called once per frame
- void Update ()
- {
-
- }
- }
|