Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- using UnityEngine;
- using System.Collections;
-
- public class ReporterGUI : MonoBehaviour
- {
- Reporter reporter;
- void Awake()
- {
- reporter = gameObject.GetComponent<Reporter>();
- }
-
- void OnGUI()
- {
- reporter.OnGUIDraw();
- }
- }
|