├── Bugly └── Assets │ ├── Plugins │ └── BuglyPlugins │ │ ├── Android.meta │ │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── arm64-v8a.meta │ │ │ ├── arm64-v8a │ │ │ ├── libBugly.so │ │ │ └── libBugly.so.meta │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── libBugly.so │ │ │ └── libBugly.so.meta │ │ │ ├── bugly_crash_release.jar │ │ │ ├── bugly_crash_release.jar.meta │ │ │ ├── buglyagent.jar │ │ │ ├── buglyagent.jar.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── libBugly.so │ │ │ └── libBugly.so.meta │ │ ├── BuglyAgent.cs │ │ ├── BuglyAgent.cs.meta │ │ ├── BuglyCallback.cs │ │ ├── BuglyCallback.cs.meta │ │ ├── BuglyInit.cs │ │ ├── BuglyInit.cs.meta │ │ ├── iOS.meta │ │ └── iOS │ │ ├── Bugly.framework.meta │ │ └── Bugly.framework │ │ ├── Bugly │ │ ├── Bugly.meta │ │ ├── Headers.meta │ │ ├── Headers │ │ ├── Bugly.h │ │ ├── Bugly.h.meta │ │ ├── BuglyConfig.h │ │ ├── BuglyConfig.h.meta │ │ ├── BuglyLog.h │ │ └── BuglyLog.h.meta │ │ ├── Modules.meta │ │ └── Modules │ │ ├── module.modulemap │ │ └── module.modulemap.meta │ └── Scripts │ ├── Bugly.cs │ ├── Bugly.cs.meta │ ├── BuglyConfig.cs │ ├── BuglyConfig.cs.meta │ ├── BuglyManager.cs │ ├── BuglyManager.cs.meta │ ├── Resources.meta │ └── Resources │ ├── BuglyConfig.asset │ └── BuglyConfig.asset.meta ├── EntityModule(GameFramework) ├── AttachEntityInfo.cs ├── AttachEntityInfo.cs.meta ├── Component.meta ├── Component │ ├── EntityComponent.cs │ ├── EntityComponent.cs.meta │ ├── EntityDebugBehaviour.cs │ └── EntityDebugBehaviour.cs.meta ├── DefaultEntityGroupHelper.cs ├── DefaultEntityGroupHelper.cs.meta ├── DefaultEntityHelper.cs ├── DefaultEntityHelper.cs.meta ├── Entity.cs ├── Entity.cs.meta ├── EntityGroupHelperBase.cs ├── EntityGroupHelperBase.cs.meta ├── EntityHelperBase.cs ├── EntityHelperBase.cs.meta ├── EntityLogic.cs ├── EntityLogic.cs.meta ├── EntityManager.EntityGroup.cs ├── EntityManager.EntityGroup.cs.meta ├── EntityManager.EntityInfo.cs ├── EntityManager.EntityInfo.cs.meta ├── EntityManager.EntityInstanceObject.cs ├── EntityManager.EntityInstanceObject.cs.meta ├── EntityManager.EntityStatus.cs ├── EntityManager.EntityStatus.cs.meta ├── EntityManager.ShowEntityInfo.cs ├── EntityManager.ShowEntityInfo.cs.meta ├── EntityManager.cs ├── EntityManager.cs.meta ├── EntityModule.EntityGroup.cs ├── EntityModule.EntityGroup.cs.meta ├── EntityModule.cs ├── EntityModule.cs.meta ├── Event.meta ├── Event │ ├── ActorEventHelper.cs │ └── ActorEventHelper.cs.meta ├── IEntity.cs ├── IEntity.cs.meta ├── IEntityGroup.cs ├── IEntityGroup.cs.meta ├── IEntityGroupHelper.cs ├── IEntityGroupHelper.cs.meta ├── IEntityHelper.cs ├── IEntityHelper.cs.meta ├── IEntityManager.cs ├── IEntityManager.cs.meta ├── ShowEntityInfo.cs └── ShowEntityInfo.cs.meta ├── HFS(FileServer) └── hfs.exe ├── HLOD ├── .github │ └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .scripts │ ├── modules │ │ └── ProjectTools │ │ │ ├── ProjectTools.psm1 │ │ │ ├── function-Check-LastExitCode.ps1 │ │ │ └── function-Get-Configuration.ps1 │ ├── profile.ps1 │ └── run-unity-tests.ps1 ├── .yamato │ ├── package-pack.yml │ ├── package-test.yml │ ├── project-pack.yml │ ├── project-test.yml │ ├── project-updated-dependencies-test.yml │ └── project.metafile ├── Documentation~ │ └── Images │ │ ├── compare.gif │ │ ├── hlod_addcomponent.jpg │ │ ├── hlod_afterbake.jpg │ │ ├── hlod_batch.jpg │ │ ├── overview_1.jpg │ │ ├── overview_2.jpg │ │ └── overview_3.jpg ├── README.md └── com.unity.hlod │ ├── .gitignore │ ├── .gitmodules │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ ├── Batcher.md │ ├── GettingStarted.md │ ├── HLOD.md │ ├── Simplifier.md │ ├── Streaming.md │ ├── TerrainHLOD.md │ ├── UsingHLOD.md │ ├── index.md │ └── media │ │ ├── compare.gif │ │ ├── image1.png │ │ ├── image10.png │ │ ├── image11.png │ │ ├── image12.png │ │ ├── image13.png │ │ ├── image14.png │ │ ├── image15.png │ │ ├── image16.png │ │ ├── image17.png │ │ ├── image18.png │ │ ├── image19.png │ │ ├── image2.png │ │ ├── image20.png │ │ ├── image21.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── image8.png │ │ ├── image9.png │ │ ├── overview_1.png │ │ ├── overview_2.png │ │ └── overview_3.png │ ├── Editor.meta │ ├── Editor │ ├── Batcher.meta │ ├── Batcher │ │ ├── BatcherTypes.cs │ │ ├── BatcherTypes.cs.meta │ │ ├── IBatcher.cs │ │ ├── IBatcher.cs.meta │ │ ├── MaterialPreservingBatcher.cs │ │ ├── MaterialPreservingBatcher.cs.meta │ │ ├── SimpleBatcher.cs │ │ └── SimpleBatcher.cs.meta │ ├── BuildProcess.cs │ ├── BuildProcess.cs.meta │ ├── Cache.meta │ ├── Cache │ │ ├── SimplifiedCache.cs │ │ ├── SimplifiedCache.cs.meta │ │ ├── SimplifiedMeshList.cs │ │ └── SimplifiedMeshList.cs.meta │ ├── CreateUtils.meta │ ├── CreateUtils │ │ ├── GetMeshRenderer.cs │ │ └── GetMeshRenderer.cs.meta │ ├── DebugWindow.meta │ ├── DebugWindow │ │ ├── DrawMode.cs │ │ ├── DrawMode.cs.meta │ │ ├── HLODDebugWindow.cs │ │ ├── HLODDebugWindow.cs.meta │ │ ├── HLODDebugWindow.uss │ │ ├── HLODDebugWindow.uss.meta │ │ ├── HLODDebugWindow.uxml │ │ ├── HLODDebugWindow.uxml.meta │ │ ├── HLODItem.cs │ │ ├── HLODItem.cs.meta │ │ ├── HLODItem.uss │ │ ├── HLODItem.uss.meta │ │ ├── HLODItem.uxml │ │ ├── HLODItem.uxml.meta │ │ ├── HLODItemData.cs │ │ ├── HLODItemData.cs.meta │ │ ├── HierarchyItem.cs │ │ ├── HierarchyItem.cs.meta │ │ ├── HierarchyItem.uss │ │ ├── HierarchyItem.uss.meta │ │ ├── HierarchyItem.uxml │ │ ├── HierarchyItem.uxml.meta │ │ ├── HierarchyItemData.cs │ │ └── HierarchyItemData.cs.meta │ ├── HLODBuildInfo.cs │ ├── HLODBuildInfo.cs.meta │ ├── HLODBuilder.cs │ ├── HLODBuilder.cs.meta │ ├── HLODCameraRecognizerEditor.cs │ ├── HLODCameraRecognizerEditor.cs.meta │ ├── HLODCreator.cs │ ├── HLODCreator.cs.meta │ ├── HLODData.cs │ ├── HLODData.cs.meta │ ├── HLODDataImporter.cs │ ├── HLODDataImporter.cs.meta │ ├── HLODDataImporterEditor.cs │ ├── HLODDataImporterEditor.cs.meta │ ├── HLODDataSerializer.cs │ ├── HLODDataSerializer.cs.meta │ ├── HLODEditor.asmdef │ ├── HLODEditor.asmdef.meta │ ├── HLODEditor.cs │ ├── HLODEditor.cs.meta │ ├── HLODMeshSetterBuilder.cs │ ├── HLODMeshSetterBuilder.cs.meta │ ├── HLODMeshSetterEditor.cs │ ├── HLODMeshSetterEditor.cs.meta │ ├── HLODPrefabEditor.cs │ ├── HLODPrefabEditor.cs.meta │ ├── HLODTreeNodeRenderer.cs │ ├── HLODTreeNodeRenderer.cs.meta │ ├── LODSlider.cs │ ├── LODSlider.cs.meta │ ├── LODSliderRange.cs │ ├── LODSliderRange.cs.meta │ ├── MeshCombiner.cs │ ├── MeshCombiner.cs.meta │ ├── Serializer.meta │ ├── Serializer │ │ ├── EmptyUserDataSerializerRegisterHelper.cs │ │ ├── EmptyUserDataSerializerRegisterHelper.cs.meta │ │ ├── UserDataSerializerTypes.cs │ │ └── UserDataSerializerTypes.cs.meta │ ├── Simplifier.meta │ ├── Simplifier │ │ ├── ISimplifier.cs │ │ ├── ISimplifier.cs.meta │ │ ├── None.cs │ │ ├── None.cs.meta │ │ ├── SimplifierBase.cs │ │ ├── SimplifierBase.cs.meta │ │ ├── SimplifierTypes.cs │ │ ├── SimplifierTypes.cs.meta │ │ ├── UnityMeshSimplifier.cs │ │ └── UnityMeshSimplifier.cs.meta │ ├── SpaceManager.meta │ ├── SpaceManager │ │ ├── ISpaceSplitter.cs │ │ ├── ISpaceSplitter.cs.meta │ │ ├── QuadTreeSpaceSplitter.cs │ │ ├── QuadTreeSpaceSplitter.cs.meta │ │ ├── SpaceNode.cs │ │ ├── SpaceNode.cs.meta │ │ ├── SpaceSplitterTypes.cs │ │ └── SpaceSplitterTypes.cs.meta │ ├── Streaming.meta │ ├── Streaming │ │ ├── IStreamingBuilder.cs │ │ ├── IStreamingBuilder.cs.meta │ │ ├── StreamingBuilderTypes.cs │ │ ├── StreamingBuilderTypes.cs.meta │ │ ├── Unsupported.cs │ │ ├── Unsupported.cs.meta │ │ ├── YooStreaming.cs │ │ └── YooStreaming.cs.meta │ ├── TerrainHLODCreator.cs │ ├── TerrainHLODCreator.cs.meta │ ├── TerrainHLODEditor.cs │ ├── TerrainHLODEditor.cs.meta │ ├── TexturePacker.cs │ ├── TexturePacker.cs.meta │ ├── Utils.meta │ └── Utils │ │ ├── DisposableDictionary.cs │ │ ├── DisposableDictionary.cs.meta │ │ ├── DisposableList.cs │ │ ├── DisposableList.cs.meta │ │ ├── GUIDUtils.cs │ │ ├── GUIDUtils.cs.meta │ │ ├── HLODUtils.cs │ │ ├── HLODUtils.cs.meta │ │ ├── JobQueue.cs │ │ ├── JobQueue.cs.meta │ │ ├── ObjectUtils.cs │ │ ├── ObjectUtils.cs.meta │ │ ├── RangeIntPropertyDrawer.cs │ │ ├── RangeIntPropertyDrawer.cs.meta │ │ ├── TagUtils.cs │ │ ├── TagUtils.cs.meta │ │ ├── WorkingCollider.cs │ │ ├── WorkingCollider.cs.meta │ │ ├── WorkingMaterial.cs │ │ ├── WorkingMaterial.cs.meta │ │ ├── WorkingMesh.cs │ │ ├── WorkingMesh.cs.meta │ │ ├── WorkingObject.cs │ │ ├── WorkingObject.cs.meta │ │ ├── WorkingTexture.cs │ │ └── WorkingTexture.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── FSM.cs │ ├── FSM.cs.meta │ ├── HLOD.asmdef │ ├── HLOD.asmdef.meta │ ├── HLOD.cs │ ├── HLOD.cs.meta │ ├── HLODCameraRecognizer.cs │ ├── HLODCameraRecognizer.cs.meta │ ├── HLODManager.cs │ ├── HLODManager.cs.meta │ ├── HLODMeshSetter.cs │ ├── HLODMeshSetter.cs.meta │ ├── HLODMeshSetterGroup.cs │ ├── HLODMeshSetterGroup.cs.meta │ ├── HLODPrefab.cs │ ├── HLODPrefab.cs.meta │ ├── HLODTreeNode.cs │ ├── HLODTreeNode.cs.meta │ ├── HLODTreeNodeContainer.cs │ ├── HLODTreeNodeContainer.cs.meta │ ├── HLODUserData.cs │ ├── HLODUserData.cs.meta │ ├── HLODcameraRecognizerManager.cs │ ├── HLODcameraRecognizerManager.cs.meta │ ├── IGeneratedResourceManager.cs │ ├── IGeneratedResourceManager.cs.meta │ ├── RootData.cs │ ├── RootData.cs.meta │ ├── SerializableDynamicObject.cs │ ├── SerializableDynamicObject.cs.meta │ ├── Serializer.meta │ ├── Serializer │ │ ├── EmptyUserDataSerializer.cs │ │ ├── EmptyUserDataSerializer.cs.meta │ │ ├── UserDataSerializerBase.cs │ │ └── UserDataSerializerBase.cs.meta │ ├── SpaceManager.meta │ ├── SpaceManager │ │ ├── ISpaceManager.cs │ │ ├── ISpaceManager.cs.meta │ │ ├── QuadTreeSpaceManager.cs │ │ └── QuadTreeSpaceManager.cs.meta │ ├── Streaming.meta │ ├── Streaming │ │ ├── DefaultHLODController.cs │ │ ├── DefaultHLODController.cs.meta │ │ ├── HLODControllerBase.cs │ │ ├── HLODControllerBase.cs.meta │ │ ├── LoadManager.cs │ │ ├── LoadManager.cs.meta │ │ ├── YooAssetHLODController.cs │ │ └── YooAssetHLODController.cs.meta │ ├── TerrainHLOD.cs │ ├── TerrainHLOD.cs.meta │ ├── TerrainHLODData.cs │ ├── TerrainHLODData.cs.meta │ ├── Utils.meta │ └── Utils │ │ ├── BoundsUtils.cs │ │ ├── BoundsUtils.cs.meta │ │ ├── BranchCoroutine.cs │ │ ├── BranchCoroutine.cs.meta │ │ ├── CoroutineRunner.cs │ │ ├── CoroutineRunner.cs.meta │ │ ├── ListExtension.cs │ │ ├── ListExtension.cs.meta │ │ ├── RangeInt.cs │ │ ├── RangeInt.cs.meta │ │ ├── WaitForBranches.cs │ │ └── WaitForBranches.cs.meta │ ├── Samples~ │ ├── .gitignore │ ├── .sample.json │ ├── Assets.meta │ ├── Assets │ │ ├── Basic.meta │ │ ├── Basic │ │ │ ├── Basic.unity │ │ │ ├── Basic.unity.meta │ │ │ ├── HLOD.meta │ │ │ ├── HLOD │ │ │ │ ├── HLODRoot.hlod │ │ │ │ └── HLODRoot.hlod.meta │ │ │ ├── TestResources.meta │ │ │ └── TestResources │ │ │ │ ├── Vegetation.shader │ │ │ │ ├── Vegetation.shader.meta │ │ │ │ ├── VegetationLarge01.fbx │ │ │ │ ├── VegetationLarge01.fbx.meta │ │ │ │ ├── VegetationLarge01.prefab │ │ │ │ ├── VegetationLarge01.prefab.meta │ │ │ │ ├── VegetationLarge01_Albedo.tif │ │ │ │ ├── VegetationLarge01_Albedo.tif.meta │ │ │ │ ├── VegetationLarge01_Mat.mat │ │ │ │ ├── VegetationLarge01_Mat.mat.meta │ │ │ │ ├── VegetationLarge01_Normals.tif │ │ │ │ ├── VegetationLarge01_Normals.tif.meta │ │ │ │ ├── VegetationLarge02.fbx │ │ │ │ ├── VegetationLarge02.fbx.meta │ │ │ │ ├── VegetationLarge02.prefab │ │ │ │ ├── VegetationLarge02.prefab.meta │ │ │ │ ├── VegetationLarge02_Albedo.tif │ │ │ │ ├── VegetationLarge02_Albedo.tif.meta │ │ │ │ ├── VegetationLarge02_Mat.mat │ │ │ │ ├── VegetationLarge02_Mat.mat.meta │ │ │ │ ├── VegetationLarge02_Normals.tif │ │ │ │ └── VegetationLarge02_Normals.tif.meta │ │ ├── CombineMaterial.meta │ │ ├── CombineMaterial │ │ │ ├── CombineMaterial.unity │ │ │ ├── CombineMaterial.unity.meta │ │ │ ├── HLOD.meta │ │ │ ├── HLOD │ │ │ │ ├── CombineMaterialHLODRoot.hlod │ │ │ │ └── CombineMaterialHLODRoot.hlod.meta │ │ │ ├── TestResources.meta │ │ │ └── TestResources │ │ │ │ ├── CombineMaterial.mat │ │ │ │ ├── CombineMaterial.mat.meta │ │ │ │ ├── Vegetation.shader │ │ │ │ ├── Vegetation.shader.meta │ │ │ │ ├── VegetationLarge01.fbx │ │ │ │ ├── VegetationLarge01.fbx.meta │ │ │ │ ├── VegetationLarge01.prefab │ │ │ │ ├── VegetationLarge01.prefab.meta │ │ │ │ ├── VegetationLarge01_Albedo.tif │ │ │ │ ├── VegetationLarge01_Albedo.tif.meta │ │ │ │ ├── VegetationLarge01_Mat.mat │ │ │ │ ├── VegetationLarge01_Mat.mat.meta │ │ │ │ ├── VegetationLarge01_Normals.tif │ │ │ │ ├── VegetationLarge01_Normals.tif.meta │ │ │ │ ├── VegetationLarge02.fbx │ │ │ │ ├── VegetationLarge02.fbx.meta │ │ │ │ ├── VegetationLarge02.prefab │ │ │ │ ├── VegetationLarge02.prefab.meta │ │ │ │ ├── VegetationLarge02_Albedo.tif │ │ │ │ ├── VegetationLarge02_Albedo.tif.meta │ │ │ │ ├── VegetationLarge02_Mat.mat │ │ │ │ ├── VegetationLarge02_Mat.mat.meta │ │ │ │ ├── VegetationLarge02_Normals.tif │ │ │ │ └── VegetationLarge02_Normals.tif.meta │ │ ├── GameObject.hlod │ │ ├── GameObject.hlod.meta │ │ ├── SimplifyMesh.meta │ │ ├── SimplifyMesh │ │ │ ├── HLOD.meta │ │ │ ├── HLOD │ │ │ │ ├── SimplifyHLODRoot.hlod │ │ │ │ └── SimplifyHLODRoot.hlod.meta │ │ │ ├── SimplifyMesh.unity │ │ │ ├── SimplifyMesh.unity.meta │ │ │ ├── TestResources.meta │ │ │ └── TestResources │ │ │ │ ├── Vegetation.shader │ │ │ │ ├── Vegetation.shader.meta │ │ │ │ ├── VegetationLarge01.fbx │ │ │ │ ├── VegetationLarge01.fbx.meta │ │ │ │ ├── VegetationLarge01.prefab │ │ │ │ ├── VegetationLarge01.prefab.meta │ │ │ │ ├── VegetationLarge01_Albedo.tif │ │ │ │ ├── VegetationLarge01_Albedo.tif.meta │ │ │ │ ├── VegetationLarge01_Mat.mat │ │ │ │ ├── VegetationLarge01_Mat.mat.meta │ │ │ │ ├── VegetationLarge01_Normals.tif │ │ │ │ ├── VegetationLarge01_Normals.tif.meta │ │ │ │ ├── VegetationLarge02.fbx │ │ │ │ ├── VegetationLarge02.fbx.meta │ │ │ │ ├── VegetationLarge02.prefab │ │ │ │ ├── VegetationLarge02.prefab.meta │ │ │ │ ├── VegetationLarge02_Albedo.tif │ │ │ │ ├── VegetationLarge02_Albedo.tif.meta │ │ │ │ ├── VegetationLarge02_Mat.mat │ │ │ │ ├── VegetationLarge02_Mat.mat.meta │ │ │ │ ├── VegetationLarge02_Normals.tif │ │ │ │ └── VegetationLarge02_Normals.tif.meta │ │ ├── SpaceSplitter.meta │ │ ├── SpaceSplitter │ │ │ ├── Artifacts.meta │ │ │ ├── Artifacts │ │ │ │ ├── HLOD_SubTree0.hlod │ │ │ │ ├── HLOD_SubTree0.hlod.meta │ │ │ │ ├── HLOD_SubTree1.hlod │ │ │ │ ├── HLOD_SubTree1.hlod.meta │ │ │ │ ├── HLOD_SubTree2.hlod │ │ │ │ ├── HLOD_SubTree2.hlod.meta │ │ │ │ ├── HLOD_SubTree3.hlod │ │ │ │ └── HLOD_SubTree3.hlod.meta │ │ │ ├── QuadTreeSpaceSplitter.unity │ │ │ └── QuadTreeSpaceSplitter.unity.meta │ │ ├── TerrainHLOD.meta │ │ ├── TerrainHLOD │ │ │ ├── HLOD.meta │ │ │ ├── HLOD │ │ │ │ ├── TerrainHLOD.hlod │ │ │ │ └── TerrainHLOD.hlod.meta │ │ │ ├── TerrainHLOD.unity │ │ │ ├── TerrainHLOD.unity.meta │ │ │ ├── TestResource.meta │ │ │ └── TestResource │ │ │ │ ├── BakedMaterial.mat │ │ │ │ ├── BakedMaterial.mat.meta │ │ │ │ ├── GrassLayer.terrainlayer │ │ │ │ ├── GrassLayer.terrainlayer.meta │ │ │ │ ├── Soilsticks.terrainlayer │ │ │ │ ├── Soilsticks.terrainlayer.meta │ │ │ │ ├── TestTerrain.asset │ │ │ │ ├── TestTerrain.asset.meta │ │ │ │ ├── terrain_grass_basecolor.tga │ │ │ │ ├── terrain_grass_basecolor.tga.meta │ │ │ │ ├── terrain_grass_normal.png │ │ │ │ ├── terrain_grass_normal.png.meta │ │ │ │ ├── terrain_soilsticks_basecolor.tif │ │ │ │ ├── terrain_soilsticks_basecolor.tif.meta │ │ │ │ ├── terrain_soilsticks_normal.tif │ │ │ │ └── terrain_soilsticks_normal.tif.meta │ │ ├── TestAssets.meta │ │ ├── TestAssets │ │ │ ├── Artifacts.meta │ │ │ ├── Artifacts │ │ │ │ ├── PlaceHolder.txt │ │ │ │ └── PlaceHolder.txt.meta │ │ │ ├── BakedTerrainPatch.hlod │ │ │ ├── BakedTerrainPatch.hlod.meta │ │ │ ├── EditModeTestScene.unity │ │ │ ├── EditModeTestScene.unity.meta │ │ │ ├── HLOD.hlod │ │ │ ├── HLOD.hlod.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Blue.mat │ │ │ │ ├── Blue.mat.meta │ │ │ │ ├── Blue.png │ │ │ │ ├── Blue.png.meta │ │ │ │ ├── BlueT.mat │ │ │ │ ├── BlueT.mat.meta │ │ │ │ ├── Green.mat │ │ │ │ ├── Green.mat.meta │ │ │ │ ├── Green.png │ │ │ │ ├── Green.png.meta │ │ │ │ ├── GreenT.mat │ │ │ │ ├── GreenT.mat.meta │ │ │ │ ├── Red.mat │ │ │ │ ├── Red.mat.meta │ │ │ │ ├── Red.png │ │ │ │ ├── Red.png.meta │ │ │ │ ├── RedT.mat │ │ │ │ ├── RedT.mat.meta │ │ │ │ ├── Yellow.png │ │ │ │ ├── Yellow.png.meta │ │ │ │ ├── YellowT.mat │ │ │ │ └── YellowT.mat.meta │ │ │ ├── Mesh.meta │ │ │ ├── Mesh │ │ │ │ ├── RinNumber.FBX │ │ │ │ ├── RinNumber.FBX.meta │ │ │ │ ├── RinNumber_LOD0.mesh │ │ │ │ ├── RinNumber_LOD0.mesh.meta │ │ │ │ ├── RinNumber_LOD1.mesh │ │ │ │ ├── RinNumber_LOD1.mesh.meta │ │ │ │ ├── RinNumber_LOD2.mesh │ │ │ │ ├── RinNumber_LOD2.mesh.meta │ │ │ │ ├── RinNumber_LOD3.mesh │ │ │ │ └── RinNumber_LOD3.mesh.meta │ │ │ ├── PlayModeTestScene.unity │ │ │ ├── PlayModeTestScene.unity.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── HLODTargetTest_LODGroup.prefab │ │ │ │ ├── HLODTargetTest_LODGroup.prefab.meta │ │ │ │ ├── HLODTargetTest_LODGroup2.prefab │ │ │ │ ├── HLODTargetTest_LODGroup2.prefab.meta │ │ │ │ ├── HLODTargetTest_MeshRenderer.prefab │ │ │ │ ├── HLODTargetTest_MeshRenderer.prefab.meta │ │ │ │ ├── HLODTargetTest_MeshSetting.prefab │ │ │ │ ├── HLODTargetTest_MeshSetting.prefab.meta │ │ │ │ ├── HLODTestPrefab.prefab │ │ │ │ ├── HLODTestPrefab.prefab.meta │ │ │ │ ├── HLODTestPrefabBaked.prefab │ │ │ │ ├── HLODTestPrefabBaked.prefab.meta │ │ │ │ ├── MeshSettingMiniTest.prefab │ │ │ │ ├── MeshSettingMiniTest.prefab.meta │ │ │ │ ├── MeshSettingMiniTest2.prefab │ │ │ │ ├── MeshSettingMiniTest2.prefab.meta │ │ │ │ ├── MeshSettingMiniTest3.prefab │ │ │ │ ├── MeshSettingMiniTest3.prefab.meta │ │ │ │ ├── MeshSettingMiniTest4.prefab │ │ │ │ ├── MeshSettingMiniTest4.prefab.meta │ │ │ │ ├── MeshSettingTest.prefab │ │ │ │ ├── MeshSettingTest.prefab.meta │ │ │ │ ├── RinNumber.prefab │ │ │ │ ├── RinNumber.prefab.meta │ │ │ │ ├── RinNumber_LOD0.prefab │ │ │ │ ├── RinNumber_LOD0.prefab.meta │ │ │ │ ├── RinNumber_LOD0T.prefab │ │ │ │ ├── RinNumber_LOD0T.prefab.meta │ │ │ │ ├── RinNumber_LOD0T_2.prefab │ │ │ │ ├── RinNumber_LOD0T_2.prefab.meta │ │ │ │ ├── RinNumber_LOD0_2.prefab │ │ │ │ ├── RinNumber_LOD0_2.prefab.meta │ │ │ │ ├── RinNumber_LOD1.prefab │ │ │ │ ├── RinNumber_LOD1.prefab.meta │ │ │ │ ├── RinNumber_LOD1T.prefab │ │ │ │ ├── RinNumber_LOD1T.prefab.meta │ │ │ │ ├── RinNumber_LOD1T_2.prefab │ │ │ │ ├── RinNumber_LOD1T_2.prefab.meta │ │ │ │ ├── RinNumber_LOD1_2.prefab │ │ │ │ ├── RinNumber_LOD1_2.prefab.meta │ │ │ │ ├── RinNumber_LOD2.prefab │ │ │ │ ├── RinNumber_LOD2.prefab.meta │ │ │ │ ├── RinNumber_LOD2T.prefab │ │ │ │ ├── RinNumber_LOD2T.prefab.meta │ │ │ │ ├── RinNumber_LOD3.prefab │ │ │ │ ├── RinNumber_LOD3.prefab.meta │ │ │ │ ├── RinNumber_LOD3T.prefab │ │ │ │ └── RinNumber_LOD3T.prefab.meta │ │ │ ├── RawTestData.meta │ │ │ ├── RawTestData │ │ │ │ ├── TestData_1.json │ │ │ │ ├── TestData_1.json.meta │ │ │ │ ├── TestData_2.json │ │ │ │ ├── TestData_2.json.meta │ │ │ │ ├── TestData_3.json │ │ │ │ ├── TestData_3.json.meta │ │ │ │ ├── TestData_4.json │ │ │ │ ├── TestData_4.json.meta │ │ │ │ ├── TestData_5.json │ │ │ │ └── TestData_5.json.meta │ │ │ ├── Terrain.meta │ │ │ └── Terrain │ │ │ │ ├── BakedTerrainPrefab.prefab │ │ │ │ ├── BakedTerrainPrefab.prefab.meta │ │ │ │ ├── HLOD.hlod │ │ │ │ ├── HLOD.hlod.meta │ │ │ │ ├── TestTerrainData.asset │ │ │ │ └── TestTerrainData.asset.meta │ │ ├── TestResult.meta │ │ ├── TestResult │ │ │ ├── HLOD_1_Albedo 128.texture2D │ │ │ ├── HLOD_1_Albedo 128.texture2D.meta │ │ │ ├── HLOD_1_Albedo.texture2D │ │ │ ├── HLOD_1_Albedo.texture2D.meta │ │ │ ├── HLOD_1_Normal.texture2D │ │ │ ├── HLOD_1_Normal.texture2D.meta │ │ │ ├── HLOD_2_Albedo 128.texture2D │ │ │ ├── HLOD_2_Albedo 128.texture2D.meta │ │ │ ├── HLOD_2_Albedo.texture2D │ │ │ ├── HLOD_2_Albedo.texture2D.meta │ │ │ ├── HLOD_2_Normal.texture2D │ │ │ ├── HLOD_2_Normal.texture2D.meta │ │ │ ├── HLOD_3_Albedo 128.texture2D │ │ │ ├── HLOD_3_Albedo 128.texture2D.meta │ │ │ ├── HLOD_3_Albedo.texture2D │ │ │ ├── HLOD_3_Albedo.texture2D.meta │ │ │ ├── HLOD_3_Normal.texture2D │ │ │ ├── HLOD_3_Normal.texture2D.meta │ │ │ ├── HLOD_4_Albedo 128.texture2D │ │ │ ├── HLOD_4_Albedo 128.texture2D.meta │ │ │ ├── HLOD_4_Albedo.texture2D │ │ │ ├── HLOD_4_Albedo.texture2D.meta │ │ │ ├── HLOD_4_Normal.texture2D │ │ │ ├── HLOD_4_Normal.texture2D.meta │ │ │ ├── HLOD_Albedo 128.texture2D │ │ │ ├── HLOD_Albedo 128.texture2D.meta │ │ │ ├── HLOD_Albedo.texture2D │ │ │ ├── HLOD_Albedo.texture2D.meta │ │ │ ├── HLOD_Normal.texture2D │ │ │ └── HLOD_Normal.texture2D.meta │ │ ├── Tests.meta │ │ └── Tests │ │ │ ├── EditMode.meta │ │ │ ├── EditMode │ │ │ ├── EditMode.asmdef │ │ │ ├── EditMode.asmdef.meta │ │ │ ├── EditorTests.cs │ │ │ ├── EditorTests.cs.meta │ │ │ ├── GetMeshRendererTest.cs │ │ │ ├── GetMeshRendererTest.cs.meta │ │ │ ├── HLODTargetTest.cs │ │ │ ├── HLODTargetTest.cs.meta │ │ │ ├── MaterialPreservingBatcherTests.cs │ │ │ ├── MaterialPreservingBatcherTests.cs.meta │ │ │ ├── MeshSetterMiniTest.cs │ │ │ ├── MeshSetterMiniTest.cs.meta │ │ │ ├── SimpleBatcherTests.cs │ │ │ ├── SimpleBatcherTests.cs.meta │ │ │ ├── SimplifierTests.cs │ │ │ ├── SimplifierTests.cs.meta │ │ │ ├── SpaceSplitterTests.cs │ │ │ ├── SpaceSplitterTests.cs.meta │ │ │ ├── TerrainHLODTests.cs │ │ │ └── TerrainHLODTests.cs.meta │ │ │ ├── PlayMode.meta │ │ │ ├── PlayMode │ │ │ ├── HLODMeshSetterTest.cs │ │ │ ├── HLODMeshSetterTest.cs.meta │ │ │ ├── PlayMode.asmdef │ │ │ ├── PlayMode.asmdef.meta │ │ │ ├── RuntimeTests.cs │ │ │ ├── RuntimeTests.cs.meta │ │ │ ├── TerrainDestroyTest.cs │ │ │ └── TerrainDestroyTest.cs.meta │ │ │ ├── Tests.asmdef │ │ │ └── Tests.asmdef.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 │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── XRSettings.asset │ ├── package.json │ └── package.json.meta ├── LICENSE ├── NetworkModule ├── Assets │ └── TEngine │ │ ├── Libraries │ │ ├── Protobuf-net.meta │ │ ├── Protobuf-net │ │ │ ├── BclHelpers.cs │ │ │ ├── BclHelpers.cs.meta │ │ │ ├── BufferExtension.cs │ │ │ ├── BufferExtension.cs.meta │ │ │ ├── BufferPool.cs │ │ │ ├── BufferPool.cs.meta │ │ │ ├── CallbackAttributes.cs │ │ │ ├── CallbackAttributes.cs.meta │ │ │ ├── Compiler.meta │ │ │ ├── Compiler │ │ │ │ ├── CompilerContext.cs │ │ │ │ ├── CompilerContext.cs.meta │ │ │ │ ├── CompilerDelegates.cs │ │ │ │ ├── CompilerDelegates.cs.meta │ │ │ │ ├── Local.cs │ │ │ │ └── Local.cs.meta │ │ │ ├── DataFormat.cs │ │ │ ├── DataFormat.cs.meta │ │ │ ├── DiscriminatedUnion.Serializable.cs │ │ │ ├── DiscriminatedUnion.Serializable.cs.meta │ │ │ ├── DiscriminatedUnion.cs │ │ │ ├── DiscriminatedUnion.cs.meta │ │ │ ├── Extensible.cs │ │ │ ├── Extensible.cs.meta │ │ │ ├── ExtensibleUtil.cs │ │ │ ├── ExtensibleUtil.cs.meta │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── GlobalSuppressions.cs.meta │ │ │ ├── Helpers.cs │ │ │ ├── Helpers.cs.meta │ │ │ ├── IExtensible.cs │ │ │ ├── IExtensible.cs.meta │ │ │ ├── IExtension.cs │ │ │ ├── IExtension.cs.meta │ │ │ ├── IProtoInputT.cs │ │ │ ├── IProtoInputT.cs.meta │ │ │ ├── IProtoOutputT.cs │ │ │ ├── IProtoOutputT.cs.meta │ │ │ ├── ImplicitFields.cs │ │ │ ├── ImplicitFields.cs.meta │ │ │ ├── KeyValuePairProxy.cs │ │ │ ├── KeyValuePairProxy.cs.meta │ │ │ ├── Meta.meta │ │ │ ├── Meta │ │ │ │ ├── AttributeMap.cs │ │ │ │ ├── AttributeMap.cs.meta │ │ │ │ ├── BasicList.cs │ │ │ │ ├── BasicList.cs.meta │ │ │ │ ├── CallbackSet.cs │ │ │ │ ├── CallbackSet.cs.meta │ │ │ │ ├── MetaType.cs │ │ │ │ ├── MetaType.cs.meta │ │ │ │ ├── ProtoSyntax.cs │ │ │ │ ├── ProtoSyntax.cs.meta │ │ │ │ ├── RuntimeTypeModel.cs │ │ │ │ ├── RuntimeTypeModel.cs.meta │ │ │ │ ├── SubType.cs │ │ │ │ ├── SubType.cs.meta │ │ │ │ ├── TypeAddedEventArgs.cs │ │ │ │ ├── TypeAddedEventArgs.cs.meta │ │ │ │ ├── TypeFormatEventArgs.cs │ │ │ │ ├── TypeFormatEventArgs.cs.meta │ │ │ │ ├── TypeModel.InputOutput.cs │ │ │ │ ├── TypeModel.InputOutput.cs.meta │ │ │ │ ├── TypeModel.cs │ │ │ │ ├── TypeModel.cs.meta │ │ │ │ ├── ValueMember.cs │ │ │ │ └── ValueMember.cs.meta │ │ │ ├── NetObjectCache.cs │ │ │ ├── NetObjectCache.cs.meta │ │ │ ├── PrefixStyle.cs │ │ │ ├── PrefixStyle.cs.meta │ │ │ ├── ProtoContractAttribute.cs │ │ │ ├── ProtoContractAttribute.cs.meta │ │ │ ├── ProtoConverterAttribute.cs │ │ │ ├── ProtoConverterAttribute.cs.meta │ │ │ ├── ProtoEnumAttribute.cs │ │ │ ├── ProtoEnumAttribute.cs.meta │ │ │ ├── ProtoException.cs │ │ │ ├── ProtoException.cs.meta │ │ │ ├── ProtoIgnoreAttribute.cs │ │ │ ├── ProtoIgnoreAttribute.cs.meta │ │ │ ├── ProtoIncludeAttribute.cs │ │ │ ├── ProtoIncludeAttribute.cs.meta │ │ │ ├── ProtoMapAttribute.cs │ │ │ ├── ProtoMapAttribute.cs.meta │ │ │ ├── ProtoMemberAttribute.cs │ │ │ ├── ProtoMemberAttribute.cs.meta │ │ │ ├── ProtoReader.cs │ │ │ ├── ProtoReader.cs.meta │ │ │ ├── ProtoWriter.cs │ │ │ ├── ProtoWriter.cs.meta │ │ │ ├── Protobuf-net.asmdef │ │ │ ├── Protobuf-net.asmdef.meta │ │ │ ├── SerializationContext.cs │ │ │ ├── SerializationContext.cs.meta │ │ │ ├── Serializer.cs │ │ │ ├── Serializer.cs.meta │ │ │ ├── Serializers.meta │ │ │ ├── Serializers │ │ │ │ ├── ArrayDecorator.cs │ │ │ │ ├── ArrayDecorator.cs.meta │ │ │ │ ├── BlobSerializer.cs │ │ │ │ ├── BlobSerializer.cs.meta │ │ │ │ ├── BooleanSerializer.cs │ │ │ │ ├── BooleanSerializer.cs.meta │ │ │ │ ├── ByteSerializer.cs │ │ │ │ ├── ByteSerializer.cs.meta │ │ │ │ ├── CharSerializer.cs │ │ │ │ ├── CharSerializer.cs.meta │ │ │ │ ├── CompiledSerializer.cs │ │ │ │ ├── CompiledSerializer.cs.meta │ │ │ │ ├── DateTimeSerializer.cs │ │ │ │ ├── DateTimeSerializer.cs.meta │ │ │ │ ├── DecimalSerializer.cs │ │ │ │ ├── DecimalSerializer.cs.meta │ │ │ │ ├── DefaultValueDecorator.cs │ │ │ │ ├── DefaultValueDecorator.cs.meta │ │ │ │ ├── DoubleSerializer.cs │ │ │ │ ├── DoubleSerializer.cs.meta │ │ │ │ ├── EnumSerializer.cs │ │ │ │ ├── EnumSerializer.cs.meta │ │ │ │ ├── FieldDecorator.cs │ │ │ │ ├── FieldDecorator.cs.meta │ │ │ │ ├── GuidSerializer.cs │ │ │ │ ├── GuidSerializer.cs.meta │ │ │ │ ├── IProtoSerializer.cs │ │ │ │ ├── IProtoSerializer.cs.meta │ │ │ │ ├── IProtoTypeSerializer.cs │ │ │ │ ├── IProtoTypeSerializer.cs.meta │ │ │ │ ├── ISerializerProxy.cs │ │ │ │ ├── ISerializerProxy.cs.meta │ │ │ │ ├── ImmutableCollectionDecorator.cs │ │ │ │ ├── ImmutableCollectionDecorator.cs.meta │ │ │ │ ├── Int16Serializer.cs │ │ │ │ ├── Int16Serializer.cs.meta │ │ │ │ ├── Int32Serializer.cs │ │ │ │ ├── Int32Serializer.cs.meta │ │ │ │ ├── Int64Serializer.cs │ │ │ │ ├── Int64Serializer.cs.meta │ │ │ │ ├── ListDecorator.cs │ │ │ │ ├── ListDecorator.cs.meta │ │ │ │ ├── MapDecorator.cs │ │ │ │ ├── MapDecorator.cs.meta │ │ │ │ ├── MemberSpecifiedDecorator.cs │ │ │ │ ├── MemberSpecifiedDecorator.cs.meta │ │ │ │ ├── NetObjectSerializer.cs │ │ │ │ ├── NetObjectSerializer.cs.meta │ │ │ │ ├── NullDecorator.cs │ │ │ │ ├── NullDecorator.cs.meta │ │ │ │ ├── ParseableSerializer.cs │ │ │ │ ├── ParseableSerializer.cs.meta │ │ │ │ ├── PropertyDecorator.cs │ │ │ │ ├── PropertyDecorator.cs.meta │ │ │ │ ├── ProtoDecoratorBase.cs │ │ │ │ ├── ProtoDecoratorBase.cs.meta │ │ │ │ ├── ReflectedUriDecorator.cs │ │ │ │ ├── ReflectedUriDecorator.cs.meta │ │ │ │ ├── SByteSerializer.cs │ │ │ │ ├── SByteSerializer.cs.meta │ │ │ │ ├── SingleSerializer.cs │ │ │ │ ├── SingleSerializer.cs.meta │ │ │ │ ├── StringSerializer.cs │ │ │ │ ├── StringSerializer.cs.meta │ │ │ │ ├── SubItemSerializer.cs │ │ │ │ ├── SubItemSerializer.cs.meta │ │ │ │ ├── SurrogateSerializer.cs │ │ │ │ ├── SurrogateSerializer.cs.meta │ │ │ │ ├── SystemTypeSerializer.cs │ │ │ │ ├── SystemTypeSerializer.cs.meta │ │ │ │ ├── TagDecorator.cs │ │ │ │ ├── TagDecorator.cs.meta │ │ │ │ ├── TimeSpanSerializer.cs │ │ │ │ ├── TimeSpanSerializer.cs.meta │ │ │ │ ├── TupleSerializer.cs │ │ │ │ ├── TupleSerializer.cs.meta │ │ │ │ ├── TypeSerializer.cs │ │ │ │ ├── TypeSerializer.cs.meta │ │ │ │ ├── UInt16Serializer.cs │ │ │ │ ├── UInt16Serializer.cs.meta │ │ │ │ ├── UInt32Serializer.cs │ │ │ │ ├── UInt32Serializer.cs.meta │ │ │ │ ├── UInt64Serializer.cs │ │ │ │ ├── UInt64Serializer.cs.meta │ │ │ │ ├── UriDecorator.cs │ │ │ │ └── UriDecorator.cs.meta │ │ │ ├── ServiceModel.meta │ │ │ ├── ServiceModel │ │ │ │ ├── ProtoBehaviorAttribute.cs │ │ │ │ ├── ProtoBehaviorAttribute.cs.meta │ │ │ │ ├── ProtoBehaviorExtensionElement.cs │ │ │ │ ├── ProtoBehaviorExtensionElement.cs.meta │ │ │ │ ├── ProtoEndpointBehavior.cs │ │ │ │ ├── ProtoEndpointBehavior.cs.meta │ │ │ │ ├── ProtoOperationBehavior.cs │ │ │ │ ├── ProtoOperationBehavior.cs.meta │ │ │ │ ├── XmlProtoSerializer.cs │ │ │ │ └── XmlProtoSerializer.cs.meta │ │ │ ├── SubItemToken.cs │ │ │ ├── SubItemToken.cs.meta │ │ │ ├── WireType.cs │ │ │ └── WireType.cs.meta │ │ ├── UnityWebSocket.meta │ │ └── UnityWebSocket │ │ │ ├── Demo~ │ │ │ ├── DemoScene.unity │ │ │ ├── DemoScene.unity.meta │ │ │ ├── UnityWebSocketDemo.cs │ │ │ └── UnityWebSocketDemo.cs.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ ├── WebGL.meta │ │ │ └── WebGL │ │ │ │ ├── WebSocket.jslib │ │ │ │ └── WebSocket.jslib.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── SettingsWindow.cs │ │ │ ├── SettingsWindow.cs.meta │ │ │ ├── UnityWebSocket.Editor.asmdef │ │ │ └── UnityWebSocket.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ ├── CloseEventArgs.cs │ │ │ ├── CloseEventArgs.cs.meta │ │ │ ├── CloseStatusCode.cs │ │ │ ├── CloseStatusCode.cs.meta │ │ │ ├── ErrorEventArgs.cs │ │ │ ├── ErrorEventArgs.cs.meta │ │ │ ├── IWebSocket.cs │ │ │ ├── IWebSocket.cs.meta │ │ │ ├── MessageEventArgs.cs │ │ │ ├── MessageEventArgs.cs.meta │ │ │ ├── Opcode.cs │ │ │ ├── Opcode.cs.meta │ │ │ ├── OpenEventArgs.cs │ │ │ ├── OpenEventArgs.cs.meta │ │ │ ├── Settings.cs │ │ │ ├── Settings.cs.meta │ │ │ ├── WebSocketState.cs │ │ │ └── WebSocketState.cs.meta │ │ │ ├── Implementation.meta │ │ │ ├── Implementation │ │ │ ├── NoWebGL.meta │ │ │ ├── NoWebGL │ │ │ │ ├── WebSocket.cs │ │ │ │ ├── WebSocket.cs.meta │ │ │ │ ├── WebSocketManager.cs │ │ │ │ └── WebSocketManager.cs.meta │ │ │ ├── WebGL.meta │ │ │ └── WebGL │ │ │ │ ├── WebSocket.cs │ │ │ │ ├── WebSocket.cs.meta │ │ │ │ ├── WebSocketManager.cs │ │ │ │ └── WebSocketManager.cs.meta │ │ │ ├── UnityWebSocket.Runtime.asmdef │ │ │ └── UnityWebSocket.Runtime.asmdef.meta │ │ └── Runtime │ │ └── Module │ │ └── NetworkModule │ │ ├── AClient.cs │ │ ├── AClient.cs.meta │ │ ├── Helper.meta │ │ ├── Helper │ │ ├── MemoryStreamHelper.cs │ │ ├── MemoryStreamHelper.cs.meta │ │ ├── ProtoBufHelper.cs │ │ ├── ProtoBufHelper.cs.meta │ │ ├── RecyclableMemoryStream.meta │ │ └── RecyclableMemoryStream │ │ │ ├── EventArgs.cs │ │ │ ├── EventArgs.cs.meta │ │ │ ├── Events.cs │ │ │ ├── Events.cs.meta │ │ │ ├── RecyclableMemoryStream.cs │ │ │ ├── RecyclableMemoryStream.cs.meta │ │ │ ├── RecyclableMemoryStreamManager.cs │ │ │ └── RecyclableMemoryStreamManager.cs.meta │ │ ├── INetworkModule.cs │ │ ├── INetworkModule.cs.meta │ │ ├── NetworkModule.cs │ │ ├── NetworkModule.cs.meta │ │ ├── NetworkType.cs │ │ ├── NetworkType.cs.meta │ │ ├── Package.meta │ │ ├── Package │ │ ├── DefaultNetPackage.cs │ │ ├── DefaultNetPackage.cs.meta │ │ ├── DefaultNetPackageDecoder.cs │ │ ├── DefaultNetPackageDecoder.cs.meta │ │ ├── DefaultNetPackageEncoder.cs │ │ ├── DefaultNetPackageEncoder.cs.meta │ │ ├── INetPackage.cs │ │ ├── INetPackage.cs.meta │ │ ├── INetPackageDecoder.cs │ │ ├── INetPackageDecoder.cs.meta │ │ ├── INetPackageEncoder.cs │ │ └── INetPackageEncoder.cs.meta │ │ ├── RingBuffer.cs │ │ ├── RingBuffer.cs.meta │ │ ├── TCP.meta │ │ ├── TCP │ │ ├── TcpChannel.cs │ │ ├── TcpChannel.cs.meta │ │ ├── TcpClient.cs │ │ └── TcpClient.cs.meta │ │ ├── ThreadSyncContext.cs │ │ ├── ThreadSyncContext.cs.meta │ │ ├── WebSocket.meta │ │ └── WebSocket │ │ ├── WebSocketChannel.cs │ │ ├── WebSocketChannel.cs.meta │ │ ├── WebSocketClient.cs │ │ └── WebSocketClient.cs.meta └── Info.png └── PrimeTweenHelper └── PrimeTweenHelperImp.cs /Bugly/Assets/Plugins/BuglyPlugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 694411f45e4e64facb88eebfc2e1df1c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 644a9f5710e62403c94066ef9b61e775 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/arm64-v8a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbe6ceb596d63f5418beb7a12d34993b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/arm64-v8a/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/Android/libs/arm64-v8a/libBugly.so -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb7b442d8e32443e5856838741007f70 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/armeabi-v7a/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/Android/libs/armeabi-v7a/libBugly.so -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/bugly_crash_release.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/Android/libs/bugly_crash_release.jar -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/buglyagent.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/Android/libs/buglyagent.jar -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79531ba82725e4071861c982307805c3 3 | folderAsset: yes 4 | timeCreated: 1443426231 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/Android/libs/x86/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/Android/libs/x86/libBugly.so -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/BuglyAgent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be621fe31508b4f2ab134ee879ec97b4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/BuglyCallback.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78e76f643d1884dcab602d5fe79b08e1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/BuglyInit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a717f6955eddf4463ad541714a1b5483 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93d058e8cd0447f4388c22f8103026b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Bugly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Bugly -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Bugly.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b31e603aee5dc1b4cb137e1ed45bff35 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Headers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fa48d3c6d2b0954e96c162feb17f208 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Headers/Bugly.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad5f8a4e319fc446b94c0fb2ae354dd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Headers/BuglyConfig.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c4865df828f9344bdd530cb447d4ec 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Headers/BuglyLog.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 325d55947748be945b9119b4ecf7dd2e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 312d79b8a62b7094bb46d91446124fcc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Bugly { 2 | umbrella header "Bugly.h" 3 | 4 | export * 5 | module * { export * } 6 | 7 | link framework "Foundation" 8 | link framework "Security" 9 | link framework "SystemConfiguration" 10 | link "c++" 11 | link "z" 12 | } 13 | -------------------------------------------------------------------------------- /Bugly/Assets/Plugins/BuglyPlugins/iOS/Bugly.framework/Modules/module.modulemap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e1be471169ed284a9eb43761db83a0f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/Bugly.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c61e42d295754ba3b4e9f31ee67c230e 3 | timeCreated: 1698140475 -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/BuglyConfig.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace TEngine 4 | { 5 | [CreateAssetMenu] 6 | public class BuglyConfig : ScriptableObject 7 | { 8 | public string channelId; 9 | public string androidId; 10 | public string androidKey; 11 | public string iosId; 12 | public string iosKey; 13 | } 14 | } -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/BuglyConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf9017ac21e41dc97f7c328c0d6017f 3 | timeCreated: 1681895834 -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/BuglyManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94102b3b00fd4c9293073236adec064c 3 | timeCreated: 1681895834 -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f513275928c09f42ad6c2cbdd56cbec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Bugly/Assets/Scripts/Resources/BuglyConfig.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 574540cb1bee6a247aa8a2539b87b0fb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/AttachEntityInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93ee8133074b5234da08e1308a55efb2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a1bc5e99edc4f76a90b5386db03e616 3 | timeCreated: 1698053954 -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Component/EntityComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 976852b75792415c8d8dd898b2b24a8a 3 | timeCreated: 1698053967 -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Component/EntityDebugBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 366e1f213d994fd2b5fa42d33a2e9020 3 | timeCreated: 1698058998 -------------------------------------------------------------------------------- /EntityModule(GameFramework)/DefaultEntityGroupHelper.cs: -------------------------------------------------------------------------------- 1 | namespace TEngine 2 | { 3 | /// 4 | /// 默认实体组辅助器。 5 | /// 6 | public class DefaultEntityGroupHelper : EntityGroupHelperBase 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/DefaultEntityGroupHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eae0b22de94ba442b482bff7fab17ff 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/DefaultEntityHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b0ffb61c68e948498fa57c1901f0001 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Entity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bac1e67b934ef0944b6de46554cf5042 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityGroupHelperBase.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace TEngine 4 | { 5 | /// 6 | /// 实体组辅助器基类。 7 | /// 8 | public abstract class EntityGroupHelperBase : MonoBehaviour, IEntityGroupHelper 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityGroupHelperBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb8122bd1a1ff7d4cb0a9806d5b3f065 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityHelperBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8992f89de70519047ba31e6383445cca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityLogic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 699dd149c0a53234e8f76e6d6c1b5545 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.EntityGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fed22a00e76a9e04db988de4744325f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.EntityInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 587d8d02d9b5b8341a17bcc88ec0946b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.EntityInstanceObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 464693e273ba27847b89b8d2bc1a6cca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.EntityStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab0b205f77830b74486b0d2ae91da934 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.ShowEntityInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55d530e796e407c4fa1cddfef9a1c780 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153f54549cf84ed4ab2b72d9f32bbd63 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityModule.EntityGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d93d1ae840acb2f449ac5f5cad2d0259 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/EntityModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58aa63e99dabf9c4fb61a9ec4ac4d8ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b14b038f3e184ccb92a107e7ff2134d0 3 | timeCreated: 1696952336 -------------------------------------------------------------------------------- /EntityModule(GameFramework)/Event/ActorEventHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eef2c05ec78746369e52e9b23dc1e9ab 3 | timeCreated: 1673512481 -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88bfaad20a8f9434aba486ffa68ba761 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntityGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7093136c22354c4e8a18dccfd1bf9c6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntityGroupHelper.cs: -------------------------------------------------------------------------------- 1 | namespace TEngine 2 | { 3 | /// 4 | /// 实体组辅助器接口。 5 | /// 6 | public interface IEntityGroupHelper 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntityGroupHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17e6e9bab15e7bf43a56b8acb83b2a23 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntityHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71330d58707d3404b9812391d90be67f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/IEntityManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2f6adec7e3a17d47a8d818190db8d71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /EntityModule(GameFramework)/ShowEntityInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5535dde509ba87b42912084f30591779 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HFS(FileServer)/hfs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HFS(FileServer)/hfs.exe -------------------------------------------------------------------------------- /HLOD/.gitignore: -------------------------------------------------------------------------------- 1 | com.unity.hlod/Package.meta 2 | .idea/ 3 | .vscode/ 4 | TestResults/ 5 | Logs/ 6 | upm-ci~/ 7 | .bin/ 8 | .download/ 9 | com.unity.hlod/.npmignore -------------------------------------------------------------------------------- /HLOD/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "com.unity.hlod/Package/UnityMeshSimplifier"] 2 | path = com.unity.hlod/Package/UnityMeshSimplifier 3 | url = https://github.com/Unity-Technologies/UnityMeshSimplifier.git -------------------------------------------------------------------------------- /HLOD/.scripts/modules/ProjectTools/ProjectTools.psm1: -------------------------------------------------------------------------------- 1 | . $PSScriptRoot/function-Check-LastExitCode.ps1 2 | . $PSScriptRoot/function-Get-Configuration.ps1 3 | 4 | Export-ModuleMember Check-LastExitCode 5 | Export-ModuleMember Get-Configuration -------------------------------------------------------------------------------- /HLOD/.scripts/modules/ProjectTools/function-Check-LastExitCode.ps1: -------------------------------------------------------------------------------- 1 | function Check-LastExitCode { 2 | if ($LastExitCode -ne 0) { 3 | $msg = @" 4 | EXE RETURNED EXIT CODE $LastExitCode 5 | CALLSTACK:$(Get-PSCallStack | Out-String) 6 | "@ 7 | throw $msg 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/compare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/compare.gif -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/hlod_addcomponent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/hlod_addcomponent.jpg -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/hlod_afterbake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/hlod_afterbake.jpg -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/hlod_batch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/hlod_batch.jpg -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/overview_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/overview_1.jpg -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/overview_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/overview_2.jpg -------------------------------------------------------------------------------- /HLOD/Documentation~/Images/overview_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/Documentation~/Images/overview_3.jpg -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Package/UnityMeshSimplifier"] 2 | path = Package/UnityMeshSimplifier 3 | url = https://github.com/Unity-Technologies/UnityMeshSimplifier.git -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81e1adf93d365c54f85bf9745a174b42 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/compare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/compare.gif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image1.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image10.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image11.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image12.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image13.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image14.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image15.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image16.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image17.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image18.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image19.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image2.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image20.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image21.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image3.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image4.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image6.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image7.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image8.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/image9.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/overview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/overview_1.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/overview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/overview_2.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Documentation~/media/overview_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Documentation~/media/overview_3.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a38e5bcdb1e6a459ea5d5830843151 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bcdd40ff948dfa4b8f9c1a9d8598574 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher/BatcherTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e205ac840c9c6df4ab5a21ca2760f100 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher/IBatcher.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Unity.HLODSystem.Utils; 3 | using UnityEngine; 4 | 5 | namespace Unity.HLODSystem 6 | { 7 | public interface IBatcher : IDisposable 8 | { 9 | 10 | void Batch(Transform rootTransform, DisposableList targets, Action onProgress); 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher/IBatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13a5e2b1cfab1844c8f5bdec78407d6c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher/MaterialPreservingBatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a288cdecc6af3cd498ca6bee205fd564 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Batcher/SimpleBatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bad0c6038747d5448d4bf1a2be79c8b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/BuildProcess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f0f890fb7c2b0d4fbf6f0106e842380 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Cache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0171b8829b148cb4aa431494352b068e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Cache/SimplifiedCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8734536ac6ce8bf4ba5e1bcc183b0555 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Cache/SimplifiedMeshList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0038a9ce1b6fe274ab2d5635a62a3bd0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/CreateUtils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21d13720474403b4b888402926a6dd14 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/CreateUtils/GetMeshRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b4240e093925af41b05d967e9270553 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 094d6c79b828d824abed32b69713e2bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/DrawMode.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace Unity.HLODSystem.DebugWindow 6 | { 7 | public enum DrawMode 8 | { 9 | None, 10 | RenderOnly, 11 | All, 12 | } 13 | } -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/DrawMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ca9a658ddc1ee640b34f943624d8717 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HLODDebugWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d83321e45ced11d4ba33fde563ecf1e1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HLODItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d183d0985738ec4a8ac2a03fc477fa9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HLODItem.uss: -------------------------------------------------------------------------------- 1 | #Label { 2 | flex-grow: 1; 3 | } 4 | 5 | #EnableDebug { 6 | width: 30px; 7 | flex-shrink: 1; 8 | } 9 | 10 | #EnableDebug > .unity-toggle__label { 11 | min-width: 0px; 12 | width: 0px; 13 | visibility: hidden; 14 | } 15 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HLODItem.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3d94d4fe01e43d4eb8f2fc24c533851 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0} 11 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HLODItemData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bef33ebd6dda55641b10f2d25427671d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HierarchyItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d78cb29debc9163498fc47065c22924e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HierarchyItem.uss: -------------------------------------------------------------------------------- 1 | #Foldout > .unity-toggle__label { 2 | min-width: 0; 3 | width: 0; 4 | visibility: hidden; 5 | } 6 | 7 | .HLODTreeNode_rendered { 8 | background-color: rgba(0, 128, 0, 0.25); 9 | } 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/DebugWindow/HierarchyItemData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4da667bd205db54baa5f2582fe1c6ad 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODBuildInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffdf209ae2095c840b5c3bede224ae51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44423a13152199b448619ada2f10d7eb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODCameraRecognizerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d65b70e8f6ee4bc8b150a8ea5cbce86c 3 | timeCreated: 1676016805 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f49a45755401b7543914d96ca2636e4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 106bd6bf451b4bf4d8159b4ded9a9844 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODDataImporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7f2050f615fb9488bb4bc8978d695c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODDataImporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 148eb13276a97f34f829f30c48ceda64 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODDataSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6316052c8d1c28d48be05768a390f150 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODEditor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d14ed857634195d4291e8b118db2c0f4 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72cbb4d82e8e49847a69e2a082d5c75c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODMeshSetterBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a6fcb2439594b1418efabf61efbfff1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODMeshSetterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27757a518e114d141a964bfaa90c634b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODPrefabEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788b457970e3a11428f2eb5b8772fc41 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/HLODTreeNodeRenderer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81e6ef768d31cd6458cb6b911c06a109 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/LODSlider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d47f6c4e5d931964e93fc53085041813 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/LODSliderRange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdc8cc211288b2b439bae137c5ba4dc5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/MeshCombiner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2429e84d606884543a79f39ecf833695 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Serializer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8091b26294ae4db08f3a3bc1be808ff6 3 | timeCreated: 1655371101 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Serializer/EmptyUserDataSerializerRegisterHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca2bdd544760442299f82ba63445f7f6 3 | timeCreated: 1655379566 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Serializer/UserDataSerializerTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a607319ccbf404e81b060ed2568b079 3 | timeCreated: 1655371709 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 858ae6fe3c6d10e42b3c4125f64fe7f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/ISimplifier.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | 3 | namespace Unity.HLODSystem.Simplifier 4 | { 5 | public interface ISimplifier 6 | { 7 | IEnumerator Simplify(HLODBuildInfo buildInfo); 8 | void SimplifyImmidiate(HLODBuildInfo buildInfo); 9 | 10 | 11 | } 12 | } -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/ISimplifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8569b3e0b36fda348868af8aabd8d279 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/None.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bf2604df63ff22488ef773c54ac69a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/SimplifierBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ebaef072695dcf41af29317216f8105 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/SimplifierTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0e9d4405cbd8e74dbd8a1a3d3ca9728 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Simplifier/UnityMeshSimplifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a464672d2567504a8057474c398be94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/SpaceManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8444420b55903eb45ae94d26fdf11c73 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/SpaceManager/ISpaceSplitter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b71119d54501f0044abfc1a54f34812d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/SpaceManager/QuadTreeSpaceSplitter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75deae3ea2e1dd848b758ddb97741a80 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/SpaceManager/SpaceNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25e8a7cafc5b69542beb2ffe4d0459b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/SpaceManager/SpaceSplitterTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a95464b7954e4a03be8b7e30cc9473eb 3 | timeCreated: 1662011843 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Streaming.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16e43fd8f4f8c5c40b3c018cb66df780 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Streaming/IStreamingBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78f9a850975c8e9448ae9f931a96c8cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Streaming/StreamingBuilderTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baac09d1c1dd2b041a2faacb0b42c7db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Streaming/Unsupported.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0d199a91bd1df2429495fe6fb493748 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Streaming/YooStreaming.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc210a48dae410a458599e4b923a41fa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/TerrainHLODCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 639999035de43d34899b1fe8a20ea4e6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/TerrainHLODEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44b78cdb6a5ba32418d216b015e01fee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/TexturePacker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c9a709a6c1065a4a8cc9341d709a3a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34a36dca32f044648879ca639fbd35d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/DisposableDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 113eefcd7a37b4b4fbf4d02488ded4f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/DisposableList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aff5e310f76e69240bb8e6a32ba4ee20 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/GUIDUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 966df7706f3a7cd42935766a749e2aef 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/HLODUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4159636cfbca0d84784de25a672c91fa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/JobQueue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 475bb0b37920b8142a965870c7493b0e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/ObjectUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 456f456a9c15a164cb0bb5f84c631bde 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/RangeIntPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bebd83ce921c4789bb7000afd1cb7b2d 3 | timeCreated: 1675128606 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/TagUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c33b7c418530664cb606ab951e0b696 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/WorkingCollider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a05ba41ed514a2a9d78bc9928e12b08 3 | timeCreated: 1653382400 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/WorkingMaterial.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c08fc3e43e1dc943b857b550e50c6a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/WorkingMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6841f3851ab1099438d63be91e5f1b78 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/WorkingObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5a1e18cac22cab4495f7a60edf1fd3f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Editor/Utils/WorkingTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35253290bd9f13743a559f6fc5cc02b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a5e31d68ff93b044949c67e8c63148f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48c070e14f4b8884f9d9c68659548587 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/FSM.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ae5c1f7b8182824484271af5fee4621 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLOD.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00af4b5c330784340bf48969bdef1fff 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLOD.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1027a8dd1225d60469ef7ad3e13817e9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODCameraRecognizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b78661f5647805e48adef9c39f3894b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65fb9770c1947614bb2b1f433522127c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODMeshSetter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de1cb1ba93432fe49849a67e0f6448aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODMeshSetterGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83dde24a3e146ab43b0c5b44087cc319 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODPrefab.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b056d8fbad5b7ea439ade3f716281f6a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODTreeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0932b8e68141074ead6c49c82047816 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODTreeNodeContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97994e51ce6ac8e49b6543f943bf214d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91a5225f577fe3e45b441881879bf268 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/HLODcameraRecognizerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa44d7cc1f445b595cd7f2466a37f92 3 | timeCreated: 1675907212 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/IGeneratedResourceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f976870f4aaf7242916d9f5790e8383 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/RootData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 670114f2e05f56045999768d6c0b32f8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/SerializableDynamicObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd4906412377c4744a8d306456685dc2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Serializer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3aa9a2660414210b05f75d81eaf845b 3 | timeCreated: 1655371066 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Serializer/EmptyUserDataSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19633bd401ae4747824c3bc054f82397 3 | timeCreated: 1655379399 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Serializer/UserDataSerializerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f67a31b1e5f4eeab7a93e8100f8e99f 3 | timeCreated: 1655371084 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/SpaceManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2748eeb256efd5f459c99dbdf7847cfc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/SpaceManager/ISpaceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 430613ccf81740f4d815770be60b61e1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/SpaceManager/QuadTreeSpaceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3732420c62ea65548ba5822093780808 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Streaming.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b9f6c0d6b19a2c4db04ca4be14cf0ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Streaming/DefaultHLODController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f11fd2785f347c14dbdec9a0c54efe28 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Streaming/HLODControllerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 124a951241aee3c47943cdd569d8cfd7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Streaming/LoadManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c5a37e72b24d45818f9080d2f1a967 3 | timeCreated: 1657173566 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Streaming/YooAssetHLODController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e8ab9128452caf42aa2e40cae4e01a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/TerrainHLOD.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02cbacad52a8978498bbc20786bc3b79 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/TerrainHLODData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a98725927964334eb9b7b1d1128ce75 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e447aaefad7872747bcbbf152cd8e58a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/BoundsUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11a4a7d7cdcb45f0bcd4f9f187639e4b 3 | timeCreated: 1658997244 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/BranchCoroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a233e664a1ea44784e2dd91808ee1e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/CoroutineRunner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44e3ecce91f826f409bfc1d8039bee01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/ListExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab6d5b4330a7856488e8e59f0566d19b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/RangeInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 568389f81122423491d53e62c4ceb431 3 | timeCreated: 1675128561 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Runtime/Utils/WaitForBranches.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be0ed509b979f7149a9245f47a24a72b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/.sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "displayName":"HLOD System Sample", 3 | "description": "Some Description", 4 | "createSeparatePackage": false 5 | } 6 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acdf6f4658e42e949826331ad3de3e9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fbb06219c83c694789cc51312a01536 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/Basic.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5745dbddd2769d42b5f3eed422a05dc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/HLOD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36ff5ffefca996343b44b741443bc30d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/HLOD/HLODRoot.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/HLOD/HLODRoot.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec79dad2656c190478668f83ebc4b98a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/Vegetation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e48dc3fe7602c914abada8cec9711f48 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84d504f88b876e446a3bf89e5b31cd33 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9837bc8d745123a41b80f8b8f1fd6b86 3 | timeCreated: 1499177334 4 | licenseType: Store 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge01_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e0ca4d3148aa024bb1733ebcef3389c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb3b7fbde3d6cbe469c673216b4cd274 3 | timeCreated: 1505916541 4 | licenseType: Store 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/Basic/TestResources/VegetationLarge02_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 725f2512a8a49b142be77daefa55189a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/CombineMaterial.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a74e03e820df6574a878393aedece8c1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/HLOD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99717183bbf5f994fa42a2ea6c920535 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/HLOD/CombineMaterialHLODRoot.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/HLOD/CombineMaterialHLODRoot.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90a76ab0c015cfc49983777d4fad1f3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/CombineMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43f3e85da2ee2884391e1e289abeb273 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/Vegetation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51107d11d31f33847a0786576e7853e3 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381ee7f175a4c254682903463a330ab5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f10a0682f46e55742b70ef119e929d99 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge01_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b02cff738f805aa45a60a173e5e25c19 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8528c0a16b828048b0ece2b21462bec 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/CombineMaterial/TestResources/VegetationLarge02_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/GameObject.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/GameObject.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/GameObject.hlod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9026ec6b53b77ce46905a497b742a0d9 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 4e7f2050f615fb9488bb4bc8978d695c, type: 3} 11 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d550bf12bae674ebea1499083e01e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/HLOD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e02563541c59c3459f0afd0d4bd0c9f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/HLOD/SimplifyHLODRoot.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/HLOD/SimplifyHLODRoot.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/SimplifyMesh.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9a68516eaa00b64ea992fb329a94b4f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8220b4c11814b0c44bd9cebef9ad6eec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/Vegetation.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb20f756ef8722f4c9757725dfa4646f 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f435880fff6437148ad0ad5c62ffb39c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8bbbb2f372116540978289515b1e954 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge01_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02.fbx -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74c0349472d38764f8fb44f681587125 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02_Albedo.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a71dadaa47db5a64494e20199298c887 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SimplifyMesh/TestResources/VegetationLarge02_Normals.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 253b8d71d52abb340b4ff5c68e8a9687 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ec389426d53fd546b95680926202d7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree0.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree0.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree1.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree1.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree2.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree2.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree3.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/Artifacts/HLOD_SubTree3.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/SpaceSplitter/QuadTreeSpaceSplitter.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 568c3f2f0c430fd45a26c7bb2504c525 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fa8ad7328e412640af79b56c1b74039 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/HLOD.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88834ab56b961bb4db03feb38a445af7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/HLOD/TerrainHLOD.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/HLOD/TerrainHLOD.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TerrainHLOD.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f791e70db4bd40840868dea01d6dd8d3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4567206767d01a84cae9259f3a02e2a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/BakedMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eba160784a3df84e8be678196f3262e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/GrassLayer.terrainlayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0b90e71b440d9d4c8fc6c70b623628c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 8574412962073106934 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/Soilsticks.terrainlayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5be3a0bccca86947af7a242048b27b7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 8574412962073106934 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/TestTerrain.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/TestTerrain.asset -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/TestTerrain.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8c59cc4d0e1a114abc9e41bbe71084e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_grass_basecolor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_grass_basecolor.tga -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_grass_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_grass_normal.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_soilsticks_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_soilsticks_basecolor.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_soilsticks_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TerrainHLOD/TestResource/terrain_soilsticks_normal.tif -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 342a6f8f5d226664ab95e417596a43d4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Artifacts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daa1147883d7c9149b17c106c65e69f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Artifacts/PlaceHolder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Artifacts/PlaceHolder.txt -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Artifacts/PlaceHolder.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 995c5c7bdfbf3cd40b2f180c1720eff9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/BakedTerrainPatch.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/BakedTerrainPatch.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/EditModeTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4412ac313ddd39a45a1c002823ab7f88 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/HLOD.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/HLOD.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 936b8e26cb3c64645a7a6e04759ba080 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e2e188dc5bae2041a154b9e699b2e35 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Blue.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/BlueT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd5968a912f991c4887b9f9940fb5ebe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8a7c97a2184178499a92bfdb94b76fa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Green.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/GreenT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf90bbe3b702f143b498b1198c09437 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f03e620878fe8440b072cd37251784b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Red.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/RedT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49d175b6344b8924eb46d1535a688b6c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/Yellow.png -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Materials/YellowT.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 249bda716c2bb0a4c902e177115e52a6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03af82b7c2a55ae44babcde33ad4befa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber.FBX -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber_LOD0.mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b77a240e44a3c488f77171fd2ff975 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber_LOD1.mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ae95dbc121d0d14aabc7988b110e2c1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber_LOD2.mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 833856331c3b4174885a491ffc93c6d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Mesh/RinNumber_LOD3.mesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa0ce99ef4c79bb4aaf886d29d04a64f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/PlayModeTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c4d3083c2ee37f49a591e7aef11e15b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b13fc55ba8ebbb4680c6e0225559fec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTargetTest_LODGroup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da90fd7d0d9a06f42a0bd84018fe158b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTargetTest_LODGroup2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cf850a3dbe959e418a2a71b6ac9925e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTargetTest_MeshRenderer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83cde407b9a47d54fbcd0891615f86cf 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTargetTest_MeshSetting.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c31909a6a6ebc458b674df4785e2c5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTestPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dc278160b2a6a645aef897c3823db76 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/HLODTestPrefabBaked.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bddc78199ad8cab4babcabb4061d1c20 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/MeshSettingMiniTest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e496964b699e1614eab29becad525a25 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/MeshSettingMiniTest2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0bfc02bd7d857444ae4a2663573d6c9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/MeshSettingMiniTest3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e0b0fe47e335094b94e608214528dbf 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/MeshSettingMiniTest4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32c238e5d8f1f104ba5ce863ed8661ef 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/MeshSettingTest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d424d76d40ee71e40bc7781e3b906d8b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e95ed284ddefb6a42a02ec1654c89153 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD0.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bc5212abfb55464b931eec38b8b82f1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD0T.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6807bef0a6fa5704ca192109912f7056 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD0T_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af851c12a7f996e478fa175b8cdbad5c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD0_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4be98e225bebf743997703253b1ad85 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9444ebe7945ee5468ec51019eec1ca5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD1T.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3bcf07e6a52276499dd7f8760bd98e2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD1T_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9631e4bcd6e47b24ebfe74a3e34fc273 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD1_2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d26ce7928b77fe438b768bba5ddd54b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b4afd9fa7243442b409d39108e0db1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD2T.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66136f08b5a6e4743b629a01ca35abd6 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a37a5b1563640494fbd4c9fba70b6459 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Prefabs/RinNumber_LOD3T.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 654892d07767484458ab5403f166781e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9455f375820ec044e8878d181a35470c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData/TestData_1.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afaa01829b5b7d146be506d37982dfb9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData/TestData_2.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f91898c7382b5b94b91b3dcf49977b21 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData/TestData_3.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d25871181767de40ae5f2db8af25361 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData/TestData_4.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb12d649d860ef42bbea3e3639ca31e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/RawTestData/TestData_5.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9da326b31f136e24db65749f77fccf36 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9674c08a0f4ab304faab2103dac8770d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/BakedTerrainPrefab.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a14e3b9d037514479503536e9d0f531 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/HLOD.hlod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/HLOD.hlod -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/TestTerrainData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/TestTerrainData.asset -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestAssets/Terrain/TestTerrainData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95b50ab56ce717140868e74eaac04add 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4becbfed433b9ad4f885ad5225633605 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_1_Albedo 128.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 147e9ae303da3cc448424a04ab143f7e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_1_Albedo.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7a6ac30001284a48a17ad25358e5a61 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_1_Normal.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 257349455021cd0488b55bc123d19551 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_2_Albedo 128.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1c460f2dd3359446afa84644c416c89 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_2_Albedo.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a0bd6a4213b7b4880bdc5b1fda8571 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_2_Normal.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f715de08499efd4aa61eb3114a84610 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_3_Albedo 128.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628b6dbf9e25d0a4a8c502bdb276d917 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_3_Albedo.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a908616222c6654daf2e41af0a1a173 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_3_Normal.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b598cda301a34ac468bca44f13723881 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_4_Albedo 128.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52451a020f14405438bc8da379d55677 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_4_Albedo.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278063a537ed23c4c89492abaa0f95f3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_4_Normal.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af50d913b0378c842a0d8eca728ec7b3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_Albedo 128.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ef586f05ed12f046b3b099cdd6283bc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_Albedo.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db6d8c747603083429635ed9141b53b9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/TestResult/HLOD_Normal.texture2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e48153a2f46c39c4bae0f1c6127912cb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cc2cb10637c48144bdbfeb1cc756bb6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfa24832f4adfa6418cfdd32c92a663d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/EditMode.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43f1fa48e03cf0a40874d4c848b2a795 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/EditorTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8291e99688f308b4cbca2a2d5ce31429 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/GetMeshRendererTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f665a193e284981a29975ac0df3607b 3 | timeCreated: 1653898244 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/HLODTargetTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbb36775b16355046acae32efcda7269 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/MaterialPreservingBatcherTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82f1e9d237e507e46a14bd4071aca766 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/MeshSetterMiniTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48d988386a0ab3e41a288a865dd8fd87 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/SimpleBatcherTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155ed5459b53584479b16537698ee973 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/SimplifierTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e8ad64207158b408734c8c743728c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/SpaceSplitterTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31c47198ce070954c83f28df8eb05068 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/EditMode/TerrainHLODTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1190f6569cc54ca4e877e62ec7dbdce8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/PlayMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e87b5dde33e4abc4facd411f6929d61e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/PlayMode/HLODMeshSetterTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae59e765a3fd4ff6a95a55666f9cf369 3 | timeCreated: 1654680871 -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/PlayMode/PlayMode.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afbfe3add2f5a204abca332c9b57407b 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/PlayMode/RuntimeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b33f176cad878ea4ea768e1713b091a5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/PlayMode/TerrainDestroyTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cd18a9e30d90ed43a92c7b08c9afc8e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/Tests.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tests", 3 | "optionalUnityReferences": [ 4 | "TestAssemblies" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ] 9 | } -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/Assets/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e30b867b992b08449990d209e9e75ef 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/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 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/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 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/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 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.2.19f1 2 | m_EditorVersionWithRevision: 2021.2.19f1 (602ecdbb2fb0) 3 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/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.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/Samples~/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 | } -------------------------------------------------------------------------------- /HLOD/com.unity.hlod/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aedbd27a261f1649875b3b4d9f07247 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a9049732fc033e4cb3d67d4c45bd99d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/BclHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5072fbed211eb9f43a3cd2805dd75ef7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/BufferExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9cf66041a027e94892d5014c2b905b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/BufferPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 423b228ed060b91458bc6d4e6aa0f570 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/CallbackAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53de2cb3784c9dd43aa6f30d7df072a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Compiler.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cdd9eb2afa3ed24480a6035f507aad4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Compiler/CompilerContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a58d20a1d8c7730499ef29a11532d07e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Compiler/CompilerDelegates.cs: -------------------------------------------------------------------------------- 1 | #if FEAT_COMPILER 2 | namespace ProtoBuf.Compiler 3 | { 4 | internal delegate void ProtoSerializer(object value, ProtoWriter dest); 5 | internal delegate object ProtoDeserializer(object value, ProtoReader source); 6 | } 7 | #endif -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Compiler/CompilerDelegates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b923d7ab8e95f740b059ca797596261 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Compiler/Local.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07d12d9a9b7d45b498e28b7c39bdca01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/DataFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 875f2f7de4b03ff409de70d226359e8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/DiscriminatedUnion.Serializable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a3aeec9c8a4c734e9ad022627502d1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/DiscriminatedUnion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab51817e163a1144bb8518368ba0a465 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Extensible.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc24b62dbd0b19642bce397e2b061aa0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ExtensibleUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc71d3f5e8f25ad41bb04ea933cee56e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/NetworkModule/Assets/TEngine/Libraries/Protobuf-net/GlobalSuppressions.cs -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/GlobalSuppressions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c110f96e5d6da4f498bcb6d5fa673be7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Helpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 227f762ea287cdf42a9293ea6c481ff8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/IExtensible.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9cd5092c5d6d9d4299fc0c88ebb9390 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/IExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8018fb363175787478148842225e7d16 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/IProtoInputT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6514bacfd3143a49a027f15434586f7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/IProtoOutputT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17c52d90924d69d4aaf31925ea2c90bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ImplicitFields.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b838f9e3c6536bc438e7c31f73c49160 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/KeyValuePairProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6221476e2339494cb5ee2bdc10ffd81 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a70a85c13dddce74d9a6395c440c9156 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/AttributeMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e64de7ef1358447843db562f78060f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/BasicList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be5fc2a1ac0731a44b0365987d942485 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/CallbackSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de0e7cb7bfcf4904aa31e910f241a8aa 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/MetaType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 170c607ac9d3b9346a8f4197e9e4d86a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/ProtoSyntax.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8df2b30e0bc1f274a8170e86c9d08f96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/RuntimeTypeModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e4440bfa9e92f84d81d48e6c5b0022e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/SubType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2912d37917b74846bdcffe3daa174d2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/TypeAddedEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1500030a10d2168408f75fe907ce0568 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/TypeFormatEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d27afe6e96660d1418a49cf374e84ad0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/TypeModel.InputOutput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d683bc55be70e8e46824012108beb15f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/TypeModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5eb182ec8bc8c5469c7819c0e3f7fb4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Meta/ValueMember.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba7fd2d1d1c883469e153f7ac5fdd86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/NetObjectCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ec59f6037764d43b3d585baf2343e2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/PrefixStyle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f16948bce1f2d4eb805ed31a2bb878 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoContractAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5d57dba877f0854c999b91a6514d93d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoConverterAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 399681000a748834f87d721feda5f459 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoEnumAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b3e030ed91e74b49b87bb0cd9acf139 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8629683d41766534fa00bcb5d1a324e0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoIgnoreAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b012b09d39a7c2445aba79ffee82b117 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoIncludeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40d89f2230d5a4f4badf122df4ed9fae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoMapAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d41a983b561e9043a8ce693aeb9c835 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoMemberAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 262c0823543b1b3499e2b67ca22f4e62 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd9c8ee218e18b14b9058926b6bbc8fe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ProtoWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63b2636e44dc3824ca2dbc35316e96ec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Protobuf-net.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b2d00d3e9d83de4e896711773579134 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/SerializationContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9361aaa524d95b14fbf398ba5bc075a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd7fc6a1f1a0e34b8a1bce7e93c4f61 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90bd17a736284764ca22da41661472de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ArrayDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3689dde3ac5fd544a9e66158c9713872 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/BlobSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c04427a4647d6314e82d8a63882dcb8b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/BooleanSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b73f749f97802947812dc66867ed1f5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ByteSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c17779da4eb6b1d489531294afcb2a32 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/CharSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 526090cb730f087469b7f20948f4932a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/CompiledSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90821da5568834a4682d1a42d7f66963 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/DateTimeSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfba0a8c252b2e54c96478c9e690c7d3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/DecimalSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80efe6cca6916ab46b430c27dc58369c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/DefaultValueDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad3a3e386e17b67488f858d409d3e8a7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/DoubleSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65b598b3ebee04946abf8957a0f92762 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/EnumSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef6c6d630a8f5ca449eec10513147563 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/FieldDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7c1c3141cd2fad47b3112747b44314a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/GuidSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 362fe2dd035b0cb4eaff2c7b7337fc66 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/IProtoSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6acc35442de99c94aade5d43c7992338 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/IProtoTypeSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6974491708512ec41b7a5f29805e4c69 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ISerializerProxy.cs: -------------------------------------------------------------------------------- 1 | #if !NO_RUNTIME 2 | 3 | namespace ProtoBuf.Serializers 4 | { 5 | interface ISerializerProxy 6 | { 7 | IProtoSerializer Serializer { get; } 8 | } 9 | } 10 | #endif -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ISerializerProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f717dd1190cbe174587e3bff7dd3dd76 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/Int16Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e45229312d2a4fe45b519e513326b708 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/Int32Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a7c49bc45156f442bfe84fc7eef04b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/Int64Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f2770a306f45046b6e8eab757c9188 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ListDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb7a73aa78c887c478b0af6d506337d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/MapDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 522b5c8a0fa5be14591bc9cbe3b194d3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/NetObjectSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd6edd815f76150449f39f7571679912 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/NullDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4728d79a9a96bde4097e4c599266a6e4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ParseableSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 562e4dd519901854fba22d511f594b82 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/PropertyDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b21fd2b2435fed4da28bd193e2ce80d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ProtoDecoratorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e9afbb9465ade140ab0fcd217ea0b66 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/ReflectedUriDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf63470b1970d84ead637b9ee2bface 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/SByteSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09de0f3e56d4834428cb8ba75929d216 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/SingleSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b89c111cae2d81469987d208a41af4b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/StringSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80c8f3efc5f697845b352b56780105ae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/SubItemSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d29a14abe6c62349930c948a6d438c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/SurrogateSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 517911a690de2bd4c97e81f35104a81a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/SystemTypeSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3b3869287521554a816dba994928f83 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/TagDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f807f0cbd3358f6479b78ab47c89ad48 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/TimeSpanSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88ce40638421a9d4abd295d84d1991e8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/TupleSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e57d0cd813299f40a1a32236d9931a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/TypeSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3f577c98285d56469b3eb1c9190e174 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/UInt16Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95fff5b2239c48c4cbb32346fee1be94 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/UInt32Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79149f5f69e868c45a17d389322e4bb7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/UInt64Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e549c20b3409c4a4dbf0e7fc25062c71 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/Serializers/UriDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b784c432eb5cbf742b3d96161e7c8d73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ServiceModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af34a7ba57dbd6340b8d3fa0bfdbd0a1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ServiceModel/ProtoEndpointBehavior.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6776c4cee4f69a94e9507afa458fdb50 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/ServiceModel/XmlProtoSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bca9bc75e9bb7c841b04b85204a0c9f6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/SubItemToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbb510795b4f3fa46aeecbd4521adfc0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/Protobuf-net/WireType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8403cbfeff31942997d1726a909e89 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fd5736c0715c8442b1b554d0666c6aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Demo~/DemoScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65671216fb4e42d4f89ed6eeca36060d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4589fa9979d007040b5a807b0304b1ff 3 | folderAsset: yes 4 | timeCreated: 1466577973 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Plugins/WebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a1a6aea65cc413faf8fb4421138b29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89cd0cf8603ef4069b2f6a5d79cbdbe1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb71bb4fb62590c4b975ef865b4df25f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Editor/SettingsWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c42d421cc4c34f3eae1fbd67f0dced0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Editor/UnityWebSocket.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee833745c57bd4369ab8f0ff380a96fa 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53e0ed9fdc3af42eba12a5b1b9a5f873 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3a2a8f55d4a47f599b1fa3ed612389 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Core/IWebSocket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37ee2146eb8c34ffab8b081a632b05cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Core/Opcode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eeac0ef90273544ebbae046672caf362 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Core/OpenEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityWebSocket 4 | { 5 | public class OpenEventArgs : EventArgs 6 | { 7 | internal OpenEventArgs() 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Core/Settings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e268303c7a605e343b1b132e5559f01f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Implementation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 396c66b333d624d539153070900bb73b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Implementation/NoWebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c110a898ae8b0b41bcf4da49c2b0425 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/Implementation/WebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fb37927ec1ce4def9c5e7cff883f9f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Libraries/UnityWebSocket/Scripts/Runtime/UnityWebSocket.Runtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b65d8710c3b04373a41cbf6b777ee65 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/AClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7826430e43d83408ecc6c99b502616 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Helper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5317f1f36344da8b8771299725da78b 3 | timeCreated: 1743505493 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Helper/MemoryStreamHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8d424871e1a490ea84f485532e7f693 3 | timeCreated: 1743505558 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Helper/ProtoBufHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aa519257bd145a1b840459ca6dc939f 3 | timeCreated: 1743505523 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Helper/RecyclableMemoryStream.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 383b9ef409089104caaa5bb3d3520cab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/INetworkModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1ddc0989120496c920ef486320bfca2 3 | timeCreated: 1744472432 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/NetworkModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dce5e59401e1344bbd9aabf981383b5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/NetworkType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae3a7f250dcd4f56ae588d24684dcc37 3 | timeCreated: 1742869605 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Package.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb02cc27ea1caf479c14cebf66a5dab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Package/DefaultNetPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77bfd5d9f7d9c79478b19cf99a103c47 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Package/INetPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00149ae4ecfb570418760bc2d359e7ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Package/INetPackageDecoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c549df6ac813a74b9fd787e3991a254 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/Package/INetPackageEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c4bce3e31495bc4483ab697d895fd62 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/RingBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcd2ef8207d26994497ffeb6e8f30d13 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/TCP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f491992d09ff2c1498b496c4746ff01a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/TCP/TcpChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 841a2723c2b01744fb4bcd170411249f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/TCP/TcpClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ae68566c8488c4099ef4652dd317c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/ThreadSyncContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dc088445ce08dc4e81bfe04a381b449 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/WebSocket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cc6af3a18184e05801382e1ceb83b15 3 | timeCreated: 1742869153 -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/WebSocket/WebSocketChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 847e6f843491b2144a3cf303f40d7f10 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Assets/TEngine/Runtime/Module/NetworkModule/WebSocket/WebSocketClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd794854e066f384998f8e80f86b9921 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /NetworkModule/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TEngine.Extension/34472e19c4678d87e5c8ed483a951cfd467ba628/NetworkModule/Info.png --------------------------------------------------------------------------------