using System.Collections; using System.Collections.Generic; using UnityEngine; public class NodeData : MonoBehaviour { public Node node = null; public Config config; public virtual void Start() { node.config.roadNetwork.nodes.Add(node); } void OnDestroy() { node.config.roadNetwork.nodes.Remove(node); } private void Update() { if (!(node is CustomNode)) { return; } CustomNode customNode = (CustomNode) node; if (customNode.lightPhase == 0) { node.circleObject.GetComponent<MeshRenderer>().material = config.roadEditMaterial; node.textObject.GetComponent<TextMesh>().text = ""; return; } if (customNode.isPassable) { node.circleObject.GetComponent<MeshRenderer>().material = config.carAccelerationMaterial; } else { node.circleObject.GetComponent<MeshRenderer>().material = config.carBrakingMaterial; } node.textObject.GetComponent<TextMesh>().text = string.Format("phase: {0}", customNode.lightPhase); Vector3 target = Camera.main.transform.position; node.textObject.transform.LookAt(-target, Vector3.up); } }