Ejemplo n.º 1
0
        void Awake()
        {
            self = this;

            RuntimeIntegrityCheck();
            initedTime = DateTime.UtcNow;
        }
Ejemplo n.º 2
0
        void Awake()
        {
            runtime = GetComponent <iSCentralDispatchRuntime> ();

            foreach (iSCDThreadContainer c in runtime.GetActiveContainerList())
            {
                CountThreads(c);
            }
        }
Ejemplo n.º 3
0
        static public void StartDebugger()
        {
            iSCentralDispatchRuntime r = iSCentralDispatchRuntime.GetDefaultRuntime();

            if (r == null)
            {
                throw new System.Exception("iSCDRuntimeDebugger Failed to init: no active runtime found");
            }

            r.EnableDebugger();
        }
Ejemplo n.º 4
0
        static public void Init()
        {
            GameObject obj = new GameObject("iSCentralDispatchRuntime");

            self = obj.AddComponent <iSCentralDispatchRuntime> ();
        }