Example #1
0
        private void InitScriptLoader()
        {
            var ScriptPath = AssetCustomSetting.ScriptABPath;

            if (ScriptPath.IsEmptyOrNull())
            {
                return;
            }
            ScriptLoader = GetAssurerSync(ScriptPath);
            if (ScriptLoader != null)
            {
                ScriptLoader.LogSwitch = false;
            }
        }
Example #2
0
 public static void RecycleSelf(this ABAssurer aber)
 {
     EasyPool <ABAssurer> .Instance.Recycle(aber);
 }