| New file |
| | |
| | | -- -------------------------------------------------------- |
| | | -- [Author]: 第二世界 |
| | | -- [ Date ]: #DateTime# |
| | | -- -------------------------------------------------------- |
| | | |
| | | require('global.stringutil') |
| | | |
| | | #ClassName#Config = {} |
| | | |
| | | function #ClassName#Config.Init() |
| | | local path |
| | | if CS.AssetSource.refdataFromEditor then |
| | | path = CS.ResourcesPath.CONFIG_FODLER .. '/#ClassName#.txt' |
| | | else |
| | | path = CS.AssetVersionUtility.GetAssetFilePath('config/#ClassName#.txt') |
| | | end |
| | | |
| | | local datas = CS.FileExtersion.ReadFileAllLines(path) |
| | | local length = datas.length |
| | | local lines = datas.lines |
| | | |
| | | for i = 3, length - 1 do |
| | | local contents = Split(lines[i], '\t') |
| | | local key = contents[1] |
| | | local subTable = {} |
| | | #Read# |
| | | #ClassName#Config[tostring(key)] = subTable |
| | | end |
| | | end |
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6dc25fb15e8cf01489c7b351dbace096 |
| | | timeCreated: 1505271081 |
| | | licenseType: Pro |
| | | TextScriptImporter: |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| | |
| | | using System.Text; |
| | | using System.Text.RegularExpressions; |
| | | |
| | | public class CreateLuaClassFile |
| | | public class CreateLuaWindowClassFile |
| | | { |
| | | static string templatePath = "Assets/Editor/ScriptTemplate/LuaWindowTemplate.txt"; |
| | | |
| | |
| | | return AssetDatabase.LoadAssetAtPath(pathName, typeof(UnityEngine.Object)); |
| | | } |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | public class CreateLuaConfigClassFile |
| | | { |
| | | static string templatePath = "Assets/Editor/ScriptTemplate/LuaConfigTemplate.txt"; |
| | | public static string readContent = string.Empty; |
| | | |
| | | [MenuItem("Assets/生成Lua配置解析类型")] |
| | | public static void CreateLuaClass() |
| | | { |
| | | if (Selection.objects != null) |
| | | { |
| | | foreach (var item in Selection.objects) |
| | | { |
| | | var name = item.name; |
| | | MakeReadContent(Application.dataPath.Replace("Assets", "") + AssetDatabase.GetAssetPath(item)); |
| | | var path = string.Format("Assets/ResourcesOut/Lua/config/{0}Config.lua", name); |
| | | AssetDatabase.DeleteAsset(path); |
| | | ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, |
| | | ScriptableObject.CreateInstance<LuaConfigTemplate>(), path, null, templatePath); |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | public static void MakeReadContent(string path) |
| | | { |
| | | var fileInfo = new FileInfo(path); |
| | | var lines = File.ReadAllLines(fileInfo.FullName); |
| | | if (lines.Length > 2) |
| | | { |
| | | var typeLine = lines[0]; |
| | | var fieldLine = lines[1]; |
| | | var types = typeLine.Split('\t'); |
| | | var fields = fieldLine.Split('\t'); |
| | | var min = Mathf.Min(types.Length, fields.Length); |
| | | var fieldFulls = new List<string>(); |
| | | var readFulls = new List<string>(); |
| | | |
| | | int index = 0; |
| | | for (int j = 0; j < min; j++) |
| | | { |
| | | var type = types[j]; |
| | | var field = fields[j]; |
| | | var readString = GetRead(type, field, index + 1); |
| | | if (!string.IsNullOrEmpty(readString)) |
| | | { |
| | | index++; |
| | | readFulls.Add(readString); |
| | | } |
| | | } |
| | | |
| | | readContent = string.Join("\r\n\t\t", readFulls.ToArray()); |
| | | } |
| | | } |
| | | |
| | | |
| | | static string GetRead(string _type, string _field, int _index) |
| | | { |
| | | _field = _field.Replace(" ", ""); |
| | | if (_type.Contains("int[]") || _type.Contains("float[]")) |
| | | { |
| | | return string.Format("subTable.{0} = stringArray_to_numberArray(Split(contents[{1}], '|'))", _field, _index); |
| | | } |
| | | else if (_type.Contains("string[]")) |
| | | { |
| | | return string.Format("subTable.{0} = Split(contents[{1}], '|')", _field, _index); |
| | | } |
| | | else if (_type.Contains("int") || _type.Contains("float")) |
| | | { |
| | | return string.Format("subTable.{0} = tonumber(contents[{1}])", _field, _index); |
| | | } |
| | | else if (_type.Contains("string")) |
| | | { |
| | | return string.Format("subTable.{0} = contents[{1}]", _field, _index); |
| | | } |
| | | else |
| | | { |
| | | return string.Empty; |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | class LuaConfigTemplate : EndNameEditAction |
| | | { |
| | | |
| | | public override void Action(int instanceId, string pathName, string resourceFile) |
| | | { |
| | | UnityEngine.Object o = CreateScriptAssetFromTemplate(pathName, resourceFile); |
| | | ProjectWindowUtil.ShowCreatedAsset(o); |
| | | } |
| | | |
| | | internal static UnityEngine.Object CreateScriptAssetFromTemplate(string pathName, string resourceFile) |
| | | { |
| | | string fullPath = Path.GetFullPath(pathName); |
| | | |
| | | StreamReader streamReader = new StreamReader(resourceFile); |
| | | string text = streamReader.ReadToEnd(); |
| | | streamReader.Close(); |
| | | var fileNameWithoutExtension = Path.GetFileNameWithoutExtension(pathName); |
| | | text = Regex.Replace(text, "#ClassName#", fileNameWithoutExtension.Substring(0, fileNameWithoutExtension.Length - 6)); |
| | | text = Regex.Replace(text, "#DateTime#", System.DateTime.Now.ToLongDateString()); |
| | | text = Regex.Replace(text, "#Read#", CreateLuaConfigClassFile.readContent); |
| | | |
| | | bool encoderShouldEmitUTF8Identifier = true; |
| | | bool throwOnInvalidBytes = false; |
| | | UTF8Encoding encoding = new UTF8Encoding(encoderShouldEmitUTF8Identifier, throwOnInvalidBytes); |
| | | bool append = false; |
| | | StreamWriter streamWriter = new StreamWriter(fullPath, append, encoding); |
| | | streamWriter.Write(text); |
| | | streamWriter.Close(); |
| | | AssetDatabase.ImportAsset(pathName); |
| | | return AssetDatabase.LoadAssetAtPath(pathName, typeof(UnityEngine.Object)); |
| | | } |
| | | |
| | | } |
| | | |
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 90cb0d60a87298f4ea87c8131f5d91c7 |
| | | folderAsset: yes |
| | | timeCreated: 1540285843 |
| | | licenseType: Pro |
| | | DefaultImporter: |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 81da11b54b720e642a67d210490f1473 |
| | | folderAsset: yes |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | DefaultImporter: |
| | | userData: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5789d6b86959a5a4cb889dbe30fe0149 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 603b1863f8ca7b14ab7b9f2ee6f86844 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bc1ef752014b4a4a9625b8d966fd336 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| New file |
| | |
| | | #if USE_UNI_LUA |
| | | using LuaAPI = UniLua.Lua; |
| | | using RealStatePtr = UniLua.ILuaState; |
| | | using LuaCSFunction = UniLua.CSharpFunctionDelegate; |
| | | #else |
| | | using LuaAPI = XLua.LuaDLL.Lua; |
| | | using RealStatePtr = System.IntPtr; |
| | | using LuaCSFunction = XLua.LuaDLL.lua_CSFunction; |
| | | #endif |
| | | |
| | | using XLua; |
| | | using System.Collections.Generic; |
| | | |
| | | |
| | | namespace XLua.CSObjectWrap |
| | | { |
| | | using Utils = XLua.Utils; |
| | | public class AssetSourceWrap |
| | | { |
| | | public static void __Register(RealStatePtr L) |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(AssetSource); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 0, 0, 0); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | Utils.EndObjectRegister(type, L, translator, null, null, |
| | | null, null, null); |
| | | |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 1, 9, 9); |
| | | |
| | | |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "allFromEditor", _g_get_allFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "audioFromEditor", _g_get_audioFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "effectFromEditor", _g_get_effectFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "mobFromEditor", _g_get_mobFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "refdataFromEditor", _g_get_refdataFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "sceneFromEditor", _g_get_sceneFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "shaderFromEditor", _g_get_shaderFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "uiFromEditor", _g_get_uiFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "luaFromEditor", _g_get_luaFromEditor); |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "allFromEditor", _s_set_allFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "audioFromEditor", _s_set_audioFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "effectFromEditor", _s_set_effectFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "mobFromEditor", _s_set_mobFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "refdataFromEditor", _s_set_refdataFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "sceneFromEditor", _s_set_sceneFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "shaderFromEditor", _s_set_shaderFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "uiFromEditor", _s_set_uiFromEditor); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "luaFromEditor", _s_set_luaFromEditor); |
| | | |
| | | |
| | | Utils.EndClassRegister(type, L, translator); |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int __CreateInstance(RealStatePtr L) |
| | | { |
| | | |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | if(LuaAPI.lua_gettop(L) == 1) |
| | | { |
| | | |
| | | AssetSource gen_ret = new AssetSource(); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } |
| | | catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return LuaAPI.luaL_error(L, "invalid arguments to AssetSource constructor!"); |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_allFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.allFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_audioFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.audioFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_effectFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.effectFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_mobFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.mobFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_refdataFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.refdataFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_sceneFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.sceneFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_shaderFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.shaderFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_uiFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.uiFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_luaFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetSource.luaFromEditor); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_allFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.allFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_audioFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.audioFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_effectFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.effectFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_mobFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.mobFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_refdataFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.refdataFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_sceneFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.sceneFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_shaderFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.shaderFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_uiFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.uiFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_luaFromEditor(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetSource.luaFromEditor = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 94929e196521c4e4eaa04c069ef5c0fb |
| | | timeCreated: 1540366836 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| New file |
| | |
| | | #if USE_UNI_LUA |
| | | using LuaAPI = UniLua.Lua; |
| | | using RealStatePtr = UniLua.ILuaState; |
| | | using LuaCSFunction = UniLua.CSharpFunctionDelegate; |
| | | #else |
| | | using LuaAPI = XLua.LuaDLL.Lua; |
| | | using RealStatePtr = System.IntPtr; |
| | | using LuaCSFunction = XLua.LuaDLL.lua_CSFunction; |
| | | #endif |
| | | |
| | | using XLua; |
| | | using System.Collections.Generic; |
| | | |
| | | |
| | | namespace XLua.CSObjectWrap |
| | | { |
| | | using Utils = XLua.Utils; |
| | | public class AssetVersionUtilityWrap |
| | | { |
| | | public static void __Register(RealStatePtr L) |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(AssetVersionUtility); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 0, 0, 0); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | Utils.EndObjectRegister(type, L, translator, null, null, |
| | | null, null, null); |
| | | |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 8, 5, 2); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "Init", _m_Init_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAssetVersionFile", _m_GetAssetVersionFile_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "BeginDownLoadTask", _m_BeginDownLoadTask_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "UpdateAssetVersions", _m_UpdateAssetVersions_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAssetVersion", _m_GetAssetVersion_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAssetFilePath", _m_GetAssetFilePath_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "IsUnpriorAssetDownLoadOk", _m_IsUnpriorAssetDownLoadOk_xlua_st_); |
| | | |
| | | |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "hasDownLoadFullAsset", _g_get_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "priorAssetDownLoadDone", _g_get_priorAssetDownLoadDone); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "unPriorAssetDownLoadDone", _g_get_unPriorAssetDownLoadDone); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "checkAssetCompleted", _g_get_checkAssetCompleted); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "assetsBuildTime", _g_get_assetsBuildTime); |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "hasDownLoadFullAsset", _s_set_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "assetsBuildTime", _s_set_assetsBuildTime); |
| | | |
| | | |
| | | Utils.EndClassRegister(type, L, translator); |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int __CreateInstance(RealStatePtr L) |
| | | { |
| | | |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | if(LuaAPI.lua_gettop(L) == 1) |
| | | { |
| | | |
| | | AssetVersionUtility gen_ret = new AssetVersionUtility(); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } |
| | | catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return LuaAPI.luaL_error(L, "invalid arguments to AssetVersionUtility constructor!"); |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_Init_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | AssetVersionUtility.Init( ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAssetVersionFile_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | AssetVersionUtility.GetAssetVersionFile( ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_BeginDownLoadTask_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | bool __prior = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | AssetVersionUtility.BeginDownLoadTask( __prior ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_UpdateAssetVersions_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __assetVersionFile = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | System.Collections.Generic.Dictionary<string, AssetVersion> gen_ret = AssetVersionUtility.UpdateAssetVersions( __assetVersionFile ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAssetVersion_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __assetBundleName = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | AssetVersion gen_ret = AssetVersionUtility.GetAssetVersion( __assetBundleName ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAssetFilePath_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __assetKey = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | string gen_ret = AssetVersionUtility.GetAssetFilePath( __assetKey ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_IsUnpriorAssetDownLoadOk_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | bool gen_ret = AssetVersionUtility.IsUnpriorAssetDownLoadOk( ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_hasDownLoadFullAsset(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetVersionUtility.hasDownLoadFullAsset); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_priorAssetDownLoadDone(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetVersionUtility.priorAssetDownLoadDone); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_unPriorAssetDownLoadDone(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetVersionUtility.unPriorAssetDownLoadDone); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_checkAssetCompleted(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushboolean(L, AssetVersionUtility.checkAssetCompleted); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_assetsBuildTime(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | translator.Push(L, AssetVersionUtility.assetsBuildTime); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_hasDownLoadFullAsset(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetVersionUtility.hasDownLoadFullAsset = LuaAPI.lua_toboolean(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_assetsBuildTime(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.DateTime gen_value;translator.Get(L, 1, out gen_value); |
| | | AssetVersionUtility.assetsBuildTime = gen_value; |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 632390b0970089c4a88125d64d4dfd06 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dd71493f9156c8d4e89359ff0a914eb7 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9099c5bee7137e04ca2008a1f329d79d |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 069905dbb4d29a04a9a3f9e287198f80 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2f8ad139067aa42479cb05dc7bea4e27 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 957669ce8c1fd1c419b26918f7eb674d |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e181b26be16ba3d4ca189c45946d4ecf |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 09eb6359353f4eb4e8119e6adcd3c9cb |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 33939fd9a047a0e4dae50d984e1ba3e8 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d8071b5e0c7ba5441a6eb41e7b99e006 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a3c658a0f18fdef49b07e6be215fd829 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b8bd5aacf0ef1fd4b8e1cd9652faff7a |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8cbe69e9bafd844418a6d146c677d315 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0f6639b6504a10f41a0eff6fdcdb9483 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cbb2120be77d4664ca08b91a86d6dc7d |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ac60ee32d43fdc94ca493405efdb5f42 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ace508be6677ae04082b59d3c80cf7c1 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 527d5ebc94e382e479f96dd838ae3cb6 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c9ea1ea84f1c8e144b5d24965eaf4233 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 759143245c07c5f45ab16fe09a651482 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 91bf676ddb9a15546a7280d1de945364 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1c923c4ad7b7a3b49a8cb0c94a595510 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bc22728dd411244d8d6054c562bb5d3 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ea9c93f8ca8988a4594ce7af51a831d6 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4d0533c7024ac47429b69b003f7c9b05 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bf877793f90832f488e33c3a25ae2e4b |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e592e2bee3cdcbe4f9f77f25892ec623 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d6d3095e0d67a7b43bf05e1183395976 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| New file |
| | |
| | | #if USE_UNI_LUA |
| | | using LuaAPI = UniLua.Lua; |
| | | using RealStatePtr = UniLua.ILuaState; |
| | | using LuaCSFunction = UniLua.CSharpFunctionDelegate; |
| | | #else |
| | | using LuaAPI = XLua.LuaDLL.Lua; |
| | | using RealStatePtr = System.IntPtr; |
| | | using LuaCSFunction = XLua.LuaDLL.lua_CSFunction; |
| | | #endif |
| | | |
| | | using XLua; |
| | | using System.Collections.Generic; |
| | | |
| | | |
| | | namespace XLua.CSObjectWrap |
| | | { |
| | | using Utils = XLua.Utils; |
| | | public class FileExtersionWrap |
| | | { |
| | | public static void __Register(RealStatePtr L) |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(FileExtersion); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 0, 0, 0); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | Utils.EndObjectRegister(type, L, translator, null, null, |
| | | null, null, null); |
| | | |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 12, 0, 0); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFileInfos", _m_GetFileInfos_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAllDirectoryFileInfos", _m_GetAllDirectoryFileInfos_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFileRelativePath", _m_GetFileRelativePath_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetVersionFromFileName", _m_GetVersionFromFileName_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "RemoveVersionFromFileFullName", _m_RemoveVersionFromFileFullName_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "AddVersionToFileFullName", _m_AddVersionToFileFullName_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "DirectoryCopy", _m_DirectoryCopy_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetMD5HashFromFile", _m_GetMD5HashFromFile_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetStringMD5Hash", _m_GetStringMD5Hash_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "ReadFileAllLines", _m_ReadFileAllLines_xlua_st_); |
| | | |
| | | |
| | | Utils.RegisterObject(L, translator, Utils.CLS_IDX, "lineSplit", FileExtersion.lineSplit); |
| | | |
| | | |
| | | |
| | | |
| | | Utils.EndClassRegister(type, L, translator); |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int __CreateInstance(RealStatePtr L) |
| | | { |
| | | |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | if(LuaAPI.lua_gettop(L) == 1) |
| | | { |
| | | |
| | | FileExtersion gen_ret = new FileExtersion(); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } |
| | | catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return LuaAPI.luaL_error(L, "invalid arguments to FileExtersion constructor!"); |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetFileInfos_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __path = LuaAPI.lua_tostring(L, 1); |
| | | string[] __searchPatterns = (string[])translator.GetObject(L, 2, typeof(string[])); |
| | | |
| | | System.Collections.Generic.List<System.IO.FileInfo> gen_ret = FileExtersion.GetFileInfos( __path, __searchPatterns ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAllDirectoryFileInfos_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __path = LuaAPI.lua_tostring(L, 1); |
| | | System.Collections.Generic.List<System.IO.FileInfo> __fileInfos = (System.Collections.Generic.List<System.IO.FileInfo>)translator.GetObject(L, 2, typeof(System.Collections.Generic.List<System.IO.FileInfo>)); |
| | | |
| | | FileExtersion.GetAllDirectoryFileInfos( __path, __fileInfos ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetFileRelativePath_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __root = LuaAPI.lua_tostring(L, 1); |
| | | string __fileFullName = LuaAPI.lua_tostring(L, 2); |
| | | |
| | | string gen_ret = FileExtersion.GetFileRelativePath( __root, __fileFullName ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetVersionFromFileName_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __fileName = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | int gen_ret = FileExtersion.GetVersionFromFileName( __fileName ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_RemoveVersionFromFileFullName_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __fullName = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | string gen_ret = FileExtersion.RemoveVersionFromFileFullName( __fullName ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_AddVersionToFileFullName_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __fullName = LuaAPI.lua_tostring(L, 1); |
| | | int __version = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | string gen_ret = FileExtersion.AddVersionToFileFullName( __fullName, __version ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_DirectoryCopy_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string __from = LuaAPI.lua_tostring(L, 1); |
| | | string __to = LuaAPI.lua_tostring(L, 2); |
| | | |
| | | FileExtersion.DirectoryCopy( __from, __to ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetMD5HashFromFile_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string _fileName = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | string gen_ret = FileExtersion.GetMD5HashFromFile( _fileName ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetStringMD5Hash_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string _str = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | string gen_ret = FileExtersion.GetStringMD5Hash( _str ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_ReadFileAllLines_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | |
| | | |
| | | { |
| | | string _path = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | FileExtersion.LuaConfigData gen_ret = FileExtersion.ReadFileAllLines( _path ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 793c23bd473c6034dbae497c086b3c53 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1fe87635b95b6ba43af8fb379501657c |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 830e8201303b2b5408286b35021e5b1c |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 55f1b612a91401b47be598564b6e18ea |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5291b0a4b868dbd448ae12575896a50f |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 38c021dd2da0a5547bc4283198c61760 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 34aebb4b612e1da43b09132daec13f61 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 826f6d6d44450a2478239b8a325c338b |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 24abf70562d91c84989d81221fea4882 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3d8274239e39a4546b5c0c8d42f6a09f |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9624d77ac905651428ce66c582ae225d |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f820a09530fb62d47b63c8b28d5a5fca |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cfe4cbdbac595eb4cb3dd26d945ef940 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 70a401039d33997469ee89d9a5e8ec8c |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8efcf50e1afdd7045bd466270403b754 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5f9ea9a52cbb2df4c97256be4409e3d8 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cb500781d731efe4fba5ddf56eae7ef3 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1a88e9701576e8e4db0b3073effe0458 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3b26270d4bb42d543b83a3b567fc7569 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 75132ab85c0494d4397a6142c6d345fa |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f368811bb8933204fa1870ecf70b5a97 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: df4a81bd887bf654aad97f2499c2a419 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 591f3dfb0a3d61c44a1f672ef9653055 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: deb6d898096ef9c44a33708dbcede1e6 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dc287fd21f08b794889b534e5ef3d6a4 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6134f6fe1fd916f45bf31353c87933f0 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c219408d208a0e64fa3b397348a0b5e5 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 900a46c6a6220d741a0435b974505659 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fb2af968f739e1b4ca9730d48a4af45e |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9a0eb45e21af8c74395cdf1a5a029962 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8ca74f47db9d1d44e8c094d697f8571d |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4841a9a437fafa5459595f6727257df9 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f48978db994da04459e4ccb650f36704 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d28ddd57a20469645a4c50c02114597c |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 947b31a3c6a69914a93291c07a8bba91 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a32bb324c79740a40b224f75a7808f1c |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0c2abf247eb0f89438330d4ee1b3ec7b |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fb4782c21718d5344a878afa3b3af73c |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7e12291f2a79e844d93ced41c956eba7 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 62e0dfaf91cd32740b7d5f7619de734c |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 43d8f7cf3c0809648a83782f88989acb |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1e6bac3c452101048922d80826c0b698 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 03f41b11e9a7f9f4d929256d95fa410f |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 60c923e1dc53bc74eb1adee91f5943b9 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a9efdf43a0765c438441f99b3f8047f |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 378d62c80a607b14c899613d178666c1 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5770e7f41697a6445b2a59b5901b8aa8 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 077cd0a37fdeca14abc6341db01b29d0 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cc6c58ef15b76424ebaf1b449630b352 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6a45b4844d1227148902be8b4e9c075c |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ae133ce5ce1bee04b97ba20009ac7ef5 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0937570edd5a7854e8d0a27d01e8c6b0 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e28848b8cc54bf348946a247726d014b |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1e27d042e5efcd249abc3fc6844625a2 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 55691b6cea6aa904a937ff1c1831765d |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a49b3015dfaf833429b8ef3dc23fbf4c |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 03507e24fabbc9a47b63c10ec6d99677 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 087c4d987f6018b4a8b370be9767c1d8 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c41c0d6075930744fa3dc68e2e3a25e3 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bfaaed0f073fedb4aa2273ca246191de |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6902535480631c24996f5b263c215457 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bbb42263160c0784c860694ad8fd9283 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 20ee8ca1ad0dd2e47834e574ccaf055b |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 24e17b0c6c183ed43b3e055c3c5d5bd2 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6b8fe7ba1c9cc1740b17cc27b2419536 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b76e94c6c52d71f41866c348ba887445 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c7fbdd2d0768eec418c1df368f537bf6 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a929bb17c77e5c249896c24156010506 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 76112a3f9ee308c43952a6d69e6d1c0a |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8f2296f2e5a5dd348a643f1f019cc13d |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3a14249d023ffb7489e0ee3a6a119214 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 25d058683d393f9428020d7574210afc |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a015cafcbde5044bb54f4381d746512 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 468835f4f0cb56f42a9cc15b38c80379 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 33e289980f5f23748987e51f1c14074f |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2fa10b6b0a4feb2458a78796356b28b3 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d63f0582b70acb14085d908ebe8f7bbe |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 62f4d21cb7d2b8647a366edddb816d2d |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4accb696d05e69f409437dfd205d412e |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6ef3fc0355e6c5044b0851e49d0aa18d |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f8f11d68dee49e047b6498245a639056 |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4b07cebdb99d9a543b966af705ccb7cb |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e565828749e49224b8fc8ff4c217b655 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 749e6fe53c7847f41b65f2a919887207 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b185893a150fc5d4baf8ec43a617855f |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 13d878d5431e56948a2746e2bdb73e89 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9320de26e80107a41bcf408bedbac598 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f102c01afddcdfb448ac9fea52505b08 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b01955e2308154346a9a6301d0691a8a |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 52a07f69b920feb48943eccbac8594b5 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7c435df9252a72b498e32a6ad91588e0 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: df6b96593fe372b439968fded6471618 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a7f5127771c6d2e48adef500c1b46bda |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6703ab05bf458d24a9e972d7aa89a047 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a4b4553f8fc38e346a74f232c6039b7f |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 30fd62a7fce5ade4c9b0093382f7a2f5 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4e3a18f64f393024ca32accfa80c8e26 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0dfe9b69c9e4e9a418de921361f2273b |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8c700f12a61a4384e891de5a34ae4abc |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a42bd992c131ef4dbbc439ef3d98671 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7f232477cb132014cbdd220b127ec0c9 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e3da464eeea98fd48b548bfb425c98b3 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 237076aa8fab365489cc65047c33728c |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 72d6c4488354e424fb9372b3e088fa48 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1d1b2dc9a25ab3b49bd9bee14b449742 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b960c7b3e9cae6e49906888a80bd6d6d |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6aeeae94c65e243489a2c4d0337306d4 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 17b55cfa8df2a9a4493ad3e64621361e |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 124469cdcef6ef74fa6e42b8ebd57d1c |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4192d19e835ff6c449ba8f21700aacc7 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b1563f99d6476384d80776e345afbd53 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ca130df9a416ebb49b577e036fda9c6a |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0d6b9211c7055c94fafb2903392a33f2 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 84954baaca7196042b5c8e5e58dcf89d |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3e01f53eeb856a34893e2c1c7f920c15 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 14591dace9140144d85057629bc6b84d |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d149c5794bd60174491a9d42fe52df87 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d26608eea2ed5a14c88be985a9210b2b |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b4eb01e05e4f7454382a376d4742b282 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 374e8e13a16ff68438ba061255f5368c |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0f4b5a5949384264a89e170f5e57b9a2 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: eeb9df224aed2434283963f3b7612c82 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 31bc2210d8c272040b27855fa1812de1 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 54b637c975635c64c83e276ef8278d36 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d51861e63d378594fb7efe1dd24df7dd |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 906b14cf032290e4baf5d7c7cce84caa |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 88f6576b62c818b49baf49546d6a503c |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5e413bc6c94528a44822d3da0c6a2bc2 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 059abad65b3872b468b155eb8d0b14d2 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e23926034b142c444b67e1ebebd0bf72 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d05c677a9edb57842ab868ca131da95d |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f35878d60b07cb540b40091d9161f651 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3fa938fe057e88b4b92ec0a76791e7e6 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 09cb234a845ee9947b9e9b0425f5a888 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9749253765e353a479ddb326a20c1650 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 98044351e4db23c4283e56f2e2ad72c4 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3ae7ed5affce46e49ba5c3bcfe30e8f6 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fa641fd5e7a27bf43aa47a6bac18e392 |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 489e2344e2bed7b408f59ca17fe68bc6 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 116028dfcfcb3e849ba924b367d621c8 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2a48c0aacccb1344cab9fd40fce95098 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b3800310946a5da4ea138182cb11754f |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e87e263d5922647498d8092766fbdad9 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e2813122bc70c4b46a7980398a35287f |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3af7e7d6985c7774380c3dcfffaf13e6 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2f1d7eb3bf0c540458985b0cfb50e0cd |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 335a3151a1bc13147bdb8542204c408e |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 805b509afcc10524fbc8646e95cdad0c |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: afd2660eb1e075a40847cf45d854faa2 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fbbfc1edabdeb76408b54f55951798b2 |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 52eb23e60f547254cb100bccac74786d |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d17d2916847026246b5aefebdf448e02 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 523d285b4232d414cbadf683f29e0db6 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 27496be7d03b2114b937f9207f7d57a5 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d8aa3ba36e2b13f42b42dd7fa7176d45 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0f8a7aaf578abf34e8dd9158db807593 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f79e33b9df7e634428b9751c4894b4ad |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f18778ceb0b8be94eafdc8f080b017fc |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 18b460884c0d27b4bb61412e045f58b5 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a789bdc6a81016f49b0f0c8ce1462959 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d9f34f4d2b205c545a449150c7ba987c |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f829bde941e9b1641b56ce9017951a91 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 453e74fad94a8474db441fafed17fffe |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6c25a2a306220cb478fef2fac94ebc60 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 86fbf1ddcbf974d4da6d597eda65ab23 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ae8a499ba65cba140b22a603fba6d0bf |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e8a3b54868481e44b8a50da83a665670 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0d9c9fd8c707c6a479bfa15df275b233 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9de8b76e68d50be4a9bf9c7b242e7d05 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6f2efe75941ba1f4b99c85d10aadd140 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a0ca1cad176735f4abea564cdc8c476f |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1ca00f2d1644f444d8bd2ff858c4633d |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5a5aa5ca9f7f0d947b9418e6ff947aa9 |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b0e94bde79e83a843a0283aff1ed0eeb |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3eb58aa29c5ba6e418a59dac494f0ec8 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bd3a4b3c2a6d12e4f94960c188cca8b0 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 989352a4fc6332845a49e4063eefc3fa |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0cd3bc067755b1c49871a512491131ca |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b533aa3a5c2d6494996b27e046402f9a |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7d3103a64ea766b4c96a001115058c6b |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2b5fbf45547ae194480aaa41e4c38730 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f147d8d78c2492c409b12d90cd3c8167 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 61db421bc0476c24788bf788f2bf1df6 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e5402400e1b50f44e99efff92ba4bcd8 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 795f2fb5265644c41bc1212a33fd08bd |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: eb8d0d3cd811fb444b5afaa5c3485f4b |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 29abafd7f57230b40812b01c51124d0b |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 780059e884574cf47a0cb26a29fbb109 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 65294812aef5ee145b9df10c3936008a |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b2a4bb141a32d13468b68f8154cd8c40 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c63d0a668305e064ab1b2f44fcb599d1 |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bfaf63a6f5a55e4b9446792cc0d473b |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 29361f7a016c4ac42909fe5e3d44abd1 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2a27cb42908afbf41afb7c93d32d53b2 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363328 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 88bcd93da2d9373478bc15bdbd0e7b12 |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b0ed9865af0081544b463e1b3e4e38fc |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 398375c388e51f14da18bb4b22774781 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ead2e1bc9eea11b46b7f932519d59bb1 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b126750b3d0662644bfd8b45ae74fcb1 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a9874f77a7518a94ca6d98ddfb9e60ac |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363336 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b4e22cc7d4f85a141a73cd779dfbac16 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 79a51bc2967a658419785be4dc381fdc |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e2f97bb17fa1fd0468f8e68e5e858e68 |
| | | timeCreated: 1540345233 |
| | | timeCreated: 1540363339 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5a7027ccdfba9d040a8d69e29d55a0dc |
| | | timeCreated: 1540345226 |
| | | timeCreated: 1540363331 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d337957115a67ec4d9fab9dee996100a |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 651c17c172cdcc24687ff5e27edc736b |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 847e0f1c12dcb494caf9d77c968769dd |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363334 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a21a8f97ccb8a642ae5c24b54a1d947 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3308366168ca38b4b94d557561f3b8b4 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1393ae6d5075591409a71a54536e63a7 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363326 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 462b1c7f8144c9244a982c62f0a6fd50 |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9682ff66da3f3ef4dbf00681fabc5882 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1ffa5eec575d1b24cbe4a73fb9d26af5 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 43f8ea4863d6fa14180745a7e35e0a1e |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: be8bcbac1a0d9f842a2789441fd508e2 |
| | | timeCreated: 1540345231 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7ad647b5b342d4d41b467e9a444420cb |
| | | timeCreated: 1540345228 |
| | | timeCreated: 1540363333 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 43e2c8ac85e11ef48a17f2ebcb149b7b |
| | | timeCreated: 1540345225 |
| | | timeCreated: 1540363330 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f07cd1428ad6e7444bacd35ff3ebbfd1 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c623c142e6649254bb8ae1e7aad5caee |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363337 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a25b6e7b38fb58a4090546d99854ef40 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 97ed12a2205b2034e86dd386c1495474 |
| | | timeCreated: 1540345229 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1624096edfdc40c428ce43b8ea252e47 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f4df3831fc7eca24c80e693ce21c60ca |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 163d986df23949d469ba9c15b74e3a4c |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6ad283f36941baf4093a7c5ed05fd3a0 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ec3e31df19638ce4fb761a04c93f88a5 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f62cc05ea5332da489eadd6274e7e145 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6c12b3ad613697a4dae4174a8db5de30 |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ee6f23c18d66d2d4bbbdba4f71e42870 |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 658e762a2c99b6a43a4a88c0df3cdb5e |
| | | timeCreated: 1540345227 |
| | | timeCreated: 1540363332 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 15eaa540466092a449286617844ddee6 |
| | | timeCreated: 1540345222 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 36b33957b0483034bb265bb318d993a8 |
| | | timeCreated: 1540345224 |
| | | timeCreated: 1540363329 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1fa95ebe8ae94f44eb666266a9023786 |
| | | timeCreated: 1540345223 |
| | | timeCreated: 1540363327 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | |
| | | translator.DelayWrapLoader(typeof(ResourcesPath), ResourcesPathWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(AssetSource), AssetSourceWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(Equation), EquationWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(LaunchPostProcess), LaunchPostProcessWrap.__Register); |
| | |
| | | translator.DelayWrapLoader(typeof(Snxxz.UI.AchievementModel), SnxxzUIAchievementModelWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(Snxxz.UI.ActivityModel), SnxxzUIActivityModelWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(AssetVersionUtility), AssetVersionUtilityWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(DownLoadAndDiscompressTask), DownLoadAndDiscompressTaskWrap.__Register); |
| | | |
| | |
| | | |
| | | translator.DelayWrapLoader(typeof(ComponentExtersion), ComponentExtersionWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(FileExtersion), FileExtersionWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(GMCommand), GMCommandWrap.__Register); |
| | | |
| | | translator.DelayWrapLoader(typeof(GlobalTimeEvent), GlobalTimeEventWrap.__Register); |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9f842444e7917ed448b8473a206566f3 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 02288f0ae28fac646b5952253c2478d4 |
| | | timeCreated: 1540345221 |
| | | timeCreated: 1540363325 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9c222a144893d1344825a3962e2e2747 |
| | | timeCreated: 1540345230 |
| | | timeCreated: 1540363335 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e97b133674b9b5b479af15b07de05aad |
| | | timeCreated: 1540345234 |
| | | timeCreated: 1540363340 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d076adbb936a8e44fa476da75b6fc59c |
| | | timeCreated: 1540345232 |
| | | timeCreated: 1540363338 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | |
| | | <assembly fullname="Assembly-CSharp"> |
| | | <type fullname="ResourcesPath" preserve="all"/> |
| | | <type fullname="AssetSource" preserve="all"/> |
| | | <type fullname="Equation" preserve="all"/> |
| | | <type fullname="LaunchPostProcess" preserve="all"/> |
| | | <type fullname="Config" preserve="all"/> |
| | |
| | | <type fullname="LuaWindowUtility" preserve="all"/> |
| | | <type fullname="Snxxz.UI.AchievementModel" preserve="all"/> |
| | | <type fullname="Snxxz.UI.ActivityModel" preserve="all"/> |
| | | <type fullname="AssetVersionUtility" preserve="all"/> |
| | | <type fullname="DownLoadAndDiscompressTask" preserve="all"/> |
| | | <type fullname="InGameDownLoad" preserve="all"/> |
| | | <type fullname="Snxxz.UI.BetterEquipGetModel" preserve="all"/> |
| | |
| | | <type fullname="EffectMgr" preserve="all"/> |
| | | <type fullname="TimeMgr" preserve="all"/> |
| | | <type fullname="ComponentExtersion" preserve="all"/> |
| | | <type fullname="FileExtersion" preserve="all"/> |
| | | <type fullname="GMCommand" preserve="all"/> |
| | | <type fullname="GlobalTimeEvent" preserve="all"/> |
| | | <type fullname="LanguageVerify" preserve="all"/> |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b89b30e875594e84f81fcc3d5f6550e8 |
| | | timeCreated: 1540345235 |
| | | timeCreated: 1540363341 |
| | | licenseType: Pro |
| | | TextScriptImporter: |
| | | userData: |