├── .github └── ISSUE_TEMPLATE │ ├── ----.md │ ├── --bug.md │ └── bug-report.md ├── .gitignore ├── .gitmodules ├── Doc ├── 996icu_license.svg ├── AGPL3_license.svg └── logo.png ├── Examples ├── E01_HelloWorld_CSharp │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Startup.meta │ │ │ │ ├── Startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── CounterScreen.cs │ │ │ │ │ ├── CounterScreen.cs.meta │ │ │ │ │ ├── FetchData.cs │ │ │ │ │ ├── FetchData.cs.meta │ │ │ │ │ ├── MainScreen.cs │ │ │ │ │ ├── MainScreen.cs.meta │ │ │ │ │ ├── MsgBox.cs │ │ │ │ │ └── MsgBox.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Atlas.meta │ │ │ │ └── Atlas │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ ├── btn_a_emerald.png.meta │ │ │ │ ├── common.spriteatlas │ │ │ │ └── common.spriteatlas.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ ├── launchSettings.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset │ └── README.md ├── E01_HelloWorld_ILRuntime │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Assemblies.meta │ │ │ ├── Assemblies │ │ │ │ ├── Nekonya.Main.dll.bytes │ │ │ │ ├── Nekonya.Main.dll.bytes.meta │ │ │ │ ├── Nekonya.Main.pdb.bytes │ │ │ │ └── Nekonya.Main.pdb.bytes.meta │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ILRuntimeGenCodeDefine.cs │ │ │ │ └── ILRuntimeGenCodeDefine.cs.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Startup.meta │ │ │ │ └── Startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Images.meta │ │ │ │ └── Images │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ └── btn_a_emerald.png.meta │ │ ├── ILRuntimeGenCode.meta │ │ ├── ILRuntimeGenCode │ │ │ ├── ILRuntimeGenCode.asmdef │ │ │ ├── ILRuntimeGenCode.asmdef.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── CLRBindings.cs │ │ │ │ ├── CLRBindings.cs.meta │ │ │ │ ├── System_Array_Binding.cs │ │ │ │ ├── System_Array_Binding.cs.meta │ │ │ │ ├── System_Exception_Binding.cs │ │ │ │ ├── System_Exception_Binding.cs.meta │ │ │ │ ├── System_IDisposable_Binding.cs │ │ │ │ ├── System_IDisposable_Binding.cs.meta │ │ │ │ ├── System_Object_Binding.cs │ │ │ │ ├── System_Object_Binding.cs.meta │ │ │ │ ├── System_Runtime_CompilerServices_AsyncVoidMethodBuilder_Binding.cs │ │ │ │ ├── System_Runtime_CompilerServices_AsyncVoidMethodBuilder_Binding.cs.meta │ │ │ │ ├── System_Runtime_CompilerServices_TaskAwaiter_1_IAsset_Binding.cs │ │ │ │ ├── System_Runtime_CompilerServices_TaskAwaiter_1_IAsset_Binding.cs.meta │ │ │ │ ├── System_Runtime_CompilerServices_TaskAwaiter_1_IUIEntity_Binding.cs │ │ │ │ ├── System_Runtime_CompilerServices_TaskAwaiter_1_IUIEntity_Binding.cs.meta │ │ │ │ ├── System_String_Binding.cs │ │ │ │ ├── System_String_Binding.cs.meta │ │ │ │ ├── System_Threading_Tasks_Task_1_IAsset_Binding.cs │ │ │ │ ├── System_Threading_Tasks_Task_1_IAsset_Binding.cs.meta │ │ │ │ ├── System_Threading_Tasks_Task_1_IUIEntity_Binding.cs │ │ │ │ ├── System_Threading_Tasks_Task_1_IUIEntity_Binding.cs.meta │ │ │ │ ├── TinaX_Container_IServiceContainer_Binding.cs │ │ │ │ ├── TinaX_Container_IServiceContainer_Binding.cs.meta │ │ │ │ ├── TinaX_I18N_II18N_Binding.cs │ │ │ │ ├── TinaX_I18N_II18N_Binding.cs.meta │ │ │ │ ├── TinaX_IXCore_Binding.cs │ │ │ │ ├── TinaX_IXCore_Binding.cs.meta │ │ │ │ ├── TinaX_UIKit_DataBinding_BindableProperty_1_Int32_Binding.cs │ │ │ │ ├── TinaX_UIKit_DataBinding_BindableProperty_1_Int32_Binding.cs.meta │ │ │ │ ├── TinaX_UIKit_IUIKit_Binding.cs │ │ │ │ ├── TinaX_UIKit_IUIKit_Binding.cs.meta │ │ │ │ ├── TinaX_UIKit_OpenUIParam_Binding.cs │ │ │ │ ├── TinaX_UIKit_OpenUIParam_Binding.cs.meta │ │ │ │ ├── TinaX_VFSKit_IAsset_Binding.cs │ │ │ │ ├── TinaX_VFSKit_IAsset_Binding.cs.meta │ │ │ │ ├── TinaX_VFSKit_ISceneAsset_Binding.cs │ │ │ │ ├── TinaX_VFSKit_ISceneAsset_Binding.cs.meta │ │ │ │ ├── TinaX_VFSKit_IVFS_Binding.cs │ │ │ │ ├── TinaX_VFSKit_IVFS_Binding.cs.meta │ │ │ │ ├── TinaX_XCore_Binding.cs │ │ │ │ ├── TinaX_XCore_Binding.cs.meta │ │ │ │ ├── UnityEngine_Debug_Binding.cs │ │ │ │ ├── UnityEngine_Debug_Binding.cs.meta │ │ │ │ ├── UnityEngine_Events_UnityEvent_Binding.cs │ │ │ │ ├── UnityEngine_Events_UnityEvent_Binding.cs.meta │ │ │ │ ├── UnityEngine_TextAsset_Binding.cs │ │ │ │ ├── UnityEngine_TextAsset_Binding.cs.meta │ │ │ │ ├── UnityEngine_UI_Button_Binding.cs │ │ │ │ ├── UnityEngine_UI_Button_Binding.cs.meta │ │ │ │ ├── UnityEngine_UI_Text_Binding.cs │ │ │ │ └── UnityEngine_UI_Text_Binding.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XILRuntime.asset │ │ │ │ ├── XILRuntime.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── HotfixProject │ │ ├── HotfixProject.csproj │ │ ├── HotfixProject.sln │ │ ├── Startup │ │ │ └── MeowStartup.cs │ │ ├── UI │ │ │ ├── CounterScreen.cs │ │ │ ├── FetchData.cs │ │ │ ├── MainScreen.cs │ │ │ └── MsgBox.cs │ │ └── UnityDlls │ │ │ ├── CatLib.Core.dll │ │ │ ├── CatLib.Core.pdb │ │ │ ├── UnityEngine.CoreModule.dll │ │ │ ├── UnityEngine.CoreModule.pdb │ │ │ ├── UnityEngine.UIModule.dll │ │ │ └── UnityEngine.UIModule.pdb │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset │ ├── README.md │ └── README_CN.md ├── E01_HelloWorld_Lua │ ├── .vscode │ │ └── settings.json │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Lua.meta │ │ │ ├── Lua │ │ │ │ ├── Startup.meta │ │ │ │ ├── Startup │ │ │ │ │ ├── startup.lua.txt │ │ │ │ │ └── startup.lua.txt.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── counter.lua.txt │ │ │ │ │ ├── counter.lua.txt.meta │ │ │ │ │ ├── fetchData.lua.txt │ │ │ │ │ ├── fetchData.lua.txt.meta │ │ │ │ │ ├── mainScreen.lua.txt │ │ │ │ │ ├── mainScreen.lua.txt.meta │ │ │ │ │ ├── msgBox.lua.txt │ │ │ │ │ └── msgBox.lua.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── UI.meta │ │ │ │ ├── startup.meta │ │ │ │ └── startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Images.meta │ │ │ │ └── Images │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ └── btn_a_emerald.png.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── LuaRuntime.asset │ │ │ │ ├── LuaRuntime.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── TinaX.meta │ │ ├── TinaX │ │ │ ├── Lua.meta │ │ │ └── LuaExtension.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset │ └── README.md ├── E02_CloudBuild │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── CloudBuildHandler.cs │ │ │ │ └── CloudBuildHandler.cs.meta │ │ │ ├── I18Ns.meta │ │ │ ├── I18Ns │ │ │ │ ├── dict_en.asset │ │ │ │ ├── dict_en.asset.meta │ │ │ │ ├── dict_hans.asset │ │ │ │ └── dict_hans.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── MsgBox.cs │ │ │ │ │ ├── MsgBox.cs.meta │ │ │ │ │ ├── mainScreen.cs │ │ │ │ │ └── mainScreen.cs.meta │ │ │ │ ├── startup.meta │ │ │ │ └── startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Images.meta │ │ │ │ └── Images │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ └── btn_a_emerald.png.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ └── manifest.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── XRSettings.asset │ ├── README.assets │ │ ├── 1589130153435.png │ │ ├── 1589130197382.png │ │ ├── 1589130348677.png │ │ ├── 1589130498415.png │ │ ├── 1589130542745.png │ │ └── 1589130640361.png │ └── README.md ├── E03_ReplaceVFS │ ├── Assets │ │ ├── CustomAssetsManager.meta │ │ ├── CustomAssetsManager │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── AssetsExtend.cs │ │ │ │ ├── AssetsExtend.cs.meta │ │ │ │ ├── AssetsProvider.cs │ │ │ │ ├── AssetsProvider.cs.meta │ │ │ │ ├── AssetsService.cs │ │ │ │ ├── AssetsService.cs.meta │ │ │ │ ├── IAssets.cs │ │ │ │ ├── IAssets.cs.meta │ │ │ │ ├── Nekonya.Demo.Assets.asmdef │ │ │ │ └── Nekonya.Demo.Assets.asmdef.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── HelloUI.prefab │ │ │ │ └── HelloUI.prefab.meta │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── App.Default.unity │ │ │ └── App.Default.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Startup.meta │ │ │ └── Startup │ │ │ │ ├── AppStartup.cs │ │ │ │ └── AppStartup.cs.meta │ │ ├── UIConfig.meta │ │ └── UIConfig │ │ │ ├── UIGroup.asset │ │ │ └── UIGroup.asset.meta │ ├── Packages │ │ └── manifest.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ └── xProfiles.json │ │ ├── URPProjectSettings.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── XRSettings.asset │ └── README_Hans.md ├── E04_UseXAsset │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Startup.meta │ │ │ │ ├── Startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── CounterScreen.cs │ │ │ │ │ ├── CounterScreen.cs.meta │ │ │ │ │ ├── FetchData.cs │ │ │ │ │ ├── FetchData.cs.meta │ │ │ │ │ ├── MainScreen.cs │ │ │ │ │ ├── MainScreen.cs.meta │ │ │ │ │ ├── MsgBox.cs │ │ │ │ │ └── MsgBox.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Images.meta │ │ │ │ └── Images │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ └── btn_a_emerald.png.meta │ │ ├── Manifest.asset │ │ ├── Manifest.asset.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── Rules.asset │ │ ├── Rules.asset.meta │ │ ├── XAsset.meta │ │ ├── XAsset │ │ │ ├── AppIcon.png │ │ │ ├── AppIcon.png.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── BuildRules.cs │ │ │ │ ├── BuildRules.cs.meta │ │ │ │ ├── BuildScript.cs │ │ │ │ ├── BuildScript.cs.meta │ │ │ │ ├── EditorRuntimeInitializeOnLoad.cs │ │ │ │ ├── EditorRuntimeInitializeOnLoad.cs.meta │ │ │ │ ├── MenuItems.cs │ │ │ │ ├── MenuItems.cs.meta │ │ │ │ ├── Settings.cs │ │ │ │ ├── Settings.cs.meta │ │ │ │ ├── XAsset.Editor.asmdef │ │ │ │ └── XAsset.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ │ ├── Assets.cs │ │ │ │ │ ├── Assets.cs.meta │ │ │ │ │ ├── Download.cs │ │ │ │ │ ├── Download.cs.meta │ │ │ │ │ ├── Downloader.cs │ │ │ │ │ ├── Downloader.cs.meta │ │ │ │ │ ├── Manifest.cs │ │ │ │ │ ├── Manifest.cs.meta │ │ │ │ │ ├── NetworkMonitor.cs │ │ │ │ │ ├── NetworkMonitor.cs.meta │ │ │ │ │ ├── Reference.cs │ │ │ │ │ ├── Reference.cs.meta │ │ │ │ │ ├── Requests.cs │ │ │ │ │ ├── Requests.cs.meta │ │ │ │ │ ├── Updater.cs │ │ │ │ │ ├── Updater.cs.meta │ │ │ │ │ ├── VDisk.cs │ │ │ │ │ ├── VDisk.cs.meta │ │ │ │ │ ├── Versions.cs │ │ │ │ │ └── Versions.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── BackgroundAdapter.cs │ │ │ │ │ ├── BackgroundAdapter.cs.meta │ │ │ │ │ ├── BuildinSceneLoader.cs │ │ │ │ │ ├── BuildinSceneLoader.cs.meta │ │ │ │ │ ├── MessageBox.cs │ │ │ │ │ ├── MessageBox.cs.meta │ │ │ │ │ ├── ScrollContent.cs │ │ │ │ │ ├── ScrollContent.cs.meta │ │ │ │ │ ├── UpdateScreen.cs │ │ │ │ │ └── UpdateScreen.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ ├── Utility │ │ │ │ │ ├── StringExtension.cs │ │ │ │ │ ├── StringExtension.cs.meta │ │ │ │ │ ├── Utility.cs │ │ │ │ │ └── Utility.cs.meta │ │ │ │ ├── XAsset.Runtime.asmdef │ │ │ │ └── XAsset.Runtime.asmdef.meta │ │ │ ├── Version │ │ │ └── Version.meta │ │ ├── XAssetService.meta │ │ ├── XAssetService │ │ │ ├── Extension.meta │ │ │ ├── Extension │ │ │ │ ├── AssetRequestAwaiter.cs │ │ │ │ ├── AssetRequestAwaiter.cs.meta │ │ │ │ ├── XAssetAsyncExtensions.cs │ │ │ │ └── XAssetAsyncExtensions.cs.meta │ │ │ ├── IXAssetService.cs │ │ │ ├── IXAssetService.cs.meta │ │ │ ├── XAssetProvider.cs │ │ │ ├── XAssetProvider.cs.meta │ │ │ ├── XAssetService.cs │ │ │ └── XAssetService.cs.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ └── manifest.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── XRSettings.asset │ └── README.md ├── E05_HelloWorld_URP │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Components.meta │ │ │ │ ├── Components │ │ │ │ │ ├── MainCameraComponent.cs │ │ │ │ │ └── MainCameraComponent.cs.meta │ │ │ │ ├── Startup.meta │ │ │ │ ├── Startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── CounterScreen.cs │ │ │ │ │ ├── CounterScreen.cs.meta │ │ │ │ │ ├── FetchData.cs │ │ │ │ │ ├── FetchData.cs.meta │ │ │ │ │ ├── MainScreen.cs │ │ │ │ │ ├── MainScreen.cs.meta │ │ │ │ │ ├── MsgBox.cs │ │ │ │ │ └── MsgBox.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Atlas.meta │ │ │ │ └── Atlas │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ ├── btn_a_emerald.png.meta │ │ │ │ ├── common.spriteatlas │ │ │ │ └── common.spriteatlas.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── URP.meta │ │ ├── URP │ │ │ ├── New 2D Renderer Data.asset │ │ │ ├── New 2D Renderer Data.asset.meta │ │ │ ├── UniversalRenderPipelineAsset.asset │ │ │ └── UniversalRenderPipelineAsset.asset.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ └── xProfiles.json │ │ ├── URPProjectSettings.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset │ ├── README.md │ └── UserSettings │ │ └── EditorUserSettings.asset └── E06_MVVM │ ├── MVVM_CSharp │ ├── Assets │ │ ├── App.meta │ │ ├── App │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── lang.meta │ │ │ │ ├── lang │ │ │ │ │ ├── en_us.meta │ │ │ │ │ ├── en_us │ │ │ │ │ │ ├── en_us_common.asset │ │ │ │ │ │ └── en_us_common.asset.meta │ │ │ │ │ ├── hans.meta │ │ │ │ │ └── hans │ │ │ │ │ │ ├── hans_common.asset │ │ │ │ │ │ └── hans_common.asset.meta │ │ │ │ ├── text.meta │ │ │ │ └── text │ │ │ │ │ ├── hello.txt │ │ │ │ │ └── hello.txt.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── App.Main.unity │ │ │ │ ├── App.Main.unity.meta │ │ │ │ ├── App.Startup.unity │ │ │ │ └── App.Startup.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Startup.meta │ │ │ │ ├── Startup │ │ │ │ │ ├── AppBootstrap.cs │ │ │ │ │ ├── AppBootstrap.cs.meta │ │ │ │ │ ├── AppStartup.cs │ │ │ │ │ └── AppStartup.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── CounterScreen.cs │ │ │ │ │ ├── CounterScreen.cs.meta │ │ │ │ │ ├── FetchData.cs │ │ │ │ │ ├── FetchData.cs.meta │ │ │ │ │ ├── MainScreen.cs │ │ │ │ │ ├── MainScreen.cs.meta │ │ │ │ │ ├── MsgBox.cs │ │ │ │ │ └── MsgBox.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── FetchData.meta │ │ │ │ ├── FetchData │ │ │ │ ├── FetchData.prefab │ │ │ │ └── FetchData.prefab.meta │ │ │ │ ├── UICameraConfig.asset │ │ │ │ ├── UICameraConfig.asset.meta │ │ │ │ ├── UIGroup.asset │ │ │ │ ├── UIGroup.asset.meta │ │ │ │ ├── counter.meta │ │ │ │ ├── counter │ │ │ │ ├── Counter.prefab │ │ │ │ └── Counter.prefab.meta │ │ │ │ ├── mainScreen.meta │ │ │ │ ├── mainScreen │ │ │ │ ├── mainScreen.prefab │ │ │ │ └── mainScreen.prefab.meta │ │ │ │ ├── msgBox.meta │ │ │ │ └── msgBox │ │ │ │ ├── msgBox.prefab │ │ │ │ └── msgBox.prefab.meta │ │ ├── Arts.meta │ │ ├── Arts │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Atlas.meta │ │ │ │ └── Atlas │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png │ │ │ │ ├── box_b.png.meta │ │ │ │ ├── box_c.png │ │ │ │ ├── box_c.png.meta │ │ │ │ ├── btn_a_emerald.png │ │ │ │ ├── btn_a_emerald.png.meta │ │ │ │ ├── common.spriteatlas │ │ │ │ └── common.spriteatlas.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── XConfig.meta │ │ │ └── XConfig │ │ │ │ ├── TinaX.meta │ │ │ │ └── TinaX │ │ │ │ ├── I18NConfig.asset │ │ │ │ ├── I18NConfig.asset.meta │ │ │ │ ├── UIKitConfig.asset │ │ │ │ ├── UIKitConfig.asset.meta │ │ │ │ ├── VFSConfig.asset │ │ │ │ ├── VFSConfig.asset.meta │ │ │ │ ├── XProfile.asset │ │ │ │ └── XProfile.asset.meta │ │ ├── StreamingAssets.meta │ │ ├── StreamingAssets │ │ │ ├── TinaX_VFS.meta │ │ │ └── TinaX_VFS │ │ │ │ ├── windows_amd64.meta │ │ │ │ └── windows_amd64 │ │ │ │ ├── vfs_data.meta │ │ │ │ ├── vfs_data │ │ │ │ ├── Hashs.meta │ │ │ │ ├── Hashs │ │ │ │ │ ├── 9c7c560b34de477b.json │ │ │ │ │ └── 9c7c560b34de477b.json.meta │ │ │ │ ├── Manifests.meta │ │ │ │ ├── Manifests │ │ │ │ │ ├── 9c7c560b34de477b.json │ │ │ │ │ └── 9c7c560b34de477b.json.meta │ │ │ │ ├── VFSConfig.json │ │ │ │ ├── VFSConfig.json.meta │ │ │ │ ├── build_info.json │ │ │ │ └── build_info.json.meta │ │ │ │ ├── vfs_root.meta │ │ │ │ └── vfs_root │ │ │ │ ├── assets.meta │ │ │ │ └── assets │ │ │ │ ├── app.meta │ │ │ │ ├── app │ │ │ │ ├── data.meta │ │ │ │ ├── data │ │ │ │ │ ├── text.meta │ │ │ │ │ └── text │ │ │ │ │ │ ├── hello.txt.xab │ │ │ │ │ │ └── hello.txt.xab.meta │ │ │ │ ├── scenes.meta │ │ │ │ ├── scenes │ │ │ │ │ ├── app.main.unity.xab │ │ │ │ │ ├── app.main.unity.xab.meta │ │ │ │ │ ├── app.startup.unity.xab │ │ │ │ │ └── app.startup.unity.xab.meta │ │ │ │ ├── ui.meta │ │ │ │ └── ui │ │ │ │ │ ├── counter.meta │ │ │ │ │ ├── counter │ │ │ │ │ ├── counter.prefab.xab │ │ │ │ │ └── counter.prefab.xab.meta │ │ │ │ │ ├── fetchdata.meta │ │ │ │ │ ├── fetchdata │ │ │ │ │ ├── fetchdata.prefab.xab │ │ │ │ │ └── fetchdata.prefab.xab.meta │ │ │ │ │ ├── mainscreen.meta │ │ │ │ │ ├── mainscreen │ │ │ │ │ ├── mainscreen.prefab.xab │ │ │ │ │ └── mainscreen.prefab.xab.meta │ │ │ │ │ ├── msgbox.meta │ │ │ │ │ ├── msgbox │ │ │ │ │ ├── msgbox.prefab.xab │ │ │ │ │ └── msgbox.prefab.xab.meta │ │ │ │ │ ├── uicameraconfig.asset.xab │ │ │ │ │ ├── uicameraconfig.asset.xab.meta │ │ │ │ │ ├── uigroup.asset.xab │ │ │ │ │ └── uigroup.asset.xab.meta │ │ │ │ ├── arts.meta │ │ │ │ └── arts │ │ │ │ ├── ui.meta │ │ │ │ └── ui │ │ │ │ ├── atlas.meta │ │ │ │ └── atlas │ │ │ │ ├── common.meta │ │ │ │ └── common │ │ │ │ ├── box_b.png.xab │ │ │ │ ├── box_b.png.xab.meta │ │ │ │ ├── box_c.png.xab │ │ │ │ ├── box_c.png.xab.meta │ │ │ │ ├── btn_a_emerald.png.xab │ │ │ │ ├── btn_a_emerald.png.xab.meta │ │ │ │ ├── common.spriteatlas.xab │ │ │ │ └── common.spriteatlas.xab.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TinaX │ │ │ ├── VFSProfiles.json │ │ │ ├── launchSettings.json │ │ │ └── xProfiles.json │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset │ └── README.md │ └── README.md ├── LICENSE ├── README.md ├── README_CN.md └── Tests ├── UseNpm ├── Assets │ ├── Resources.meta │ ├── Resources │ │ ├── XConfig.meta │ │ └── XConfig │ │ │ ├── TinaX.meta │ │ │ └── TinaX │ │ │ ├── VFSConfig.asset │ │ │ ├── VFSConfig.asset.meta │ │ │ ├── XProfile.asset │ │ │ └── XProfile.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── App.Startup.unity │ │ └── App.Startup.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Startup.cs │ │ └── Startup.cs.meta ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TinaX │ ├── VFSProfiles.json │ └── xProfiles.json │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset └── UseOpenUPM ├── Assets ├── Resources.meta ├── Resources │ ├── XConfig.meta │ └── XConfig │ │ ├── TinaX.meta │ │ └── TinaX │ │ ├── XProfile.asset │ │ └── XProfile.asset.meta ├── Scenes.meta └── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Packages └── manifest.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TinaX └── xProfiles.json ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset /.github/ISSUE_TEMPLATE/----.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 功能建议 3 | about: 好像需要一个这样的功能或改进 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 提交BUG 3 | about: 嘿~ 我发现了一个Bug! (>^ω^<) 4 | title: "[BUG]" 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | ### Bug描述 11 | 12 | 13 | 14 | ### 复现方式 15 | 16 | 17 | 18 | ### 其他 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us improve 4 | title: "[BUG]" 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | ### Bug描述 11 | 12 | 13 | 14 | ### 复现方式 15 | 16 | 17 | 18 | ### 其他 19 | -------------------------------------------------------------------------------- /Doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Doc/logo.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/UI/CounterScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfb6fc214329e1e4ca67fc3c7b5ce025 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/UI/FetchData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7345d1d9f0b2fe746a130277add15675 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/UI/MainScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1faf852f2c8899c4481cb3b1b48ecb6b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/Scripts/UI/MsgBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae80370ec1d2ee045b339ad284a3beeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a09b53dcb4441a4f9fc2b9b37f32475 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/box_b.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/box_c.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Arts/UI/Atlas/common/common.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7844471012d94ae4196b23570855a3ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.17f1 2 | m_EditorVersionWithRevision: 2020.3.17f1 (a4537701e4ab) 3 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/TinaX/launchSettings.json: -------------------------------------------------------------------------------- 1 | {"DebugCommandLineArgs":"--name=\"Alice\""} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_CSharp/README.md: -------------------------------------------------------------------------------- 1 | # TinaX Example - Hello World (C# Only) 2 | 3 | - Unity : 2020.3.0f1 4 | 5 | 6 | This demo is completely made with C# -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e94ee724e2dd8e4db10994d796a6b7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.dll.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.dll.bytes -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.dll.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa4d762d7320e30448eff25fb3e096f8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.pdb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.pdb.bytes -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Assemblies/Nekonya.Main.pdb.bytes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d02b0263d38f3384581904d321d364b0 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc126ec659ac0364f8b36387bf0db09c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb765de655048624ea647a1ab943c95c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/box_b.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/box_c.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/Assets/Arts/UI/Images/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/ILRuntimeGenCode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb86e560aec26f44bcb120e88cccffa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/ILRuntimeGenCode/ILRuntimeGenCode.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3458c7eb0d36054180a259f41a47b08 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/ILRuntimeGenCode/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7272e35f8226054c89f7653018dd148 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX/XILRuntime.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2696098266742d544a975e4c17279598 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/CatLib.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/CatLib.Core.dll -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/CatLib.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/CatLib.Core.pdb -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.CoreModule.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.CoreModule.pdb -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.UIModule.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_ILRuntime/HotfixProject/UnityDlls/UnityEngine.UIModule.pdb -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.0f1 2 | m_EditorVersionWithRevision: 2020.3.0f1 (c7b5465681fb) 3 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_ILRuntime/README.md: -------------------------------------------------------------------------------- 1 | # TinaX Example - Hello World (C# via ILRuntime) 2 | 3 | - Unity : 2020.3.0f1 4 | 5 | 6 | This demo is completely made with C# and ILRuntime -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "*.lua.txt": "lua", 4 | }, 5 | "editor.snippetSuggestions": "bottom" 6 | } -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ba8cea22f963874094780351f714b07 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1655da99f5f75d40afb1c4a8b553ce8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/Startup/startup.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c82a1f1ac55547a4996a74254a7768a8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 969b69080df609f4a8be89f1e9e11838 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI/counter.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a7ff32d2c77f2642b8d3c5d74a4651a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI/fetchData.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbd366c263db5c643a2c3f5562274cd7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI/mainScreen.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e22c136a8ccf948b80a8c706d50cfa 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI/msgBox.lua.txt: -------------------------------------------------------------------------------- 1 | -- luabehaviour MsgBox 2 | 3 | function OnOpenUIMessage(content, title) 4 | if(content ~= nil) then 5 | txt_content.text = content; 6 | end 7 | if(title ~= nil) then 8 | txt_title.text = title 9 | end 10 | end -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Lua/UI/msgBox.lua.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf3cff88fc1f7b646af14856d9861ccd 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scripts/startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/Scripts/startup/AppStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2024e4cd48d320047bb8be136beee438 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb765de655048624ea647a1ab943c95c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/box_b.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/box_c.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E01_HelloWorld_Lua/Assets/Arts/UI/Images/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX/LuaRuntime.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3d2fc02de198794fafa2c9a4b4837be 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d510449a250d4ed4c99fae290ca67dc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/TinaX/Lua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d8f935b6c9ebcd498805442a959cfc7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/TinaX/LuaExtension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 951122cee96038341a43a7d66529e968 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.5f1 2 | m_EditorVersionWithRevision: 2020.3.5f1 (8095aa901b9b) 3 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Examples/E01_HelloWorld_Lua/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af98933f3e7d3b64c9b30d210c9fb8c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Editor/CloudBuildHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad9a8f76841875745a88d4a1b8ec643a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/I18Ns.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce50a5cf9c1897544a75cafd7601dea7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/I18Ns/dict_en.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca32ab548ead67c45be59dfa6ac5c99e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/I18Ns/dict_hans.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d34713b6503ca75429b59d55bde48c1d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/UI/MsgBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae80370ec1d2ee045b339ad284a3beeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/UI/mainScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1faf852f2c8899c4481cb3b1b48ecb6b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/startup/AppBootstrap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 829a0bab0f78adc47a6557a0f2800eab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/Scripts/startup/AppStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2024e4cd48d320047bb8be136beee438 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb765de655048624ea647a1ab943c95c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI/Images/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/box_b.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/box_c.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/Assets/Arts/UI/Images/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebfa842d070cb394b90b1266483a291b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.12f1 2 | m_EditorVersionWithRevision: 2019.3.12f1 (84b23722532d) 3 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130153435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130153435.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130197382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130197382.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130348677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130348677.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130498415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130498415.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130542745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130542745.png -------------------------------------------------------------------------------- /Examples/E02_CloudBuild/README.assets/1589130640361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E02_CloudBuild/README.assets/1589130640361.png -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/CustomAssetsManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 404c6dda32b72354491df229c7407093 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/CustomAssetsManager/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec1dfb48dfcea554395b149a48c421bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/CustomAssetsManager/Runtime/IAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08389f7fea5633846b7f70522e64e0df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/CustomAssetsManager/Runtime/Nekonya.Demo.Assets.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8d8c4edbc8bbfd4fb740712c78555e4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aefd5177f11b9d941a16f9c187679eac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90dbc21ca2e0a20458600b897719a3b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/UI/HelloUI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3acfd99a1de953843aebecef49228cc1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed72ee972de375745b693240d4efeb1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2110bbf924249ac4c81421105857919e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea965fe95ddafd3458189e8166b587a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9332e564582ec3409e70d44a6c3cde1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4f1501f67655d84c98fbee5180f2d68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Scenes/App.Default.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 452f8138e4dbd5143a4a265e850a2e56 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a3527b6b33a924e8ec66aa805ea717 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac83d5e59d79e1b4d8572d67b84f2952 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/Scripts/Startup/AppStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a5a41c58d46cf14a82bdc7f212e7b0d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/UIConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 002d92944e2cbab498405279f2e73d0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/Assets/UIConfig/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a584e8e4b38df548b27738cc3d86200 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.0f1 2 | m_EditorVersionWithRevision: 2019.4.0f1 (0af376155913) 3 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E03_ReplaceVFS/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/Startup/AppStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2024e4cd48d320047bb8be136beee438 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/UI/CounterScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfb6fc214329e1e4ca67fc3c7b5ce025 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/UI/FetchData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7345d1d9f0b2fe746a130277add15675 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/UI/MainScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1faf852f2c8899c4481cb3b1b48ecb6b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/Scripts/UI/MsgBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae80370ec1d2ee045b339ad284a3beeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb765de655048624ea647a1ab943c95c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI/Images/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/box_b.png -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/box_c.png -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E04_UseXAsset/Assets/Arts/UI/Images/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Manifest.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14310aee6be23dd4d8b5d51632ca1013 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/Rules.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb6bde3376dff8844a26606a1e4a4db2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39c9bfd9b50843e4ca634b0353a2fd5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E04_UseXAsset/Assets/XAsset/AppIcon.png -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55f745cc4fbe848bdb1fdc29ea696d9b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/BuildRules.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03142c330ced64e0ab46cddcd0484ab7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/BuildScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c57031407b9c47acb9d5a1edfedfe30 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/MenuItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f039debb959c2451d8ff818bc5b92140 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc7122dd6d8f94d628f5183bb0ce97d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/XAsset.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "XAsset.Editor", 3 | "references": [ 4 | "XAsset.Runtime" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ], 9 | "excludePlatforms": [] 10 | } -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Editor/XAsset.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f63fd1e37916c6d418427c0623b4c3f9 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bfbb7e0372446c43a81db3b0e6d1ca4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8ffb91c77384d7bacaf98da79b3388a 3 | timeCreated: 1593260095 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Assets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75a71286411cb48c994a4c516d353f3d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Download.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9b7b58a0815543b69d0f35aa5dd8b37 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Downloader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a7b861ace0d3d4baf5ebe05cdf78f1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Manifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7882bd278763c45f49cef7deeae496e5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/NetworkMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b084f597fd724153b488f9c4a53c9541 3 | timeCreated: 1594824617 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Reference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ce8696e215cb459083a0aaeb49fc07e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Requests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b0f78b18644744d2a341adacb1459cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Updater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16b97ae374d27c0479dce9413bde907d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/VDisk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b77518c5364891b1ab98721c778bb7 3 | timeCreated: 1593479949 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Core/Versions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5c371fe43282409487acad09e851407 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad927d189a74eba8c7d79412644da72 3 | timeCreated: 1593260066 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/UI/BuildinSceneLoader.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.SceneManagement; 3 | 4 | public class BuildinSceneLoader : MonoBehaviour { 5 | 6 | public void Load(int sceneIndex) 7 | { 8 | SceneManager.LoadSceneAsync(sceneIndex); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/UI/MessageBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56a233d0e86b48788bcb26f883a6a53f 3 | timeCreated: 1593063055 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/UI/ScrollContent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acc55d567fbd7bd4a82d1188aaf416d8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/UI/UpdateScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362f8f015b082d44d88a66d10ad9c029 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e26051132dae4589ace9a7073676faf9 3 | timeCreated: 1593260140 -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/Utility/Utility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8858db9b4f755374f85a242582e0177a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/XAsset.Runtime.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "XAsset.Runtime" 3 | } 4 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Runtime/XAsset.Runtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43ce166fa1518c44797c687b1ff42535 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Version: -------------------------------------------------------------------------------- 1 | v4.0 2 | [新特性] 3 | - VFS 让 IO 性能和安全性得到显著提升 4 | - 大小包版本更新,指纹校验,异常处理更完善也更精炼 5 | - 更智能的寻址模式与更可控的GC -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAsset/Version.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edf5d13e12f72d44297403fe33213b8b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1412d1a06e8a4f24495332974b751ab2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService/Extension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28832b22370109745b988a05d20b6a75 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService/IXAssetService.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using System.Threading.Tasks; 4 | using TinaX; 5 | using UnityEngine; 6 | 7 | 8 | namespace XAsset 9 | { 10 | public interface IXAssetService 11 | { 12 | Task Start(); 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService/IXAssetService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e01b409d46678ed4a900575e564f24d9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService/XAssetProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3eec2696b2fb454d8f6fe905036b5d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/XAssetService/XAssetService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24951520df3e9714d9c303267260d7ba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.0f1 2 | m_EditorVersionWithRevision: 2019.4.0f1 (0af376155913) 3 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E04_UseXAsset/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6780aee7bb2af5340865bd6a194bbdf8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/UI/FetchData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7345d1d9f0b2fe746a130277add15675 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/UI/MainScreen.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1faf852f2c8899c4481cb3b1b48ecb6b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/Scripts/UI/MsgBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae80370ec1d2ee045b339ad284a3beeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a09b53dcb4441a4f9fc2b9b37f32475 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/box_b.png -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/box_c.png -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Arts/UI/Atlas/common/common.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7844471012d94ae4196b23570855a3ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/URP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dfc9cb94340a014dbe18e35570adc6f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/URP/New 2D Renderer Data.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447ae1d5f121c7f429ea36506ee05d00 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/URP/UniversalRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cedbda9ac00d634092d13937de1231c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.1.0f1 2 | m_EditorVersionWithRevision: 2020.1.0f1 (2ab9c4179772) 3 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E05_HelloWorld_URP/README.md: -------------------------------------------------------------------------------- 1 | # TinaX Example - Hello World (C# Only | URP) 2 | 3 | - Unity : 2020.1f1 4 | 5 | 6 | This demo is completely made with C# -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e23685ff42164644b5b31591a8171e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ed2c43c761d7cb4db86e010a87cabd9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/lang.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2984eefe7381ed844991dd64704c4d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/lang/en_us.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715839f4aa1d0bf41b2b1b22d075b0bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/lang/en_us/en_us_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d659221df64dae2409117eb0f7cf5f4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/lang/hans.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dd2e9d933a46404d91166226d0f9fdc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/lang/hans/hans_common.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2bf09924164f074faab71711fb67a86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0a64875dcc0f174d859e219f31f4439 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/text/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is some data from vfs. 2 | 3 | ~~~~~~ 4 | ~~~ 5 | ~~~~~~~~~ -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Data/text/hello.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1046275a75c480e419652df7c6276880 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/data/text/hello.txt 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfcbb0d9291dfe34f95be5960988ef5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scenes/App.Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7377758b82a274f9d063a6041610ca 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.main.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cec8d68349efa4f99c5e8b737fab0a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/scenes/app.startup.unity 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f7e3a90dcf59b4cb4e78196cda739c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scripts/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a3931490f4f2b5449398ee3a611d219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e70245dd1974f2145ac020800bd6e403 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scripts/UI/FetchData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7345d1d9f0b2fe746a130277add15675 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/Scripts/UI/MsgBox.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae80370ec1d2ee045b339ad284a3beeb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e798abcb15af1c4468f8a7a1a1d8417e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/FetchData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04ead9d489dbc6f49837f9ebd66e6731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/FetchData/FetchData.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 713ea32d8d3afd34ca8baab624f2a1d8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/fetchdata/fetchdata.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/UICameraConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ecec22ba4c03f43a240c5da1f8d79b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uicameraconfig.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/UIGroup.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7052a2ccf48ce5b4ebc1b747df719fe3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: assets/app/ui/uigroup.asset 8 | assetBundleVariant: xab 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5421ed7b54448147be961f4bb0f9e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/counter/Counter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3df5a221a04dc90489126adbcc3c6abb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/counter/counter.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/mainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb841b04195bfb140b4e759ebceb75d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/mainScreen/mainScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 181060bb66aaeef4a9a03e8d082eb5db 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/mainscreen/mainscreen.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/msgBox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1dca940c3c2f1c48a954cb8d3eb656d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/App/UI/msgBox/msgBox.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0d2d550a7483f47a5e60e3b0f689c8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: assets/app/ui/msgbox/msgbox.prefab 7 | assetBundleVariant: xab 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f85f2290e5ba9428a9f8a37114adb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b08033b4f7bbcc642ab6f972717bb174 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a09b53dcb4441a4f9fc2b9b37f32475 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab886668ccc2bc47bce66c95b58bd97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/box_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/box_b.png -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/box_c.png -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/btn_a_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/btn_a_emerald.png -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Arts/UI/Atlas/common/common.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7844471012d94ae4196b23570855a3ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418e0b494f38546469dfe40f7e388df0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e724dd37297a6b4aa39a514f8e02f2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f40b6e9c88f3d6f4699dc0954d834e3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig/TinaX/I18NConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a7870ca98947b4595897fb776a135f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig/TinaX/UIKitConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a279fca26478ae468c444097bfc5d6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1588fc0d47ca9274390258b48fea2660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbc24977b66b634aa20bb79f936d0d8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5ebbd5fa4bb6054396aa171c1e1f7c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1afd2e1a5a4559f4d8b00ae268a8cdc2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbc00418ee0a8a64d83b51799858689e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f759330089303345a25528367925ec0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/Hashs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2f7c4e22e6915a42a4fcee0eff20dc3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/Hashs/9c7c560b34de477b.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa1c73635607faa479131356557d821c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/Manifests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecef6f12fec86d94ca4d4e88a5253777 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/Manifests/9c7c560b34de477b.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f15f89536f6644b4a9d7eab35f3496f1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/VFSConfig.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77a71199e72d4de469c7def2d0e20047 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/build_info.json: -------------------------------------------------------------------------------- 1 | {"BuildID":"8ce69555-00ae-44a7-9175-3eb94367e252"} -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_data/build_info.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4013443d75119c49a9ad31fda049cd1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 782905ececfe6fd4e927655b7ea7fb8c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36ab84be825cac645b17c6267bc37102 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a56572778ed76704aaa1931740118a2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d538fdf0126ab474b847370fc123a31a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/data/text.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a39322acbd7da9e42bc06561cc211557 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/data/text/hello.txt.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/data/text/hello.txt.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/data/text/hello.txt.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d98a4795f2be844b1bd1514d000c42 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b768e4def721f6a4f80f7ab2f10d9451 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.main.unity.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.main.unity.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.main.unity.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ee4cfdf8bb5e14bb61018a510d5f8e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.startup.unity.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.startup.unity.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/scenes/app.startup.unity.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e282841d24e1714cba4607cc639e1b5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfb778cd78f91f841857d0f3c6ae17d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cb1eaa59c08ebc429bd6037ce8b4ddc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/counter/counter.prefab.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/counter/counter.prefab.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/counter/counter.prefab.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c0e32b763b538743b3b7a20baecaf34 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/fetchdata.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36e278b67b8b8c6438e739be6a20aaf8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/fetchdata/fetchdata.prefab.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/fetchdata/fetchdata.prefab.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/fetchdata/fetchdata.prefab.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5898885be31e1c64b9c5694c8d82d99e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/mainscreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9d4a5415f957240a00617ecc51233e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/mainscreen/mainscreen.prefab.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/mainscreen/mainscreen.prefab.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/mainscreen/mainscreen.prefab.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bffd7687db2bae4e9d4cf5ab6cf7a0f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/msgbox.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9caebec5bafb544dae483ba066d2343 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/msgbox/msgbox.prefab.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/msgbox/msgbox.prefab.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/msgbox/msgbox.prefab.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08a2cd42a4de2064884fbc21565e3d84 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uicameraconfig.asset.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uicameraconfig.asset.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uicameraconfig.asset.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87dfafc3653fbd74d92ace83d559a31d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uigroup.asset.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uigroup.asset.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/app/ui/uigroup.asset.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6622b3b0d352c274792a8ebf07e3dd7e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0be4f2d4e26094993ff502823dc960 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbe95b5147cb24042ae057e538725721 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d28fb76139a1257449e78192d3af5d9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec2ef7616af1db40818476c26e93b52 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_b.png.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_b.png.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_b.png.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36cd40732ccdda140afd0088d327c1f9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_c.png.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_c.png.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/box_c.png.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4980d1e525d26ad47ba2302a3bf67712 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/btn_a_emerald.png.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/btn_a_emerald.png.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/btn_a_emerald.png.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd14601683ee27849a5bdb0e1bbdfa51 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/common.spriteatlas.xab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomunsam/TinaX/7fd6056d737c03315d8724733dd797945687cd99/Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/common.spriteatlas.xab -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/StreamingAssets/TinaX_VFS/windows_amd64/vfs_root/assets/arts/ui/atlas/common/common.spriteatlas.xab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca34d26c283eb64097bcb4ea944e00f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/Assets/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e673f40e98f54884abc88886dd0814ad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.1.24f1 2 | m_EditorVersionWithRevision: 2021.1.24f1 (6667702a1e7c) 3 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/TinaX/launchSettings.json: -------------------------------------------------------------------------------- 1 | {"DebugCommandLineArgs":"--name=\"Alice\""} -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Examples/E06_MVVM/MVVM_CSharp/README.md: -------------------------------------------------------------------------------- 1 | # TinaX Example - MVVM (C# Only) 2 | 3 | - Unity : 2020.2.1f1 4 | 5 | 6 | This demo is completely made with C# -------------------------------------------------------------------------------- /Examples/E06_MVVM/README.md: -------------------------------------------------------------------------------- 1 | **MVVM package is in preview state** -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc071ba852a629548ba9f6ddde7ce038 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da95b7d53d6c73443a31220f4162a217 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39eb1367f6b50a248b3d1ea12e172fab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Resources/XConfig/TinaX/VFSConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe12ad5193b947408f909470a0df9d6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dc4e754a5f5ec94ca64fe471f8f9187 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3750c9f0efea1bb4ea2dfedd3f42b300 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Scenes/App.Startup.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e2daf2cd493a3c49b52701ad2bbb801 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/Assets/Scripts/Startup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8338a03069d57214588931ff7552b729 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/App.Startup.unity 10 | guid: 2cda990e2423bbf4892e6590ba056729 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.14f1 2 | m_EditorVersionWithRevision: 2019.3.14f1 (2b330bf6d2d8) 3 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/TinaX/VFSProfiles.json: -------------------------------------------------------------------------------- 1 | {"Profiles":[]} -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Tests/UseNpm/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f6a5dbeafb3fa34e8715144f0453a68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Resources/XConfig.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b43d3a91f3cf5e40914cbd32cf54af6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Resources/XConfig/TinaX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f8ee078b168b9d45b59c0b67c07e6fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Resources/XConfig/TinaX/XProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c483717277c410d458c14b94f343aa81 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba4839eca219aa49bff69fcd3127ed7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.14f1 2 | m_EditorVersionWithRevision: 2019.3.14f1 (2b330bf6d2d8) 3 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/TinaX/xProfiles.json: -------------------------------------------------------------------------------- 1 | {"Items":[{"ProfileName":"Default","DevelopMode":false}],"CurrentProfileName":"Default"} -------------------------------------------------------------------------------- /Tests/UseOpenUPM/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } --------------------------------------------------------------------------------