Example #1
0
 public AILine(AIRenderer.RIState state, string text, bool isSticky = false)
     : this()
 {
     State = state;
     Text = text;
     Sticky = isSticky;
 }
Example #2
0
 void Start()
 {
     rend  = GetComponent <AIRenderer>();
     trans = GetComponent <Trans>();
     StartCoroutine(An());
 }
Example #3
0
 void Awake()
 {
     Instance = this;
     behaviorImage = GetComponent<Image>();
 }