12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.EventSystems;
- using UnityEngine.UI;
- public class TestDrawScript : MonoBehaviour
- {
- void Start ()
- {
- DebugHelper.ActivateConsole();
- drawCanvas_ = GameObject.Find("DrawCanvas");
-
- controlCanvas_ = GameObject.Find("ControlCanvas");
-
- Debug.Log("Start");
- }
- void Update ()
- {
-
- }
- private void OnGUI()
- {
- DebugHelper.DrawConsole();
- }
- GameObject drawCanvas_;
- GameObject controlCanvas_;
- }
|