├── CONFIG ├── DataTables │ ├── Datas │ │ ├── AssetsPath.xlsx │ │ ├── Collision.xlsx │ │ ├── Entity.xlsx │ │ ├── EntityGroup.xlsx │ │ ├── ItemTest.xlsx │ │ ├── PoolParam.xlsx │ │ ├── SkillInfo.xlsx │ │ ├── Sound.xlsx │ │ ├── SoundConstant.xlsx │ │ ├── SoundGroup.xlsx │ │ ├── SoundParam.xlsx │ │ ├── UIEntity.xlsx │ │ ├── __beans__.xlsx │ │ ├── __enums__.xlsx │ │ ├── __tables__.xlsx │ │ └── l10n │ │ │ ├── Language_en.xlsx │ │ │ ├── Text │ │ │ └── language.txt │ │ │ └── language_ch.xlsx │ ├── Defines │ │ └── l10n.xml │ └── luban.conf ├── Luban │ ├── CommandLine.dll │ ├── ExcelDataReader.dll │ ├── Google.Protobuf.dll │ ├── Luban.Bson.dll │ ├── Luban.Bson.pdb │ ├── Luban.CSharp.dll │ ├── Luban.CSharp.pdb │ ├── Luban.Core.dll │ ├── Luban.Core.pdb │ ├── Luban.Cpp.dll │ ├── Luban.Cpp.pdb │ ├── Luban.DataLoader.Builtin.dll │ ├── Luban.DataLoader.Builtin.pdb │ ├── Luban.DataTarget.Builtin.dll │ ├── Luban.DataTarget.Builtin.pdb │ ├── Luban.DataValidator.Builtin.dll │ ├── Luban.DataValidator.Builtin.pdb │ ├── Luban.FlatBuffers.dll │ ├── Luban.FlatBuffers.pdb │ ├── Luban.Gdscript.dll │ ├── Luban.Gdscript.pdb │ ├── Luban.Golang.dll │ ├── Luban.Golang.pdb │ ├── Luban.Java.dll │ ├── Luban.Java.pdb │ ├── Luban.L10N.dll │ ├── Luban.L10N.pdb │ ├── Luban.Lua.dll │ ├── Luban.Lua.pdb │ ├── Luban.MsgPack.dll │ ├── Luban.MsgPack.pdb │ ├── Luban.Protobuf.dll │ ├── Luban.Protobuf.pdb │ ├── Luban.Python.dll │ ├── Luban.Python.pdb │ ├── Luban.Schema.Builtin.dll │ ├── Luban.Schema.Builtin.pdb │ ├── Luban.Typescript.dll │ ├── Luban.Typescript.pdb │ ├── Luban.deps.json │ ├── Luban.dll │ ├── Luban.exe │ ├── Luban.pdb │ ├── Luban.runtimeconfig.json │ ├── MessagePack.Annotations.dll │ ├── MessagePack.dll │ ├── Microsoft.NET.StringTools.dll │ ├── NLog.dll │ ├── Neo.Lua.dll │ ├── Newtonsoft.Json.Bson.dll │ ├── Newtonsoft.Json.dll │ ├── Scriban.dll │ ├── Templates │ │ ├── common │ │ │ ├── cpp │ │ │ │ └── enum.sbn │ │ │ ├── cs │ │ │ │ └── enum.sbn │ │ │ ├── go │ │ │ │ └── enum.sbn │ │ │ ├── java │ │ │ │ └── enum.sbn │ │ │ └── ts │ │ │ │ └── enum.sbn │ │ ├── cpp-bin │ │ │ ├── bean.sbn │ │ │ ├── schema_cpp.sbn │ │ │ ├── schema_h.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── cs-bin │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── cs-dotnet-json │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── cs-editor-json │ │ │ ├── bean.sbn │ │ │ └── enum.sbn │ │ ├── cs-simple-json │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── flatbuffers │ │ │ └── schema.sbn │ │ ├── gdscript-json │ │ │ └── schema.sbn │ │ ├── go-bin │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── go-json │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── java-bin │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── java-json │ │ │ ├── bean.sbn │ │ │ ├── table.sbn │ │ │ └── tables.sbn │ │ ├── lua-bin │ │ │ └── schema.sbn │ │ ├── lua-lua │ │ │ └── schema.sbn │ │ ├── pb │ │ │ └── schema.sbn │ │ ├── python-json │ │ │ └── schema.sbn │ │ └── typescript-json │ │ │ └── schema.sbn │ ├── Ude.NetStandard.dll │ ├── YamlDotNet.NetCore.dll │ └── de │ │ └── Neo.Lua.resources.dll ├── Protobuf3_bin │ ├── gen_language_list.bat │ ├── gen_language_list.sh │ ├── gen_pb_schema_data.bat │ ├── gen_pb_schema_data.sh │ ├── pb_bin │ │ ├── AssetsPathConfig_pb.bytes │ │ ├── CollisionConfig_pb.bytes │ │ ├── EntityConfig_pb.bytes │ │ ├── EntityGroupConfig_pb.bytes │ │ ├── ItemTestConfig_pb.bytes │ │ ├── PoolParamConfig_pb.bytes │ │ ├── SkillInfoConfig_pb.bytes │ │ ├── SoundConfig_pb.bytes │ │ ├── SoundConstantConfig_pb.bytes │ │ ├── SoundGroupConfig_pb.bytes │ │ ├── SoundParamConfig_pb.bytes │ │ ├── UIEntityConfig_pb.bytes │ │ ├── l10n_language_ch.bytes │ │ └── l10n_language_en.bytes │ ├── pb_proto │ │ ├── Schema.cs │ │ └── schema.proto │ └── protoc.exe ├── buildLuban.sh └── 说明.txt ├── HybridCLR_UNITY ├── Assets │ ├── AssetBundleCollectorSetting.asset │ ├── AssetBundleCollectorSetting.asset.meta │ ├── Buildin.meta │ ├── Buildin │ │ ├── effects.meta │ │ ├── effects │ │ │ ├── Mutant.fbx │ │ │ └── Mutant.fbx.meta │ │ ├── materials.meta │ │ ├── materials │ │ │ ├── PuHuiTi-Medium Atlas Material_d.mat │ │ │ └── PuHuiTi-Medium Atlas Material_d.mat.meta │ │ ├── prefab.meta │ │ ├── prefab │ │ │ ├── TestForm.prefab │ │ │ ├── TestForm.prefab.meta │ │ │ ├── UILoadForm.prefab │ │ │ └── UILoadForm.prefab.meta │ │ ├── shader.meta │ │ ├── shader │ │ │ ├── CircleGuidanceShader.shader │ │ │ ├── CircleGuidanceShader.shader.meta │ │ │ ├── RectGuidanceShader.shader │ │ │ ├── RectGuidanceShader.shader.meta │ │ │ ├── Shadow.shader │ │ │ ├── Shadow.shader.meta │ │ │ ├── SpriteUI_Alpha.shader │ │ │ ├── SpriteUI_Alpha.shader.meta │ │ │ ├── UI_BGBlur.shader │ │ │ ├── UI_BGBlur.shader.meta │ │ │ ├── sv.json │ │ │ ├── sv.json.meta │ │ │ ├── sv.shadervariants │ │ │ └── sv.shadervariants.meta │ │ ├── sprites.meta │ │ ├── sprites │ │ │ ├── atlas.meta │ │ │ ├── atlas │ │ │ │ ├── chat.spriteatlas │ │ │ │ ├── chat.spriteatlas.meta │ │ │ │ ├── main.spriteatlas │ │ │ │ └── main.spriteatlas.meta │ │ │ ├── sprite.meta │ │ │ └── sprite │ │ │ │ ├── chat.meta │ │ │ │ ├── chat │ │ │ │ ├── chat_ico_emoji_10.png │ │ │ │ ├── chat_ico_emoji_10.png.meta │ │ │ │ ├── chat_ico_emoji_3.png │ │ │ │ ├── chat_ico_emoji_3.png.meta │ │ │ │ ├── chat_ico_emoji_4.png │ │ │ │ ├── chat_ico_emoji_4.png.meta │ │ │ │ ├── chat_ico_emoji_5.png │ │ │ │ ├── chat_ico_emoji_5.png.meta │ │ │ │ ├── chat_ico_emoji_6.png │ │ │ │ ├── chat_ico_emoji_6.png.meta │ │ │ │ ├── chat_ico_emoji_7.png │ │ │ │ ├── chat_ico_emoji_7.png.meta │ │ │ │ ├── chat_ico_emoji_8.png │ │ │ │ ├── chat_ico_emoji_8.png.meta │ │ │ │ ├── chat_ico_emoji_9.png │ │ │ │ └── chat_ico_emoji_9.png.meta │ │ │ │ ├── main.meta │ │ │ │ └── main │ │ │ │ ├── main_bookmark_ico_write.png │ │ │ │ ├── main_bookmark_ico_write.png.meta │ │ │ │ ├── main_bt_select_arrow.png │ │ │ │ ├── main_bt_select_arrow.png.meta │ │ │ │ ├── main_btn_manage_city.png │ │ │ │ ├── main_btn_manage_city.png.meta │ │ │ │ ├── main_campaign_bg_6.png │ │ │ │ └── main_campaign_bg_6.png.meta │ │ ├── tmp.meta │ │ └── tmp │ │ │ ├── PuHuiTi-Heavy.asset │ │ │ ├── PuHuiTi-Heavy.asset.meta │ │ │ ├── PuHuiTi-Medium.asset │ │ │ ├── PuHuiTi-Medium.asset.meta │ │ │ ├── PuHuiTi-Regular.asset │ │ │ ├── PuHuiTi-Regular.asset.meta │ │ │ ├── emoji one.asset │ │ │ └── emoji one.asset.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AutoBuild.cs │ │ ├── AutoBuild.cs.meta │ │ ├── BaseEditorInspector.cs │ │ ├── BaseEditorInspector.cs.meta │ │ ├── DefaultAssetEditor.cs │ │ ├── DefaultAssetEditor.cs.meta │ │ ├── EditorTool.cs │ │ ├── EditorTool.cs.meta │ │ ├── HybridCLREditor.cs │ │ ├── HybridCLREditor.cs.meta │ │ ├── LogRedirect.cs │ │ ├── LogRedirect.cs.meta │ │ ├── MeshRenderEditor.cs │ │ ├── MeshRenderEditor.cs.meta │ │ ├── ReferenceFinder.meta │ │ ├── ReferenceFinder │ │ │ ├── AssetTreeView.cs │ │ │ ├── AssetTreeView.cs.meta │ │ │ ├── ReferenceFinderData.cs │ │ │ ├── ReferenceFinderData.cs.meta │ │ │ ├── ReferenceFinderWindow.cs │ │ │ └── ReferenceFinderWindow.cs.meta │ │ ├── collectConfig.meta │ │ └── collectConfig │ │ │ ├── extra_Codes.asset │ │ │ ├── extra_Codes.asset.meta │ │ │ ├── extra_Config.asset │ │ │ ├── extra_Config.asset.meta │ │ │ ├── extra_Video.asset │ │ │ └── extra_Video.asset.meta │ ├── Framework.meta │ ├── Framework │ │ ├── Base.meta │ │ ├── Base │ │ │ ├── DefaultTextHelper.cs │ │ │ ├── DefaultTextHelper.cs.meta │ │ │ ├── DinLogHelper.cs │ │ │ ├── DinLogHelper.cs.meta │ │ │ ├── EventPool.meta │ │ │ ├── EventPool │ │ │ │ ├── BaseEventArgs.cs │ │ │ │ ├── BaseEventArgs.cs.meta │ │ │ │ ├── EventPool.Event.cs │ │ │ │ ├── EventPool.Event.cs.meta │ │ │ │ ├── EventPool.cs │ │ │ │ ├── EventPool.cs.meta │ │ │ │ ├── EventPoolMode.cs │ │ │ │ └── EventPoolMode.cs.meta │ │ │ ├── GameFrameworkEventArgs.cs │ │ │ ├── GameFrameworkEventArgs.cs.meta │ │ │ ├── GameFrameworkException.cs │ │ │ ├── GameFrameworkException.cs.meta │ │ │ ├── GameFrameworkLinkedList.cs │ │ │ ├── GameFrameworkLinkedList.cs.meta │ │ │ ├── GameFrameworkLinkedListRange.cs │ │ │ ├── GameFrameworkLinkedListRange.cs.meta │ │ │ ├── GameFrameworkLog.ILogHelper.cs │ │ │ ├── GameFrameworkLog.ILogHelper.cs.meta │ │ │ ├── GameFrameworkLog.cs │ │ │ ├── GameFrameworkLog.cs.meta │ │ │ ├── GameFrameworkMultiDictionary.cs │ │ │ ├── GameFrameworkMultiDictionary.cs.meta │ │ │ ├── Singleton.cs │ │ │ ├── Singleton.cs.meta │ │ │ ├── TLogger.cs │ │ │ ├── TLogger.cs.meta │ │ │ ├── Utility.Assembly.cs │ │ │ ├── Utility.Assembly.cs.meta │ │ │ ├── Utility.Text.ITextHelper.cs │ │ │ ├── Utility.Text.ITextHelper.cs.meta │ │ │ ├── Utility.Text.cs │ │ │ └── Utility.Text.cs.meta │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── BaseGameComponent.cs │ │ │ ├── BaseGameComponent.cs.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ConfigComponent.cs │ │ │ │ ├── ConfigComponent.cs.meta │ │ │ │ ├── ConfigManager.cs │ │ │ │ ├── ConfigManager.cs.meta │ │ │ │ ├── IConfigManager.cs │ │ │ │ └── IConfigManager.cs.meta │ │ │ ├── DataStruct.meta │ │ │ ├── DataStruct │ │ │ │ ├── TypeNamePair.cs │ │ │ │ └── TypeNamePair.cs.meta │ │ │ ├── Event.meta │ │ │ ├── Event │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── EventManager.cs │ │ │ │ │ ├── EventManager.cs.meta │ │ │ │ │ ├── IEventManager.cs │ │ │ │ │ └── IEventManager.cs.meta │ │ │ │ ├── EventComponent.cs │ │ │ │ └── EventComponent.cs.meta │ │ │ ├── Fsm.meta │ │ │ ├── Fsm │ │ │ │ ├── Fsm.cs │ │ │ │ ├── Fsm.cs.meta │ │ │ │ ├── FsmBase.cs │ │ │ │ ├── FsmBase.cs.meta │ │ │ │ ├── FsmComponent.cs │ │ │ │ ├── FsmComponent.cs.meta │ │ │ │ ├── FsmManager.cs │ │ │ │ ├── FsmManager.cs.meta │ │ │ │ ├── FsmState.cs │ │ │ │ ├── FsmState.cs.meta │ │ │ │ ├── IFsm.cs │ │ │ │ ├── IFsm.cs.meta │ │ │ │ ├── IFsmManager.cs │ │ │ │ └── IFsmManager.cs.meta │ │ │ ├── GameFrameworkAction.cs │ │ │ ├── GameFrameworkAction.cs.meta │ │ │ ├── HotFix.meta │ │ │ ├── HotFix │ │ │ │ ├── HotFixComponent.cs │ │ │ │ ├── HotFixComponent.cs.meta │ │ │ │ ├── MonoHot.meta │ │ │ │ └── MonoHot │ │ │ │ │ ├── MonoHot.asmdef │ │ │ │ │ ├── MonoHot.asmdef.meta │ │ │ │ │ ├── MonoHotEnter.cs │ │ │ │ │ └── MonoHotEnter.cs.meta │ │ │ ├── Net.meta │ │ │ ├── Net │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── AddressFamily.cs │ │ │ │ │ ├── AddressFamily.cs.meta │ │ │ │ │ ├── IMessageHandler.cs │ │ │ │ │ ├── IMessageHandler.cs.meta │ │ │ │ │ ├── INetworkChannel.cs │ │ │ │ │ ├── INetworkChannel.cs.meta │ │ │ │ │ ├── INetworkChannelHelper.cs │ │ │ │ │ ├── INetworkChannelHelper.cs.meta │ │ │ │ │ ├── INetworkManager.cs │ │ │ │ │ ├── INetworkManager.cs.meta │ │ │ │ │ ├── NetworkClosedEventArgs.cs │ │ │ │ │ ├── NetworkClosedEventArgs.cs.meta │ │ │ │ │ ├── NetworkConnectedEventArgs.cs │ │ │ │ │ ├── NetworkConnectedEventArgs.cs.meta │ │ │ │ │ ├── NetworkCustomErrorEventArgs.cs │ │ │ │ │ ├── NetworkCustomErrorEventArgs.cs.meta │ │ │ │ │ ├── NetworkErrorCode.cs │ │ │ │ │ ├── NetworkErrorCode.cs.meta │ │ │ │ │ ├── NetworkErrorEventArgs.cs │ │ │ │ │ ├── NetworkErrorEventArgs.cs.meta │ │ │ │ │ ├── NetworkMissHeartBeatEventArgs.cs │ │ │ │ │ ├── NetworkMissHeartBeatEventArgs.cs.meta │ │ │ │ │ ├── ServiceType.cs │ │ │ │ │ └── ServiceType.cs.meta │ │ │ │ ├── KCP.meta │ │ │ │ ├── KCP │ │ │ │ │ ├── FakeKcpIO.cs │ │ │ │ │ ├── FakeKcpIO.cs.meta │ │ │ │ │ ├── IKcpInterface.cs │ │ │ │ │ ├── IKcpInterface.cs.meta │ │ │ │ │ ├── IKcpSegment.cs │ │ │ │ │ ├── IKcpSegment.cs.meta │ │ │ │ │ ├── Kcp.cs │ │ │ │ │ ├── Kcp.cs.meta │ │ │ │ │ ├── KcpCore.cs │ │ │ │ │ ├── KcpCore.cs.meta │ │ │ │ │ ├── KcpIO.cs │ │ │ │ │ ├── KcpIO.cs.meta │ │ │ │ │ ├── KcpOutputWriter.cs │ │ │ │ │ ├── KcpOutputWriter.cs.meta │ │ │ │ │ ├── KcpSegment.cs │ │ │ │ │ ├── KcpSegment.cs.meta │ │ │ │ │ ├── KcpTrace.cs │ │ │ │ │ ├── KcpTrace.cs.meta │ │ │ │ │ ├── SegManager.cs │ │ │ │ │ ├── SegManager.cs.meta │ │ │ │ │ ├── Utility.cs │ │ │ │ │ └── Utility.cs.meta │ │ │ │ ├── KcpNetworkChannel.cs │ │ │ │ ├── KcpNetworkChannel.cs.meta │ │ │ │ ├── NetworkChannelBase.cs │ │ │ │ ├── NetworkChannelBase.cs.meta │ │ │ │ ├── NetworkClosedEventArgs.cs │ │ │ │ ├── NetworkClosedEventArgs.cs.meta │ │ │ │ ├── NetworkComponent.cs │ │ │ │ ├── NetworkComponent.cs.meta │ │ │ │ ├── NetworkConnectedEventArgs.cs │ │ │ │ ├── NetworkConnectedEventArgs.cs.meta │ │ │ │ ├── NetworkCustomErrorEventArgs.cs │ │ │ │ ├── NetworkCustomErrorEventArgs.cs.meta │ │ │ │ ├── NetworkErrorEventArgs.cs │ │ │ │ ├── NetworkErrorEventArgs.cs.meta │ │ │ │ ├── NetworkManager.HeartBeatState.cs │ │ │ │ ├── NetworkManager.HeartBeatState.cs.meta │ │ │ │ ├── NetworkManager.cs │ │ │ │ ├── NetworkManager.cs.meta │ │ │ │ ├── NetworkMissHeartBeatEventArgs.cs │ │ │ │ ├── NetworkMissHeartBeatEventArgs.cs.meta │ │ │ │ ├── TcpNetworkChannel.cs │ │ │ │ ├── TcpNetworkChannel.cs.meta │ │ │ │ ├── Telepathy.meta │ │ │ │ └── Telepathy │ │ │ │ │ ├── Client.cs │ │ │ │ │ ├── Client.cs.meta │ │ │ │ │ ├── Common.cs │ │ │ │ │ ├── Common.cs.meta │ │ │ │ │ ├── ConnectionState.cs │ │ │ │ │ ├── ConnectionState.cs.meta │ │ │ │ │ ├── EventType.cs │ │ │ │ │ ├── EventType.cs.meta │ │ │ │ │ ├── MagnificentReceivePipe.cs │ │ │ │ │ ├── MagnificentReceivePipe.cs.meta │ │ │ │ │ ├── MagnificentSendPipe.cs │ │ │ │ │ ├── MagnificentSendPipe.cs.meta │ │ │ │ │ ├── NetworkStreamExtensions.cs │ │ │ │ │ ├── NetworkStreamExtensions.cs.meta │ │ │ │ │ ├── Pool.cs │ │ │ │ │ ├── Pool.cs.meta │ │ │ │ │ ├── ThreadFunctions.cs │ │ │ │ │ ├── ThreadFunctions.cs.meta │ │ │ │ │ ├── Utils.cs │ │ │ │ │ └── Utils.cs.meta │ │ │ ├── ObjectPool.meta │ │ │ ├── ObjectPool │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── IObjectPool.cs │ │ │ │ │ ├── IObjectPool.cs.meta │ │ │ │ │ ├── IObjectPoolManager.cs │ │ │ │ │ ├── IObjectPoolManager.cs.meta │ │ │ │ │ ├── ObjectBase.cs │ │ │ │ │ ├── ObjectBase.cs.meta │ │ │ │ │ ├── ObjectInfo.cs │ │ │ │ │ ├── ObjectInfo.cs.meta │ │ │ │ │ ├── ObjectPoolBase.cs │ │ │ │ │ ├── ObjectPoolBase.cs.meta │ │ │ │ │ ├── ObjectPoolManager.Object.cs │ │ │ │ │ ├── ObjectPoolManager.Object.cs.meta │ │ │ │ │ ├── ObjectPoolManager.ObjectPool.cs │ │ │ │ │ ├── ObjectPoolManager.ObjectPool.cs.meta │ │ │ │ │ ├── ObjectPoolManager.cs │ │ │ │ │ ├── ObjectPoolManager.cs.meta │ │ │ │ │ ├── ReleaseObjectFilterCallback.cs │ │ │ │ │ └── ReleaseObjectFilterCallback.cs.meta │ │ │ │ ├── ObjectPool.cs │ │ │ │ ├── ObjectPool.cs.meta │ │ │ │ ├── ObjectPoolComponent.cs │ │ │ │ ├── ObjectPoolComponent.cs.meta │ │ │ │ ├── ViewRefData.cs │ │ │ │ └── ViewRefData.cs.meta │ │ │ ├── Procedure.meta │ │ │ ├── Procedure │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── Init.ProcedureComponentInspector.cs │ │ │ │ │ └── Init.ProcedureComponentInspector.cs.meta │ │ │ │ ├── GameInit.meta │ │ │ │ ├── GameInit │ │ │ │ │ ├── ProcedureComponent.cs │ │ │ │ │ ├── ProcedureComponent.cs.meta │ │ │ │ │ ├── ProcedureCreateDownloader.cs │ │ │ │ │ ├── ProcedureCreateDownloader.cs.meta │ │ │ │ │ ├── ProcedureDelivery.cs │ │ │ │ │ ├── ProcedureDelivery.cs.meta │ │ │ │ │ ├── ProcedureDownloadOver.cs │ │ │ │ │ ├── ProcedureDownloadOver.cs.meta │ │ │ │ │ ├── ProcedureInitPackage.cs │ │ │ │ │ ├── ProcedureInitPackage.cs.meta │ │ │ │ │ ├── ProcedureInitResources.cs │ │ │ │ │ ├── ProcedureInitResources.cs.meta │ │ │ │ │ ├── ProcedurePreload.cs │ │ │ │ │ ├── ProcedurePreload.cs.meta │ │ │ │ │ ├── ProcedureUpdateManifest.cs │ │ │ │ │ ├── ProcedureUpdateManifest.cs.meta │ │ │ │ │ ├── ProcedureUpdateVersion.cs │ │ │ │ │ └── ProcedureUpdateVersion.cs.meta │ │ │ │ ├── IProcedureManager.cs │ │ │ │ ├── IProcedureManager.cs.meta │ │ │ │ ├── ProcedureBase.cs │ │ │ │ ├── ProcedureBase.cs.meta │ │ │ │ ├── ProcedureManager.cs │ │ │ │ └── ProcedureManager.cs.meta │ │ │ ├── ReferencePool.meta │ │ │ ├── ReferencePool │ │ │ │ ├── IReference.cs │ │ │ │ ├── IReference.cs.meta │ │ │ │ ├── ReferencePool.ReferenceCollection.cs │ │ │ │ ├── ReferencePool.ReferenceCollection.cs.meta │ │ │ │ ├── ReferencePool.cs │ │ │ │ ├── ReferencePool.cs.meta │ │ │ │ ├── ReferencePoolInfo.cs │ │ │ │ └── ReferencePoolInfo.cs.meta │ │ │ ├── Resource.meta │ │ │ ├── Resource │ │ │ │ ├── DefaultDeliveryQueryServices.cs │ │ │ │ ├── DefaultDeliveryQueryServices.cs.meta │ │ │ │ ├── GameDecryptionServices.cs │ │ │ │ ├── GameDecryptionServices.cs.meta │ │ │ │ ├── GameRemoteServices.cs │ │ │ │ ├── GameRemoteServices.cs.meta │ │ │ │ ├── IResourceManager.cs │ │ │ │ ├── IResourceManager.cs.meta │ │ │ │ ├── LoadAssetCallbacks.cs │ │ │ │ ├── LoadAssetCallbacks.cs.meta │ │ │ │ ├── ResourceComponent.cs │ │ │ │ ├── ResourceComponent.cs.meta │ │ │ │ ├── ResourceHelper.cs │ │ │ │ ├── ResourceHelper.cs.meta │ │ │ │ ├── ResourceManager.cs │ │ │ │ ├── ResourceManager.cs.meta │ │ │ │ ├── StreamingAssetsHelper.meta │ │ │ │ ├── StreamingAssetsHelper │ │ │ │ │ ├── BuildinFileManifest.cs │ │ │ │ │ ├── BuildinFileManifest.cs.meta │ │ │ │ │ ├── StreamingAssetsDefine.cs │ │ │ │ │ ├── StreamingAssetsDefine.cs.meta │ │ │ │ │ ├── StreamingAssetsHelper.cs │ │ │ │ │ └── StreamingAssetsHelper.cs.meta │ │ │ │ ├── Update.meta │ │ │ │ ├── Update │ │ │ │ │ ├── UILoadForm.cs │ │ │ │ │ ├── UILoadForm.cs.meta │ │ │ │ │ ├── UILoadTip.cs │ │ │ │ │ ├── UILoadTip.cs.meta │ │ │ │ │ ├── UILoadUpdate.cs │ │ │ │ │ └── UILoadUpdate.cs.meta │ │ │ │ ├── YooAssetsLogger.cs │ │ │ │ └── YooAssetsLogger.cs.meta │ │ │ ├── Timer.meta │ │ │ ├── Timer │ │ │ │ ├── TimerComponent.cs │ │ │ │ └── TimerComponent.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── CloseUIFormCompleteEventArgs.cs │ │ │ │ │ ├── CloseUIFormCompleteEventArgs.cs.meta │ │ │ │ │ ├── IUIForm.cs │ │ │ │ │ ├── IUIForm.cs.meta │ │ │ │ │ ├── IUIFormHelper.cs │ │ │ │ │ ├── IUIFormHelper.cs.meta │ │ │ │ │ ├── IUIGroup.cs │ │ │ │ │ ├── IUIGroup.cs.meta │ │ │ │ │ ├── IUIGroupHelper.cs │ │ │ │ │ ├── IUIGroupHelper.cs.meta │ │ │ │ │ ├── IUIManager.cs │ │ │ │ │ ├── IUIManager.cs.meta │ │ │ │ │ ├── OpenUIFormFailureEventArgs.cs │ │ │ │ │ ├── OpenUIFormFailureEventArgs.cs.meta │ │ │ │ │ ├── OpenUIFormSuccessEventArgs.cs │ │ │ │ │ ├── OpenUIFormSuccessEventArgs.cs.meta │ │ │ │ │ ├── OpenUIFormUpdateEventArgs.cs │ │ │ │ │ ├── OpenUIFormUpdateEventArgs.cs.meta │ │ │ │ │ ├── UIFormHelperBase.cs │ │ │ │ │ ├── UIFormHelperBase.cs.meta │ │ │ │ │ ├── UIGroupHelperBase.cs │ │ │ │ │ ├── UIGroupHelperBase.cs.meta │ │ │ │ │ ├── UIManager.OpenUIFormInfo.cs │ │ │ │ │ ├── UIManager.OpenUIFormInfo.cs.meta │ │ │ │ │ ├── UIManager.UIFormInstanceObject.cs │ │ │ │ │ ├── UIManager.UIFormInstanceObject.cs.meta │ │ │ │ │ ├── UIManager.UIGroup.UIFormInfo.cs │ │ │ │ │ ├── UIManager.UIGroup.UIFormInfo.cs.meta │ │ │ │ │ ├── UIManager.UIGroup.cs │ │ │ │ │ ├── UIManager.UIGroup.cs.meta │ │ │ │ │ ├── UIManager.cs │ │ │ │ │ └── UIManager.cs.meta │ │ │ │ ├── CloseUIFormCompleteEventArgs.cs │ │ │ │ ├── CloseUIFormCompleteEventArgs.cs.meta │ │ │ │ ├── DefaultUIFormHelper.cs │ │ │ │ ├── DefaultUIFormHelper.cs.meta │ │ │ │ ├── DefaultUIGroupHelper.cs │ │ │ │ ├── DefaultUIGroupHelper.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── UIEditorTool.cs │ │ │ │ │ ├── UIEditorTool.cs.meta │ │ │ │ │ ├── UIInterfaceEditor.cs │ │ │ │ │ └── UIInterfaceEditor.cs.meta │ │ │ │ ├── OpenUIFormFailureEventArgs.cs │ │ │ │ ├── OpenUIFormFailureEventArgs.cs.meta │ │ │ │ ├── OpenUIFormSuccessEventArgs.cs │ │ │ │ ├── OpenUIFormSuccessEventArgs.cs.meta │ │ │ │ ├── OpenUIFormUpdateEventArgs.cs │ │ │ │ ├── OpenUIFormUpdateEventArgs.cs.meta │ │ │ │ ├── UGUI.meta │ │ │ │ ├── UGUI │ │ │ │ │ ├── SafeAreaRect.cs │ │ │ │ │ ├── SafeAreaRect.cs.meta │ │ │ │ │ ├── UIInterface.cs │ │ │ │ │ └── UIInterface.cs.meta │ │ │ │ ├── UIComponent.UIGroup.cs │ │ │ │ ├── UIComponent.UIGroup.cs.meta │ │ │ │ ├── UIComponent.cs │ │ │ │ ├── UIComponent.cs.meta │ │ │ │ ├── UIForm.cs │ │ │ │ ├── UIForm.cs.meta │ │ │ │ ├── UIFormLogic.cs │ │ │ │ └── UIFormLogic.cs.meta │ │ │ ├── Variable.meta │ │ │ └── Variable │ │ │ │ ├── GenericVariable.cs │ │ │ │ ├── GenericVariable.cs.meta │ │ │ │ ├── Variable.cs │ │ │ │ └── Variable.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ConfigComponentInspector.cs │ │ │ ├── ConfigComponentInspector.cs.meta │ │ │ ├── GameEnterInspector.cs │ │ │ ├── GameEnterInspector.cs.meta │ │ │ ├── GameFrameworkInspector.cs │ │ │ ├── GameFrameworkInspector.cs.meta │ │ │ ├── HelperInfo.cs │ │ │ ├── HelperInfo.cs.meta │ │ │ ├── NetworkComponentInspector.cs │ │ │ ├── NetworkComponentInspector.cs.meta │ │ │ ├── Type.cs │ │ │ ├── Type.cs.meta │ │ │ ├── UIComponentInspector.cs │ │ │ └── UIComponentInspector.cs.meta │ │ ├── GameEnter.cs │ │ ├── GameEnter.cs.meta │ │ ├── Google.Protobuf.meta │ │ ├── Google.Protobuf │ │ │ ├── ByteArray.cs │ │ │ ├── ByteArray.cs.meta │ │ │ ├── ByteString.cs │ │ │ ├── ByteString.cs.meta │ │ │ ├── CodedInputStream.cs │ │ │ ├── CodedInputStream.cs.meta │ │ │ ├── CodedOutputStream.ComputeSize.cs │ │ │ ├── CodedOutputStream.ComputeSize.cs.meta │ │ │ ├── CodedOutputStream.cs │ │ │ ├── CodedOutputStream.cs.meta │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ │ ├── Lists.cs │ │ │ │ ├── Lists.cs.meta │ │ │ │ ├── MapField.cs │ │ │ │ ├── MapField.cs.meta │ │ │ │ ├── ProtobufEqualityComparers.cs │ │ │ │ ├── ProtobufEqualityComparers.cs.meta │ │ │ │ ├── RepeatedField.cs │ │ │ │ └── RepeatedField.cs.meta │ │ │ ├── ExtensionValue.cs │ │ │ ├── ExtensionValue.cs.meta │ │ │ ├── FieldCodec.cs │ │ │ ├── FieldCodec.cs.meta │ │ │ ├── IDeepCloneable.cs │ │ │ ├── IDeepCloneable.cs.meta │ │ │ ├── IMessage.cs │ │ │ ├── IMessage.cs.meta │ │ │ ├── InvalidProtocolBufferException.cs │ │ │ ├── InvalidProtocolBufferException.cs.meta │ │ │ ├── LimitedInputStream.cs │ │ │ ├── LimitedInputStream.cs.meta │ │ │ ├── MessageExtensions.cs │ │ │ ├── MessageExtensions.cs.meta │ │ │ ├── MessageParser.cs │ │ │ ├── MessageParser.cs.meta │ │ │ ├── ObjectIntPair.cs │ │ │ ├── ObjectIntPair.cs.meta │ │ │ ├── ParseContext.cs │ │ │ ├── ParseContext.cs.meta │ │ │ ├── ParserInternalState.cs │ │ │ ├── ParserInternalState.cs.meta │ │ │ ├── ParsingPrimitives.cs │ │ │ ├── ParsingPrimitives.cs.meta │ │ │ ├── ParsingPrimitivesMessages.cs │ │ │ ├── ParsingPrimitivesMessages.cs.meta │ │ │ ├── ProtoPreconditions.cs │ │ │ ├── ProtoPreconditions.cs.meta │ │ │ ├── SegmentedBufferHelper.cs │ │ │ ├── SegmentedBufferHelper.cs.meta │ │ │ ├── UnknownField.cs │ │ │ ├── UnknownField.cs.meta │ │ │ ├── UnknownFieldSet.cs │ │ │ ├── UnknownFieldSet.cs.meta │ │ │ ├── WireFormat.cs │ │ │ ├── WireFormat.cs.meta │ │ │ ├── WriteBufferHelper.cs │ │ │ ├── WriteBufferHelper.cs.meta │ │ │ ├── WriteContext.cs │ │ │ ├── WriteContext.cs.meta │ │ │ ├── WriterInternalState.cs │ │ │ ├── WriterInternalState.cs.meta │ │ │ ├── WritingPrimitives.cs │ │ │ ├── WritingPrimitives.cs.meta │ │ │ ├── WritingPrimitivesMessages.cs │ │ │ └── WritingPrimitivesMessages.cs.meta │ │ ├── TMP.meta │ │ ├── TMP │ │ │ ├── TMPAssetLoader.cs │ │ │ └── TMPAssetLoader.cs.meta │ │ ├── Util.meta │ │ ├── Util │ │ │ ├── GameUtil.cs │ │ │ ├── GameUtil.cs.meta │ │ │ ├── JsonTool.cs │ │ │ ├── JsonTool.cs.meta │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── MultiMap.cs │ │ │ ├── MultiMap.cs.meta │ │ │ ├── TimerTimeUtility.cs │ │ │ ├── TimerTimeUtility.cs.meta │ │ │ ├── ZipUtility.cs │ │ │ └── ZipUtility.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── Constant.cs │ │ │ ├── Constant.cs.meta │ │ │ ├── UnityExtension.cs │ │ │ └── UnityExtension.cs.meta │ ├── Generated.meta │ ├── Generated │ │ ├── Config.meta │ │ ├── Config │ │ │ ├── Schema.cs │ │ │ └── Schema.cs.meta │ │ ├── netGen.meta │ │ └── netGen │ │ │ ├── Common.cs │ │ │ ├── Common.cs.meta │ │ │ ├── RespFullyLst.cs │ │ │ ├── RespFullyLst.cs.meta │ │ │ ├── RqstFully.cs │ │ │ └── RqstFully.cs.meta │ ├── HybridCLRGenerate.meta │ ├── HybridCLRGenerate │ │ ├── AOTGenericReferences.cs │ │ ├── AOTGenericReferences.cs.meta │ │ ├── link.xml │ │ └── link.xml.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll.meta │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.meta │ │ ├── UniTask.meta │ │ └── UniTask │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── SplitterGUILayout.cs │ │ │ ├── SplitterGUILayout.cs.meta │ │ │ ├── UniTask.Editor.asmdef │ │ │ ├── UniTask.Editor.asmdef.meta │ │ │ ├── UniTaskTrackerTreeView.cs │ │ │ ├── UniTaskTrackerTreeView.cs.meta │ │ │ ├── UniTaskTrackerWindow.cs │ │ │ └── UniTaskTrackerWindow.cs.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ ├── AsyncLazy.cs │ │ │ ├── AsyncLazy.cs.meta │ │ │ ├── AsyncReactiveProperty.cs │ │ │ ├── AsyncReactiveProperty.cs.meta │ │ │ ├── AsyncUnit.cs │ │ │ ├── AsyncUnit.cs.meta │ │ │ ├── CancellationTokenEqualityComparer.cs │ │ │ ├── CancellationTokenEqualityComparer.cs.meta │ │ │ ├── CancellationTokenExtensions.cs │ │ │ ├── CancellationTokenExtensions.cs.meta │ │ │ ├── CancellationTokenSourceExtensions.cs │ │ │ ├── CancellationTokenSourceExtensions.cs.meta │ │ │ ├── Channel.cs │ │ │ ├── Channel.cs.meta │ │ │ ├── CompilerServices.meta │ │ │ ├── CompilerServices │ │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ │ ├── AsyncMethodBuilderAttribute.cs.meta │ │ │ │ ├── AsyncUniTaskMethodBuilder.cs │ │ │ │ ├── AsyncUniTaskMethodBuilder.cs.meta │ │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs │ │ │ │ ├── AsyncUniTaskVoidMethodBuilder.cs.meta │ │ │ │ ├── StateMachineRunner.cs │ │ │ │ └── StateMachineRunner.cs.meta │ │ │ ├── EnumerableAsyncExtensions.cs │ │ │ ├── EnumerableAsyncExtensions.cs.meta │ │ │ ├── EnumeratorAsyncExtensions.cs │ │ │ ├── EnumeratorAsyncExtensions.cs.meta │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── ExceptionExtensions.cs.meta │ │ │ ├── External.meta │ │ │ ├── External │ │ │ │ ├── Addressables.meta │ │ │ │ ├── Addressables │ │ │ │ │ ├── AddressablesAsyncExtensions.cs │ │ │ │ │ ├── AddressablesAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.Addressables.asmdef │ │ │ │ │ └── UniTask.Addressables.asmdef.meta │ │ │ │ ├── DOTween.meta │ │ │ │ ├── DOTween │ │ │ │ │ ├── DOTweenAsyncExtensions.cs │ │ │ │ │ ├── DOTweenAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.DOTween.asmdef │ │ │ │ │ └── UniTask.DOTween.asmdef.meta │ │ │ │ ├── TextMeshPro.meta │ │ │ │ ├── TextMeshPro │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.cs.meta │ │ │ │ │ ├── TextMeshProAsyncExtensions.cs │ │ │ │ │ ├── TextMeshProAsyncExtensions.cs.meta │ │ │ │ │ ├── UniTask.TextMeshPro.asmdef │ │ │ │ │ └── UniTask.TextMeshPro.asmdef.meta │ │ │ │ ├── YooAsset.meta │ │ │ │ └── YooAsset │ │ │ │ │ ├── AsyncOperationBaseExtensions.cs │ │ │ │ │ ├── AsyncOperationBaseExtensions.cs.meta │ │ │ │ │ ├── OperationHandleBaseExtensions.cs │ │ │ │ │ ├── OperationHandleBaseExtensions.cs.meta │ │ │ │ │ ├── UniTask.YooAsset.asmdef │ │ │ │ │ └── UniTask.YooAsset.asmdef.meta │ │ │ ├── IUniTaskAsyncEnumerable.cs │ │ │ ├── IUniTaskAsyncEnumerable.cs.meta │ │ │ ├── IUniTaskSource.cs │ │ │ ├── IUniTaskSource.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── ArrayPool.cs │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ ├── ArrayPoolUtil.cs │ │ │ │ ├── ArrayPoolUtil.cs.meta │ │ │ │ ├── ArrayUtil.cs │ │ │ │ ├── ArrayUtil.cs.meta │ │ │ │ ├── ContinuationQueue.cs │ │ │ │ ├── ContinuationQueue.cs.meta │ │ │ │ ├── DiagnosticsExtensions.cs │ │ │ │ ├── DiagnosticsExtensions.cs.meta │ │ │ │ ├── Error.cs │ │ │ │ ├── Error.cs.meta │ │ │ │ ├── MinimumQueue.cs │ │ │ │ ├── MinimumQueue.cs.meta │ │ │ │ ├── PlayerLoopRunner.cs │ │ │ │ ├── PlayerLoopRunner.cs.meta │ │ │ │ ├── PooledDelegate.cs │ │ │ │ ├── PooledDelegate.cs.meta │ │ │ │ ├── RuntimeHelpersAbstraction.cs │ │ │ │ ├── RuntimeHelpersAbstraction.cs.meta │ │ │ │ ├── StatePool.cs │ │ │ │ ├── StatePool.cs.meta │ │ │ │ ├── TaskTracker.cs │ │ │ │ ├── TaskTracker.cs.meta │ │ │ │ ├── UnityEqualityComparer.cs │ │ │ │ ├── UnityEqualityComparer.cs.meta │ │ │ │ ├── UnityWebRequestExtensions.cs │ │ │ │ ├── UnityWebRequestExtensions.cs.meta │ │ │ │ ├── ValueStopwatch.cs │ │ │ │ ├── ValueStopwatch.cs.meta │ │ │ │ ├── WeakDictionary.cs │ │ │ │ └── WeakDictionary.cs.meta │ │ │ ├── Linq.meta │ │ │ ├── Linq │ │ │ │ ├── Aggregate.cs │ │ │ │ ├── Aggregate.cs.meta │ │ │ │ ├── All.cs │ │ │ │ ├── All.cs.meta │ │ │ │ ├── Any.cs │ │ │ │ ├── Any.cs.meta │ │ │ │ ├── AppendPrepend.cs │ │ │ │ ├── AppendPrepend.cs.meta │ │ │ │ ├── AsUniTaskAsyncEnumerable.cs │ │ │ │ ├── AsUniTaskAsyncEnumerable.cs.meta │ │ │ │ ├── AsyncEnumeratorBase.cs │ │ │ │ ├── AsyncEnumeratorBase.cs.meta │ │ │ │ ├── Average.cs │ │ │ │ ├── Average.cs.meta │ │ │ │ ├── Buffer.cs │ │ │ │ ├── Buffer.cs.meta │ │ │ │ ├── Cast.cs │ │ │ │ ├── Cast.cs.meta │ │ │ │ ├── CombineLatest.cs │ │ │ │ ├── CombineLatest.cs.meta │ │ │ │ ├── Concat.cs │ │ │ │ ├── Concat.cs.meta │ │ │ │ ├── Contains.cs │ │ │ │ ├── Contains.cs.meta │ │ │ │ ├── Count.cs │ │ │ │ ├── Count.cs.meta │ │ │ │ ├── Create.cs │ │ │ │ ├── Create.cs.meta │ │ │ │ ├── DefaultIfEmpty.cs │ │ │ │ ├── DefaultIfEmpty.cs.meta │ │ │ │ ├── Distinct.cs │ │ │ │ ├── Distinct.cs.meta │ │ │ │ ├── DistinctUntilChanged.cs │ │ │ │ ├── DistinctUntilChanged.cs.meta │ │ │ │ ├── Do.cs │ │ │ │ ├── Do.cs.meta │ │ │ │ ├── ElementAt.cs │ │ │ │ ├── ElementAt.cs.meta │ │ │ │ ├── Empty.cs │ │ │ │ ├── Empty.cs.meta │ │ │ │ ├── Except.cs │ │ │ │ ├── Except.cs.meta │ │ │ │ ├── First.cs │ │ │ │ ├── First.cs.meta │ │ │ │ ├── ForEach.cs │ │ │ │ ├── ForEach.cs.meta │ │ │ │ ├── GroupBy.cs │ │ │ │ ├── GroupBy.cs.meta │ │ │ │ ├── GroupJoin.cs │ │ │ │ ├── GroupJoin.cs.meta │ │ │ │ ├── Intersect.cs │ │ │ │ ├── Intersect.cs.meta │ │ │ │ ├── Join.cs │ │ │ │ ├── Join.cs.meta │ │ │ │ ├── Last.cs │ │ │ │ ├── Last.cs.meta │ │ │ │ ├── LongCount.cs │ │ │ │ ├── LongCount.cs.meta │ │ │ │ ├── Max.cs │ │ │ │ ├── Max.cs.meta │ │ │ │ ├── Merge.cs │ │ │ │ ├── Merge.cs.meta │ │ │ │ ├── Min.cs │ │ │ │ ├── Min.cs.meta │ │ │ │ ├── MinMax.cs │ │ │ │ ├── MinMax.cs.meta │ │ │ │ ├── Never.cs │ │ │ │ ├── Never.cs.meta │ │ │ │ ├── OfType.cs │ │ │ │ ├── OfType.cs.meta │ │ │ │ ├── OrderBy.cs │ │ │ │ ├── OrderBy.cs.meta │ │ │ │ ├── Pairwise.cs │ │ │ │ ├── Pairwise.cs.meta │ │ │ │ ├── Publish.cs │ │ │ │ ├── Publish.cs.meta │ │ │ │ ├── Queue.cs │ │ │ │ ├── Queue.cs.meta │ │ │ │ ├── Range.cs │ │ │ │ ├── Range.cs.meta │ │ │ │ ├── Repeat.cs │ │ │ │ ├── Repeat.cs.meta │ │ │ │ ├── Return.cs │ │ │ │ ├── Return.cs.meta │ │ │ │ ├── Reverse.cs │ │ │ │ ├── Reverse.cs.meta │ │ │ │ ├── Select.cs │ │ │ │ ├── Select.cs.meta │ │ │ │ ├── SelectMany.cs │ │ │ │ ├── SelectMany.cs.meta │ │ │ │ ├── SequenceEqual.cs │ │ │ │ ├── SequenceEqual.cs.meta │ │ │ │ ├── Single.cs │ │ │ │ ├── Single.cs.meta │ │ │ │ ├── Skip.cs │ │ │ │ ├── Skip.cs.meta │ │ │ │ ├── SkipLast.cs │ │ │ │ ├── SkipLast.cs.meta │ │ │ │ ├── SkipUntil.cs │ │ │ │ ├── SkipUntil.cs.meta │ │ │ │ ├── SkipUntilCanceled.cs │ │ │ │ ├── SkipUntilCanceled.cs.meta │ │ │ │ ├── SkipWhile.cs │ │ │ │ ├── SkipWhile.cs.meta │ │ │ │ ├── Subscribe.cs │ │ │ │ ├── Subscribe.cs.meta │ │ │ │ ├── Sum.cs │ │ │ │ ├── Sum.cs.meta │ │ │ │ ├── Take.cs │ │ │ │ ├── Take.cs.meta │ │ │ │ ├── TakeLast.cs │ │ │ │ ├── TakeLast.cs.meta │ │ │ │ ├── TakeUntil.cs │ │ │ │ ├── TakeUntil.cs.meta │ │ │ │ ├── TakeUntilCanceled.cs │ │ │ │ ├── TakeUntilCanceled.cs.meta │ │ │ │ ├── TakeWhile.cs │ │ │ │ ├── TakeWhile.cs.meta │ │ │ │ ├── Throw.cs │ │ │ │ ├── Throw.cs.meta │ │ │ │ ├── ToArray.cs │ │ │ │ ├── ToArray.cs.meta │ │ │ │ ├── ToDictionary.cs │ │ │ │ ├── ToDictionary.cs.meta │ │ │ │ ├── ToHashSet.cs │ │ │ │ ├── ToHashSet.cs.meta │ │ │ │ ├── ToList.cs │ │ │ │ ├── ToList.cs.meta │ │ │ │ ├── ToLookup.cs │ │ │ │ ├── ToLookup.cs.meta │ │ │ │ ├── ToObservable.cs │ │ │ │ ├── ToObservable.cs.meta │ │ │ │ ├── ToUniTaskAsyncEnumerable.cs │ │ │ │ ├── ToUniTaskAsyncEnumerable.cs.meta │ │ │ │ ├── UniTask.Linq.asmdef │ │ │ │ ├── UniTask.Linq.asmdef.meta │ │ │ │ ├── Union.cs │ │ │ │ ├── Union.cs.meta │ │ │ │ ├── UnityExtensions.meta │ │ │ │ ├── UnityExtensions │ │ │ │ │ ├── EveryUpdate.cs │ │ │ │ │ ├── EveryUpdate.cs.meta │ │ │ │ │ ├── EveryValueChanged.cs │ │ │ │ │ ├── EveryValueChanged.cs.meta │ │ │ │ │ ├── Timer.cs │ │ │ │ │ └── Timer.cs.meta │ │ │ │ ├── Where.cs │ │ │ │ ├── Where.cs.meta │ │ │ │ ├── Zip.cs │ │ │ │ └── Zip.cs.meta │ │ │ ├── MoveNextSource.cs │ │ │ ├── MoveNextSource.cs.meta │ │ │ ├── PlayerLoopHelper.cs │ │ │ ├── PlayerLoopHelper.cs.meta │ │ │ ├── PlayerLoopTimer.cs │ │ │ ├── PlayerLoopTimer.cs.meta │ │ │ ├── Progress.cs │ │ │ ├── Progress.cs.meta │ │ │ ├── TaskPool.cs │ │ │ ├── TaskPool.cs.meta │ │ │ ├── TimeoutController.cs │ │ │ ├── TimeoutController.cs.meta │ │ │ ├── TriggerEvent.cs │ │ │ ├── TriggerEvent.cs.meta │ │ │ ├── Triggers.meta │ │ │ ├── Triggers │ │ │ │ ├── AsyncAwakeTrigger.cs │ │ │ │ ├── AsyncAwakeTrigger.cs.meta │ │ │ │ ├── AsyncDestroyTrigger.cs │ │ │ │ ├── AsyncDestroyTrigger.cs.meta │ │ │ │ ├── AsyncStartTrigger.cs │ │ │ │ ├── AsyncStartTrigger.cs.meta │ │ │ │ ├── AsyncTriggerBase.cs │ │ │ │ ├── AsyncTriggerBase.cs.meta │ │ │ │ ├── AsyncTriggerExtensions.cs │ │ │ │ ├── AsyncTriggerExtensions.cs.meta │ │ │ │ ├── MonoBehaviourMessagesTriggers.cs │ │ │ │ └── MonoBehaviourMessagesTriggers.cs.meta │ │ │ ├── UniTask.AsValueTask.cs │ │ │ ├── UniTask.AsValueTask.cs.meta │ │ │ ├── UniTask.Bridge.cs │ │ │ ├── UniTask.Bridge.cs.meta │ │ │ ├── UniTask.Delay.cs │ │ │ ├── UniTask.Delay.cs.meta │ │ │ ├── UniTask.Factory.cs │ │ │ ├── UniTask.Factory.cs.meta │ │ │ ├── UniTask.Run.cs │ │ │ ├── UniTask.Run.cs.meta │ │ │ ├── UniTask.Threading.cs │ │ │ ├── UniTask.Threading.cs.meta │ │ │ ├── UniTask.WaitUntil.cs │ │ │ ├── UniTask.WaitUntil.cs.meta │ │ │ ├── UniTask.WhenAll.Generated.cs │ │ │ ├── UniTask.WhenAll.Generated.cs.meta │ │ │ ├── UniTask.WhenAll.cs │ │ │ ├── UniTask.WhenAll.cs.meta │ │ │ ├── UniTask.WhenAny.Generated.cs │ │ │ ├── UniTask.WhenAny.Generated.cs.meta │ │ │ ├── UniTask.WhenAny.cs │ │ │ ├── UniTask.WhenAny.cs.meta │ │ │ ├── UniTask.asmdef │ │ │ ├── UniTask.asmdef.meta │ │ │ ├── UniTask.cs │ │ │ ├── UniTask.cs.meta │ │ │ ├── UniTaskCompletionSource.cs │ │ │ ├── UniTaskCompletionSource.cs.meta │ │ │ ├── UniTaskExtensions.Shorthand.cs │ │ │ ├── UniTaskExtensions.Shorthand.cs.meta │ │ │ ├── UniTaskExtensions.cs │ │ │ ├── UniTaskExtensions.cs.meta │ │ │ ├── UniTaskObservableExtensions.cs │ │ │ ├── UniTaskObservableExtensions.cs.meta │ │ │ ├── UniTaskScheduler.cs │ │ │ ├── UniTaskScheduler.cs.meta │ │ │ ├── UniTaskSynchronizationContext.cs │ │ │ ├── UniTaskSynchronizationContext.cs.meta │ │ │ ├── UniTaskVoid.cs │ │ │ ├── UniTaskVoid.cs.meta │ │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs │ │ │ ├── UnityAsyncExtensions.AssetBundleRequestAllAssets.cs.meta │ │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs │ │ │ ├── UnityAsyncExtensions.AsyncGPUReadback.cs.meta │ │ │ ├── UnityAsyncExtensions.Jobs.cs │ │ │ ├── UnityAsyncExtensions.Jobs.cs.meta │ │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs │ │ │ ├── UnityAsyncExtensions.MonoBehaviour.cs.meta │ │ │ ├── UnityAsyncExtensions.cs │ │ │ ├── UnityAsyncExtensions.cs.meta │ │ │ ├── UnityAsyncExtensions.uGUI.cs │ │ │ ├── UnityAsyncExtensions.uGUI.cs.meta │ │ │ ├── UnityAwaitableExtensions.cs │ │ │ ├── UnityAwaitableExtensions.cs.meta │ │ │ ├── UnityBindingExtensions.cs │ │ │ ├── UnityBindingExtensions.cs.meta │ │ │ ├── UnityWebRequestException.cs │ │ │ ├── UnityWebRequestException.cs.meta │ │ │ ├── _InternalVisibleTo.cs │ │ │ └── _InternalVisibleTo.cs.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ ├── Resources.meta │ ├── Resources │ │ ├── BuildinFileManifest.asset │ │ ├── BuildinFileManifest.asset.meta │ │ ├── YooAssetSettings.asset │ │ └── YooAssetSettings.asset.meta │ ├── Scene.meta │ ├── Scene │ │ ├── Main.unity │ │ ├── Main.unity.meta │ │ ├── uiedit.unity │ │ └── uiedit.unity.meta │ ├── StreamingAssets.meta │ ├── StreamingAssets │ │ └── buildin.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── PuHuiTi-Heavy.ttf │ │ │ ├── PuHuiTi-Heavy.ttf.meta │ │ │ ├── PuHuiTi-Medium.ttf │ │ │ ├── PuHuiTi-Medium.ttf.meta │ │ │ ├── PuHuiTi-Regular.ttf │ │ │ └── PuHuiTi-Regular.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── emoji one.json │ │ │ ├── emoji one.json.meta │ │ │ ├── emoji one.png │ │ │ └── emoji one.png.meta │ ├── Unity-Logs-Viewer.meta │ ├── Unity-Logs-Viewer │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Reporter.meta │ │ ├── Reporter │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── ReporterEditor.cs │ │ │ │ └── ReporterEditor.cs.meta │ │ │ ├── Images.meta │ │ │ ├── Images │ │ │ │ ├── ComputerIcon.png │ │ │ │ ├── ComputerIcon.png.meta │ │ │ │ ├── UnityIcon.png │ │ │ │ ├── UnityIcon.png.meta │ │ │ │ ├── back.png │ │ │ │ ├── back.png.meta │ │ │ │ ├── bar.png │ │ │ │ ├── bar.png.meta │ │ │ │ ├── buildFrom.png │ │ │ │ ├── buildFrom.png.meta │ │ │ │ ├── button_active.png │ │ │ │ ├── button_active.png.meta │ │ │ │ ├── chart.png │ │ │ │ ├── chart.png.meta │ │ │ │ ├── clear.png │ │ │ │ ├── clear.png.meta │ │ │ │ ├── clearOnSceneLoaded.png │ │ │ │ ├── clearOnSceneLoaded.png.meta │ │ │ │ ├── close.png │ │ │ │ ├── close.png.meta │ │ │ │ ├── collapse.png │ │ │ │ ├── collapse.png.meta │ │ │ │ ├── date.png │ │ │ │ ├── date.png.meta │ │ │ │ ├── error_icon.png │ │ │ │ ├── error_icon.png.meta │ │ │ │ ├── even_log.png │ │ │ │ ├── even_log.png.meta │ │ │ │ ├── fps.png │ │ │ │ ├── fps.png.meta │ │ │ │ ├── graphicCard.png │ │ │ │ ├── graphicCard.png.meta │ │ │ │ ├── info.png │ │ │ │ ├── info.png.meta │ │ │ │ ├── log_icon.png │ │ │ │ ├── log_icon.png.meta │ │ │ │ ├── memory.png │ │ │ │ ├── memory.png.meta │ │ │ │ ├── odd_log.png │ │ │ │ ├── odd_log.png.meta │ │ │ │ ├── reporterScrollerSkin.guiskin │ │ │ │ ├── reporterScrollerSkin.guiskin.meta │ │ │ │ ├── scroller_down_arraw.png │ │ │ │ ├── scroller_down_arraw.png.meta │ │ │ │ ├── scroller_horizental_back.png │ │ │ │ ├── scroller_horizental_back.png.meta │ │ │ │ ├── scroller_horizental_thumb.png │ │ │ │ ├── scroller_horizental_thumb.png.meta │ │ │ │ ├── scroller_left_arraw.png │ │ │ │ ├── scroller_left_arraw.png.meta │ │ │ │ ├── scroller_right_arraw.png │ │ │ │ ├── scroller_right_arraw.png.meta │ │ │ │ ├── scroller_up_arraw.png │ │ │ │ ├── scroller_up_arraw.png.meta │ │ │ │ ├── scroller_vertical_back.png │ │ │ │ ├── scroller_vertical_back.png.meta │ │ │ │ ├── scroller_vertical_thumb.png │ │ │ │ ├── scroller_vertical_thumb.png.meta │ │ │ │ ├── search.png │ │ │ │ ├── search.png.meta │ │ │ │ ├── selected.png │ │ │ │ ├── selected.png.meta │ │ │ │ ├── software.png │ │ │ │ ├── software.png.meta │ │ │ │ ├── timer_1.png │ │ │ │ ├── timer_1.png.meta │ │ │ │ ├── user.png │ │ │ │ ├── user.png.meta │ │ │ │ ├── warning_icon.png │ │ │ │ └── warning_icon.png.meta │ │ │ ├── MultiKeyDictionary.cs │ │ │ ├── MultiKeyDictionary.cs.meta │ │ │ ├── Reporter.cs │ │ │ ├── Reporter.cs.meta │ │ │ ├── ReporterGUI.cs │ │ │ ├── ReporterGUI.cs.meta │ │ │ ├── ReporterMessageReceiver.cs │ │ │ ├── ReporterMessageReceiver.cs.meta │ │ │ ├── Test.meta │ │ │ └── Test │ │ │ │ ├── Reporter.prefab │ │ │ │ ├── Reporter.prefab.meta │ │ │ │ ├── ReporterScene.unity │ │ │ │ ├── ReporterScene.unity.meta │ │ │ │ ├── Rotate.cs │ │ │ │ ├── Rotate.cs.meta │ │ │ │ ├── TestReporter.cs │ │ │ │ ├── TestReporter.cs.meta │ │ │ │ ├── test1.unity │ │ │ │ ├── test1.unity.meta │ │ │ │ ├── test2.unity │ │ │ │ └── test2.unity.meta │ │ ├── ReporterDocumentation.meta │ │ └── ReporterDocumentation │ │ │ ├── GCMem.png │ │ │ ├── GCMem.png.meta │ │ │ ├── clear.png │ │ │ ├── clear.png.meta │ │ │ ├── clearOnNewScene.png │ │ │ ├── clearOnNewScene.png.meta │ │ │ ├── collapse.png │ │ │ ├── collapse.png.meta │ │ │ ├── error.png │ │ │ ├── error.png.meta │ │ │ ├── fps.png │ │ │ ├── fps.png.meta │ │ │ ├── index.htm │ │ │ ├── index.htm.meta │ │ │ ├── info.png │ │ │ ├── info.png.meta │ │ │ ├── log.png │ │ │ ├── log.png.meta │ │ │ ├── scene.png │ │ │ ├── scene.png.meta │ │ │ ├── screenShot11.png │ │ │ ├── screenShot11.png.meta │ │ │ ├── screenShot21.png │ │ │ ├── screenShot21.png.meta │ │ │ ├── screenShot3.png │ │ │ ├── screenShot3.png.meta │ │ │ ├── style.css │ │ │ ├── style.css.meta │ │ │ ├── time.png │ │ │ ├── time.png.meta │ │ │ ├── warning.png │ │ │ └── warning.png.meta │ ├── YooAsset.meta │ ├── YooAsset │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AssetBundleBuilder.meta │ │ │ ├── AssetBundleBuilder │ │ │ │ ├── AssetBundleBuilder.cs │ │ │ │ ├── AssetBundleBuilder.cs.meta │ │ │ │ ├── AssetBundleBuilderHelper.cs │ │ │ │ ├── AssetBundleBuilderHelper.cs.meta │ │ │ │ ├── AssetBundleBuilderSetting.cs │ │ │ │ ├── AssetBundleBuilderSetting.cs.meta │ │ │ │ ├── AssetBundleBuilderWindow.cs │ │ │ │ ├── AssetBundleBuilderWindow.cs.meta │ │ │ │ ├── AssetBundleBuilderWindow.uxml │ │ │ │ ├── AssetBundleBuilderWindow.uxml.meta │ │ │ │ ├── AssetBundleSimulateBuilder.cs │ │ │ │ ├── AssetBundleSimulateBuilder.cs.meta │ │ │ │ ├── BuildAssetInfo.cs │ │ │ │ ├── BuildAssetInfo.cs.meta │ │ │ │ ├── BuildBundleInfo.cs │ │ │ │ ├── BuildBundleInfo.cs.meta │ │ │ │ ├── BuildMapContext.cs │ │ │ │ ├── BuildMapContext.cs.meta │ │ │ │ ├── BuildParameters.cs │ │ │ │ ├── BuildParameters.cs.meta │ │ │ │ ├── BuildParametersContext.cs │ │ │ │ ├── BuildParametersContext.cs.meta │ │ │ │ ├── BuildPipeline.meta │ │ │ │ ├── BuildPipeline │ │ │ │ │ ├── BaseTasks.meta │ │ │ │ │ ├── BaseTasks │ │ │ │ │ │ ├── TaskCopyBuildinFiles.cs │ │ │ │ │ │ ├── TaskCopyBuildinFiles.cs.meta │ │ │ │ │ │ ├── TaskCreateManifest.cs │ │ │ │ │ │ ├── TaskCreateManifest.cs.meta │ │ │ │ │ │ ├── TaskCreateReport.cs │ │ │ │ │ │ ├── TaskCreateReport.cs.meta │ │ │ │ │ │ ├── TaskEncryption.cs │ │ │ │ │ │ ├── TaskEncryption.cs.meta │ │ │ │ │ │ ├── TaskGetBuildMap.cs │ │ │ │ │ │ ├── TaskGetBuildMap.cs.meta │ │ │ │ │ │ ├── TaskUpdateBundleInfo.cs │ │ │ │ │ │ └── TaskUpdateBundleInfo.cs.meta │ │ │ │ │ ├── BuiltinBuildPipeline.meta │ │ │ │ │ ├── BuiltinBuildPipeline │ │ │ │ │ │ ├── BuildTasks.meta │ │ │ │ │ │ ├── BuildTasks │ │ │ │ │ │ │ ├── TaskBuilding_BBP.cs │ │ │ │ │ │ │ ├── TaskBuilding_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskCopyBuildinFiles_BBP.cs │ │ │ │ │ │ │ ├── TaskCopyBuildinFiles_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreateManifest_BBP.cs │ │ │ │ │ │ │ ├── TaskCreateManifest_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreatePackage_BBP.cs │ │ │ │ │ │ │ ├── TaskCreatePackage_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreateReport_BBP.cs │ │ │ │ │ │ │ ├── TaskCreateReport_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskEncryption_BBP.cs │ │ │ │ │ │ │ ├── TaskEncryption_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskGetBuildMap_BBP.cs │ │ │ │ │ │ │ ├── TaskGetBuildMap_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskPrepare_BBP.cs │ │ │ │ │ │ │ ├── TaskPrepare_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskUpdateBundleInfo_BBP.cs │ │ │ │ │ │ │ ├── TaskUpdateBundleInfo_BBP.cs.meta │ │ │ │ │ │ │ ├── TaskVerifyBuildResult_BBP.cs │ │ │ │ │ │ │ └── TaskVerifyBuildResult_BBP.cs.meta │ │ │ │ │ │ ├── BuiltinBuildParameters.cs │ │ │ │ │ │ ├── BuiltinBuildParameters.cs.meta │ │ │ │ │ │ ├── BuiltinBuildPipeline.cs │ │ │ │ │ │ └── BuiltinBuildPipeline.cs.meta │ │ │ │ │ ├── RawFileBuildPipeline.meta │ │ │ │ │ ├── RawFileBuildPipeline │ │ │ │ │ │ ├── BuildTasks.meta │ │ │ │ │ │ ├── BuildTasks │ │ │ │ │ │ │ ├── TaskBuilding_RFBP.cs │ │ │ │ │ │ │ ├── TaskBuilding_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskCopyBuildinFiles_RFBP.cs │ │ │ │ │ │ │ ├── TaskCopyBuildinFiles_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreateManifest_RFBP.cs │ │ │ │ │ │ │ ├── TaskCreateManifest_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreatePackage_RFBP.cs │ │ │ │ │ │ │ ├── TaskCreatePackage_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskCreateReport_RFBP.cs │ │ │ │ │ │ │ ├── TaskCreateReport_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskGetBuildMap_RFBP.cs │ │ │ │ │ │ │ ├── TaskGetBuildMap_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskPrepare_RFBP.cs │ │ │ │ │ │ │ ├── TaskPrepare_RFBP.cs.meta │ │ │ │ │ │ │ ├── TaskUpdateBundleInfo_RFBP.cs │ │ │ │ │ │ │ └── TaskUpdateBundleInfo_RFBP.cs.meta │ │ │ │ │ │ ├── RawFileBuildParameters.cs │ │ │ │ │ │ ├── RawFileBuildParameters.cs.meta │ │ │ │ │ │ ├── RawFileBuildPipeline.cs │ │ │ │ │ │ └── RawFileBuildPipeline.cs.meta │ │ │ │ │ ├── ScriptableBuildPipeline.meta │ │ │ │ │ └── ScriptableBuildPipeline │ │ │ │ │ │ ├── BuildTasks.meta │ │ │ │ │ │ ├── BuildTasks │ │ │ │ │ │ ├── TaskBuilding_SBP.cs │ │ │ │ │ │ ├── TaskBuilding_SBP.cs.meta │ │ │ │ │ │ ├── TaskCopyBuildinFiles_SBP.cs │ │ │ │ │ │ ├── TaskCopyBuildinFiles_SBP.cs.meta │ │ │ │ │ │ ├── TaskCreateManifest_SBP.cs │ │ │ │ │ │ ├── TaskCreateManifest_SBP.cs.meta │ │ │ │ │ │ ├── TaskCreatePackage_SBP.cs │ │ │ │ │ │ ├── TaskCreatePackage_SBP.cs.meta │ │ │ │ │ │ ├── TaskCreateReport_SBP.cs │ │ │ │ │ │ ├── TaskCreateReport_SBP.cs.meta │ │ │ │ │ │ ├── TaskEncryption_SBP.cs │ │ │ │ │ │ ├── TaskEncryption_SBP.cs.meta │ │ │ │ │ │ ├── TaskGetBuildMap_SBP.cs │ │ │ │ │ │ ├── TaskGetBuildMap_SBP.cs.meta │ │ │ │ │ │ ├── TaskPrepare_SBP.cs │ │ │ │ │ │ ├── TaskPrepare_SBP.cs.meta │ │ │ │ │ │ ├── TaskUpdateBundleInfo_SBP.cs │ │ │ │ │ │ ├── TaskUpdateBundleInfo_SBP.cs.meta │ │ │ │ │ │ ├── TaskVerifyBuildResult_SBP.cs │ │ │ │ │ │ └── TaskVerifyBuildResult_SBP.cs.meta │ │ │ │ │ │ ├── SBPBuildTasks.cs │ │ │ │ │ │ ├── SBPBuildTasks.cs.meta │ │ │ │ │ │ ├── ScriptableBuildParameters.cs │ │ │ │ │ │ ├── ScriptableBuildParameters.cs.meta │ │ │ │ │ │ ├── ScriptableBuildPipeline.cs │ │ │ │ │ │ └── ScriptableBuildPipeline.cs.meta │ │ │ │ ├── BuildSystem.meta │ │ │ │ ├── BuildSystem │ │ │ │ │ ├── BuildContext.cs │ │ │ │ │ ├── BuildContext.cs.meta │ │ │ │ │ ├── BuildLogger.cs │ │ │ │ │ ├── BuildLogger.cs.meta │ │ │ │ │ ├── BuildResult.cs │ │ │ │ │ ├── BuildResult.cs.meta │ │ │ │ │ ├── BuildRunner.cs │ │ │ │ │ ├── BuildRunner.cs.meta │ │ │ │ │ ├── ErrorCode.cs │ │ │ │ │ ├── ErrorCode.cs.meta │ │ │ │ │ ├── IBuildTask.cs │ │ │ │ │ ├── IBuildTask.cs.meta │ │ │ │ │ ├── IContextObject.cs │ │ │ │ │ └── IContextObject.cs.meta │ │ │ │ ├── DefaultEncryption.cs │ │ │ │ ├── DefaultEncryption.cs.meta │ │ │ │ ├── EBuildMode.cs │ │ │ │ ├── EBuildMode.cs.meta │ │ │ │ ├── EBuildPipeline.cs │ │ │ │ ├── EBuildPipeline.cs.meta │ │ │ │ ├── EBuildinFileCopyOption.cs │ │ │ │ ├── EBuildinFileCopyOption.cs.meta │ │ │ │ ├── ECompressOption.cs │ │ │ │ ├── ECompressOption.cs.meta │ │ │ │ ├── EFileNameStyle.cs │ │ │ │ ├── EFileNameStyle.cs.meta │ │ │ │ ├── IBuildPipeline.cs │ │ │ │ ├── IBuildPipeline.cs.meta │ │ │ │ ├── VisualViewers.meta │ │ │ │ └── VisualViewers │ │ │ │ │ ├── BuildPipelineViewerBase.cs │ │ │ │ │ ├── BuildPipelineViewerBase.cs.meta │ │ │ │ │ ├── BuildPipelineViewerBase.uxml │ │ │ │ │ ├── BuildPipelineViewerBase.uxml.meta │ │ │ │ │ ├── BuiltinBuildPipelineViewer.cs │ │ │ │ │ ├── BuiltinBuildPipelineViewer.cs.meta │ │ │ │ │ ├── RawfileBuildpipelineViewer.cs │ │ │ │ │ ├── RawfileBuildpipelineViewer.cs.meta │ │ │ │ │ ├── ScriptableBuildPipelineViewer.cs │ │ │ │ │ └── ScriptableBuildPipelineViewer.cs.meta │ │ │ ├── AssetBundleCollector.meta │ │ │ ├── AssetBundleCollector │ │ │ │ ├── AssetBundleCollector.cs │ │ │ │ ├── AssetBundleCollector.cs.meta │ │ │ │ ├── AssetBundleCollectorConfig.cs │ │ │ │ ├── AssetBundleCollectorConfig.cs.meta │ │ │ │ ├── AssetBundleCollectorGroup.cs │ │ │ │ ├── AssetBundleCollectorGroup.cs.meta │ │ │ │ ├── AssetBundleCollectorPackage.cs │ │ │ │ ├── AssetBundleCollectorPackage.cs.meta │ │ │ │ ├── AssetBundleCollectorSetting.cs │ │ │ │ ├── AssetBundleCollectorSetting.cs.meta │ │ │ │ ├── AssetBundleCollectorSettingData.cs │ │ │ │ ├── AssetBundleCollectorSettingData.cs.meta │ │ │ │ ├── AssetBundleCollectorWindow.cs │ │ │ │ ├── AssetBundleCollectorWindow.cs.meta │ │ │ │ ├── AssetBundleCollectorWindow.uxml │ │ │ │ ├── AssetBundleCollectorWindow.uxml.meta │ │ │ │ ├── CollectAssetInfo.cs │ │ │ │ ├── CollectAssetInfo.cs.meta │ │ │ │ ├── CollectCommand.cs │ │ │ │ ├── CollectCommand.cs.meta │ │ │ │ ├── CollectResult.cs │ │ │ │ ├── CollectResult.cs.meta │ │ │ │ ├── CollectRules.meta │ │ │ │ ├── CollectRules │ │ │ │ │ ├── IActiveRule.cs │ │ │ │ │ ├── IActiveRule.cs.meta │ │ │ │ │ ├── IAddressRule.cs │ │ │ │ │ ├── IAddressRule.cs.meta │ │ │ │ │ ├── IFilterRule.cs │ │ │ │ │ ├── IFilterRule.cs.meta │ │ │ │ │ ├── IPackRule.cs │ │ │ │ │ └── IPackRule.cs.meta │ │ │ │ ├── DefaultRules.meta │ │ │ │ ├── DefaultRules │ │ │ │ │ ├── DefaultActiveRule.cs │ │ │ │ │ ├── DefaultActiveRule.cs.meta │ │ │ │ │ ├── DefaultAddressRule.cs │ │ │ │ │ ├── DefaultAddressRule.cs.meta │ │ │ │ │ ├── DefaultFilterRule.cs │ │ │ │ │ ├── DefaultFilterRule.cs.meta │ │ │ │ │ ├── DefaultPackRule.cs │ │ │ │ │ └── DefaultPackRule.cs.meta │ │ │ │ ├── DisplayNameAttribute.cs │ │ │ │ ├── DisplayNameAttribute.cs.meta │ │ │ │ ├── ECollectorType.cs │ │ │ │ ├── ECollectorType.cs.meta │ │ │ │ ├── ExtraCollectPath.cs │ │ │ │ ├── ExtraCollectPath.cs.meta │ │ │ │ ├── RuleDisplayName.cs │ │ │ │ └── RuleDisplayName.cs.meta │ │ │ ├── AssetBundleDebugger.meta │ │ │ ├── AssetBundleDebugger │ │ │ │ ├── AssetBundleDebuggerWindow.cs │ │ │ │ ├── AssetBundleDebuggerWindow.cs.meta │ │ │ │ ├── AssetBundleDebuggerWindow.uxml │ │ │ │ ├── AssetBundleDebuggerWindow.uxml.meta │ │ │ │ ├── RemotePlayerSession.cs │ │ │ │ ├── RemotePlayerSession.cs.meta │ │ │ │ ├── VisualViewers.meta │ │ │ │ └── VisualViewers │ │ │ │ │ ├── DebuggerAssetListViewer.cs │ │ │ │ │ ├── DebuggerAssetListViewer.cs.meta │ │ │ │ │ ├── DebuggerAssetListViewer.uxml │ │ │ │ │ ├── DebuggerAssetListViewer.uxml.meta │ │ │ │ │ ├── DebuggerBundleListViewer.cs │ │ │ │ │ ├── DebuggerBundleListViewer.cs.meta │ │ │ │ │ ├── DebuggerBundleListViewer.uxml │ │ │ │ │ └── DebuggerBundleListViewer.uxml.meta │ │ │ ├── AssetBundleReporter.meta │ │ │ ├── AssetBundleReporter │ │ │ │ ├── AssetBundleInspector.cs │ │ │ │ ├── AssetBundleInspector.cs.meta │ │ │ │ ├── AssetBundleRecorder.cs │ │ │ │ ├── AssetBundleRecorder.cs.meta │ │ │ │ ├── AssetBundleReporterWindow.cs │ │ │ │ ├── AssetBundleReporterWindow.cs.meta │ │ │ │ ├── AssetBundleReporterWindow.uxml │ │ │ │ ├── AssetBundleReporterWindow.uxml.meta │ │ │ │ ├── BuildReport.cs │ │ │ │ ├── BuildReport.cs.meta │ │ │ │ ├── ReportAssetInfo.cs │ │ │ │ ├── ReportAssetInfo.cs.meta │ │ │ │ ├── ReportBundleInfo.cs │ │ │ │ ├── ReportBundleInfo.cs.meta │ │ │ │ ├── ReportIndependAsset.cs │ │ │ │ ├── ReportIndependAsset.cs.meta │ │ │ │ ├── ReportSummary.cs │ │ │ │ ├── ReportSummary.cs.meta │ │ │ │ ├── VisualViewers.meta │ │ │ │ └── VisualViewers │ │ │ │ │ ├── ReporterAssetListViewer.cs │ │ │ │ │ ├── ReporterAssetListViewer.cs.meta │ │ │ │ │ ├── ReporterAssetListViewer.uxml │ │ │ │ │ ├── ReporterAssetListViewer.uxml.meta │ │ │ │ │ ├── ReporterBundleListViewer.cs │ │ │ │ │ ├── ReporterBundleListViewer.cs.meta │ │ │ │ │ ├── ReporterBundleListViewer.uxml │ │ │ │ │ ├── ReporterBundleListViewer.uxml.meta │ │ │ │ │ ├── ReporterSummaryViewer.cs │ │ │ │ │ ├── ReporterSummaryViewer.cs.meta │ │ │ │ │ ├── ReporterSummaryViewer.uxml │ │ │ │ │ └── ReporterSummaryViewer.uxml.meta │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── AssetInfo.cs │ │ │ │ └── AssetInfo.cs.meta │ │ │ ├── EditorDefine.cs │ │ │ ├── EditorDefine.cs.meta │ │ │ ├── EditorTools.cs │ │ │ ├── EditorTools.cs.meta │ │ │ ├── HomePage.cs │ │ │ ├── HomePage.cs.meta │ │ │ ├── SettingLoader.cs │ │ │ ├── SettingLoader.cs.meta │ │ │ ├── ShaderVariantCollector.meta │ │ │ ├── ShaderVariantCollector │ │ │ │ ├── ShaderVariantCollectionHelper.cs │ │ │ │ ├── ShaderVariantCollectionHelper.cs.meta │ │ │ │ ├── ShaderVariantCollectionManifest.cs │ │ │ │ ├── ShaderVariantCollectionManifest.cs.meta │ │ │ │ ├── ShaderVariantCollector.cs │ │ │ │ ├── ShaderVariantCollector.cs.meta │ │ │ │ ├── ShaderVariantCollectorSetting.cs │ │ │ │ ├── ShaderVariantCollectorSetting.cs.meta │ │ │ │ ├── ShaderVariantCollectorWindow.cs │ │ │ │ ├── ShaderVariantCollectorWindow.cs.meta │ │ │ │ ├── ShaderVariantCollectorWindow.uxml │ │ │ │ └── ShaderVariantCollectorWindow.uxml.meta │ │ │ ├── UIElements.meta │ │ │ ├── UIElements │ │ │ │ ├── UIElementsDefine.cs │ │ │ │ ├── UIElementsDefine.cs.meta │ │ │ │ ├── UIElementsExtension.cs │ │ │ │ ├── UIElementsExtension.cs.meta │ │ │ │ ├── UIElementsTools.cs │ │ │ │ ├── UIElementsTools.cs.meta │ │ │ │ ├── UxmlLoader.cs │ │ │ │ └── UxmlLoader.cs.meta │ │ │ ├── YooAsset.Editor.asmdef │ │ │ └── YooAsset.Editor.asmdef.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── CacheSystem.meta │ │ │ ├── CacheSystem │ │ │ ├── CacheFileInfo.cs │ │ │ ├── CacheFileInfo.cs.meta │ │ │ ├── CacheHelper.cs │ │ │ ├── CacheHelper.cs.meta │ │ │ ├── CacheManager.cs │ │ │ ├── CacheManager.cs.meta │ │ │ ├── EVerifyLevel.cs │ │ │ ├── EVerifyLevel.cs.meta │ │ │ ├── EVerifyResult.cs │ │ │ ├── EVerifyResult.cs.meta │ │ │ ├── Operation.meta │ │ │ ├── Operation │ │ │ │ ├── ClearAllCacheFilesOperation.cs │ │ │ │ ├── ClearAllCacheFilesOperation.cs.meta │ │ │ │ ├── ClearUnusedCacheFilesOperation.cs │ │ │ │ ├── ClearUnusedCacheFilesOperation.cs.meta │ │ │ │ ├── GetAllCacheFileInfosOperation.cs │ │ │ │ ├── GetAllCacheFileInfosOperation.cs.meta │ │ │ │ ├── Internal.meta │ │ │ │ ├── Internal │ │ │ │ │ ├── FindCacheFilesOperation.cs │ │ │ │ │ ├── FindCacheFilesOperation.cs.meta │ │ │ │ │ ├── VerifyCacheFilesOperation.cs │ │ │ │ │ ├── VerifyCacheFilesOperation.cs.meta │ │ │ │ │ ├── VerifyTempFileOperation.cs │ │ │ │ │ └── VerifyTempFileOperation.cs.meta │ │ │ │ ├── PackageCachingOperation.cs │ │ │ │ └── PackageCachingOperation.cs.meta │ │ │ ├── PersistentHelper.cs │ │ │ ├── PersistentHelper.cs.meta │ │ │ ├── PersistentManager.cs │ │ │ ├── PersistentManager.cs.meta │ │ │ ├── VerifyElement.cs │ │ │ └── VerifyElement.cs.meta │ │ │ ├── DiagnosticSystem.meta │ │ │ ├── DiagnosticSystem │ │ │ ├── DebugBundleInfo.cs │ │ │ ├── DebugBundleInfo.cs.meta │ │ │ ├── DebugPackageData.cs │ │ │ ├── DebugPackageData.cs.meta │ │ │ ├── DebugProviderInfo.cs │ │ │ ├── DebugProviderInfo.cs.meta │ │ │ ├── DebugReport.cs │ │ │ ├── DebugReport.cs.meta │ │ │ ├── RemoteCommand.cs │ │ │ ├── RemoteCommand.cs.meta │ │ │ ├── RemoteDebuggerDefine.cs │ │ │ ├── RemoteDebuggerDefine.cs.meta │ │ │ ├── RemoteDebuggerInRuntime.cs │ │ │ └── RemoteDebuggerInRuntime.cs.meta │ │ │ ├── DownloadSystem.meta │ │ │ ├── DownloadSystem │ │ │ ├── DownloadHelper.cs │ │ │ ├── DownloadHelper.cs.meta │ │ │ ├── DownloadManager.cs │ │ │ ├── DownloadManager.cs.meta │ │ │ ├── DownloadStatus.cs │ │ │ ├── DownloadStatus.cs.meta │ │ │ ├── Downloader.meta │ │ │ ├── Downloader │ │ │ │ ├── CompletedDownloader.cs │ │ │ │ ├── CompletedDownloader.cs.meta │ │ │ │ ├── DownloaderBase.cs │ │ │ │ ├── DownloaderBase.cs.meta │ │ │ │ ├── FileDownloader.cs │ │ │ │ ├── FileDownloader.cs.meta │ │ │ │ ├── WebDownloader.cs │ │ │ │ └── WebDownloader.cs.meta │ │ │ ├── RequestHelper.cs │ │ │ ├── RequestHelper.cs.meta │ │ │ ├── Requester.meta │ │ │ ├── Requester │ │ │ │ ├── AssetBundleWebRequest.cs │ │ │ │ ├── AssetBundleWebRequest.cs.meta │ │ │ │ ├── DownloadHandlerFileRange.cs │ │ │ │ ├── DownloadHandlerFileRange.cs.meta │ │ │ │ ├── FileGeneralRequest.cs │ │ │ │ ├── FileGeneralRequest.cs.meta │ │ │ │ ├── FileResumeRequest.cs │ │ │ │ ├── FileResumeRequest.cs.meta │ │ │ │ ├── IWebRequester.cs │ │ │ │ └── IWebRequester.cs.meta │ │ │ ├── ThreadSyncContext.cs │ │ │ ├── ThreadSyncContext.cs.meta │ │ │ ├── UnityWebDataRequester.cs │ │ │ ├── UnityWebDataRequester.cs.meta │ │ │ ├── UnityWebFileRequester.cs │ │ │ ├── UnityWebFileRequester.cs.meta │ │ │ ├── UnityWebRequesterBase.cs │ │ │ └── UnityWebRequesterBase.cs.meta │ │ │ ├── InitializeParameters.cs │ │ │ ├── InitializeParameters.cs.meta │ │ │ ├── OperationSystem.meta │ │ │ ├── OperationSystem │ │ │ ├── AsyncOperationBase.cs │ │ │ ├── AsyncOperationBase.cs.meta │ │ │ ├── EOperationStatus.cs │ │ │ ├── EOperationStatus.cs.meta │ │ │ ├── GameAsyncOperation.cs │ │ │ ├── GameAsyncOperation.cs.meta │ │ │ ├── OperationSystem.cs │ │ │ └── OperationSystem.cs.meta │ │ │ ├── ResourceManager.meta │ │ │ ├── ResourceManager │ │ │ ├── Handle.meta │ │ │ ├── Handle │ │ │ │ ├── AllAssetsHandle.cs │ │ │ │ ├── AllAssetsHandle.cs.meta │ │ │ │ ├── AssetHandle.cs │ │ │ │ ├── AssetHandle.cs.meta │ │ │ │ ├── HandleBase.cs │ │ │ │ ├── HandleBase.cs.meta │ │ │ │ ├── RawFileHandle.cs │ │ │ │ ├── RawFileHandle.cs.meta │ │ │ │ ├── SceneHandle.cs │ │ │ │ ├── SceneHandle.cs.meta │ │ │ │ ├── SubAssetsHandle.cs │ │ │ │ └── SubAssetsHandle.cs.meta │ │ │ ├── Loader.meta │ │ │ ├── Loader │ │ │ │ ├── AssetBundleFileLoader.cs │ │ │ │ ├── AssetBundleFileLoader.cs.meta │ │ │ │ ├── AssetBundleWebLoader.cs │ │ │ │ ├── AssetBundleWebLoader.cs.meta │ │ │ │ ├── BundleLoaderBase.cs │ │ │ │ ├── BundleLoaderBase.cs.meta │ │ │ │ ├── DependAssetBundles.cs │ │ │ │ ├── DependAssetBundles.cs.meta │ │ │ │ ├── RawBundleFileLoader.cs │ │ │ │ ├── RawBundleFileLoader.cs.meta │ │ │ │ ├── RawBundleWebLoader.cs │ │ │ │ ├── RawBundleWebLoader.cs.meta │ │ │ │ ├── VirtualBundleFileLoader.cs │ │ │ │ └── VirtualBundleFileLoader.cs.meta │ │ │ ├── Operation.meta │ │ │ ├── Operation │ │ │ │ ├── InstantiateOperation.cs │ │ │ │ ├── InstantiateOperation.cs.meta │ │ │ │ ├── UnloadSceneOperation.cs │ │ │ │ └── UnloadSceneOperation.cs.meta │ │ │ ├── Provider.meta │ │ │ ├── Provider │ │ │ │ ├── BundledAllAssetsProvider.cs │ │ │ │ ├── BundledAllAssetsProvider.cs.meta │ │ │ │ ├── BundledAssetProvider.cs │ │ │ │ ├── BundledAssetProvider.cs.meta │ │ │ │ ├── BundledRawFileProvider.cs │ │ │ │ ├── BundledRawFileProvider.cs.meta │ │ │ │ ├── BundledSceneProvider.cs │ │ │ │ ├── BundledSceneProvider.cs.meta │ │ │ │ ├── BundledSubAssetsProvider.cs │ │ │ │ ├── BundledSubAssetsProvider.cs.meta │ │ │ │ ├── CompletedProvider.cs │ │ │ │ ├── CompletedProvider.cs.meta │ │ │ │ ├── DatabaseAllAssetsProvider.cs │ │ │ │ ├── DatabaseAllAssetsProvider.cs.meta │ │ │ │ ├── DatabaseAssetProvider.cs │ │ │ │ ├── DatabaseAssetProvider.cs.meta │ │ │ │ ├── DatabaseRawFileProvider.cs │ │ │ │ ├── DatabaseRawFileProvider.cs.meta │ │ │ │ ├── DatabaseSceneProvider.cs │ │ │ │ ├── DatabaseSceneProvider.cs.meta │ │ │ │ ├── DatabaseSubAssetsProvider.cs │ │ │ │ ├── DatabaseSubAssetsProvider.cs.meta │ │ │ │ ├── ProviderBase.cs │ │ │ │ └── ProviderBase.cs.meta │ │ │ ├── ResourceLoader.cs │ │ │ ├── ResourceLoader.cs.meta │ │ │ ├── ResourceManager.cs │ │ │ └── ResourceManager.cs.meta │ │ │ ├── ResourcePackage.meta │ │ │ ├── ResourcePackage │ │ │ ├── AssetInfo.cs │ │ │ ├── AssetInfo.cs.meta │ │ │ ├── BundleInfo.cs │ │ │ ├── BundleInfo.cs.meta │ │ │ ├── Interface.meta │ │ │ ├── Interface │ │ │ │ ├── IBundleQuery.cs │ │ │ │ ├── IBundleQuery.cs.meta │ │ │ │ ├── IPlayMode.cs │ │ │ │ └── IPlayMode.cs.meta │ │ │ ├── ManifestTools.cs │ │ │ ├── ManifestTools.cs.meta │ │ │ ├── Operation.meta │ │ │ ├── Operation │ │ │ │ ├── DownloaderOperation.cs │ │ │ │ ├── DownloaderOperation.cs.meta │ │ │ │ ├── InitializationOperation.cs │ │ │ │ ├── InitializationOperation.cs.meta │ │ │ │ ├── Internal.meta │ │ │ │ ├── Internal │ │ │ │ │ ├── DeserializeManifestOperation.cs │ │ │ │ │ ├── DeserializeManifestOperation.cs.meta │ │ │ │ │ ├── DownloadManifestOperation.cs │ │ │ │ │ ├── DownloadManifestOperation.cs.meta │ │ │ │ │ ├── LoadBuildinManifestOperation.cs │ │ │ │ │ ├── LoadBuildinManifestOperation.cs.meta │ │ │ │ │ ├── LoadCacheManifestOperation.cs │ │ │ │ │ ├── LoadCacheManifestOperation.cs.meta │ │ │ │ │ ├── LoadEditorManifestOperation.cs │ │ │ │ │ ├── LoadEditorManifestOperation.cs.meta │ │ │ │ │ ├── LoadRemoteManifestOperation.cs │ │ │ │ │ ├── LoadRemoteManifestOperation.cs.meta │ │ │ │ │ ├── QueryBuildinPackageVersionOperation.cs │ │ │ │ │ ├── QueryBuildinPackageVersionOperation.cs.meta │ │ │ │ │ ├── QueryCachePackageHashOperation.cs │ │ │ │ │ ├── QueryCachePackageHashOperation.cs.meta │ │ │ │ │ ├── QueryCachePackageVersionOperation.cs │ │ │ │ │ ├── QueryCachePackageVersionOperation.cs.meta │ │ │ │ │ ├── QueryRemotePackageHashOperation.cs │ │ │ │ │ ├── QueryRemotePackageHashOperation.cs.meta │ │ │ │ │ ├── QueryRemotePackageVersionOperation.cs │ │ │ │ │ ├── QueryRemotePackageVersionOperation.cs.meta │ │ │ │ │ ├── QueryRemotePrePackageVersionOperation.cs │ │ │ │ │ ├── QueryRemotePrePackageVersionOperation.cs.meta │ │ │ │ │ ├── UnpackBuildinManifestOperation.cs │ │ │ │ │ └── UnpackBuildinManifestOperation.cs.meta │ │ │ │ ├── PreDownloadContentOperation.cs │ │ │ │ ├── PreDownloadContentOperation.cs.meta │ │ │ │ ├── UpdatePackageManifestOperation.cs │ │ │ │ ├── UpdatePackageManifestOperation.cs.meta │ │ │ │ ├── UpdatePackageVersionOperation.cs │ │ │ │ ├── UpdatePackageVersionOperation.cs.meta │ │ │ │ ├── UpdatePrePackageVersionOperation.cs │ │ │ │ └── UpdatePrePackageVersionOperation.cs.meta │ │ │ ├── PackageAsset.cs │ │ │ ├── PackageAsset.cs.meta │ │ │ ├── PackageBundle.cs │ │ │ ├── PackageBundle.cs.meta │ │ │ ├── PackageManifest.cs │ │ │ ├── PackageManifest.cs.meta │ │ │ ├── PlayMode.meta │ │ │ ├── PlayMode │ │ │ │ ├── EditorSimulateModeHelper.cs │ │ │ │ ├── EditorSimulateModeHelper.cs.meta │ │ │ │ ├── EditorSimulateModeImpl.cs │ │ │ │ ├── EditorSimulateModeImpl.cs.meta │ │ │ │ ├── HostPlayModeImpl.cs │ │ │ │ ├── HostPlayModeImpl.cs.meta │ │ │ │ ├── OfflinePlayModeImpl.cs │ │ │ │ ├── OfflinePlayModeImpl.cs.meta │ │ │ │ ├── WebPlayModeImpl.cs │ │ │ │ └── WebPlayModeImpl.cs.meta │ │ │ ├── ResourceAssist.cs │ │ │ ├── ResourceAssist.cs.meta │ │ │ ├── ResourcePackage.cs │ │ │ └── ResourcePackage.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ ├── IBuildinQueryServices.cs │ │ │ ├── IBuildinQueryServices.cs.meta │ │ │ ├── IDecryptionServices.cs │ │ │ ├── IDecryptionServices.cs.meta │ │ │ ├── IDeliveryLoadServices.cs │ │ │ ├── IDeliveryLoadServices.cs.meta │ │ │ ├── IDeliveryQueryServices.cs │ │ │ ├── IDeliveryQueryServices.cs.meta │ │ │ ├── IEncryptionServices.cs │ │ │ ├── IEncryptionServices.cs.meta │ │ │ ├── IRemoteServices.cs │ │ │ └── IRemoteServices.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ ├── YooAssetSettings.cs │ │ │ ├── YooAssetSettings.cs.meta │ │ │ ├── YooAssetSettingsData.cs │ │ │ └── YooAssetSettingsData.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ ├── BufferReader.cs │ │ │ ├── BufferReader.cs.meta │ │ │ ├── BufferWriter.cs │ │ │ ├── BufferWriter.cs.meta │ │ │ ├── CRC32Algorithm.cs │ │ │ ├── CRC32Algorithm.cs.meta │ │ │ ├── YooLogger.cs │ │ │ ├── YooLogger.cs.meta │ │ │ ├── YooUtility.cs │ │ │ └── YooUtility.cs.meta │ │ │ ├── YooAsset.asmdef │ │ │ ├── YooAsset.asmdef.meta │ │ │ ├── YooAssets.cs │ │ │ ├── YooAssets.cs.meta │ │ │ ├── YooAssetsDriver.cs │ │ │ ├── YooAssetsDriver.cs.meta │ │ │ ├── YooAssetsExtension.cs │ │ │ └── YooAssetsExtension.cs.meta │ ├── codeandweb.com.meta │ └── codeandweb.com │ │ ├── Editor.meta │ │ └── Editor │ │ ├── SettingsTexturePackerImporter.txt │ │ ├── SettingsTexturePackerImporter.txt.meta │ │ ├── TPImporter.dll │ │ ├── TPImporter.dll.meta │ │ ├── UIImageSetSizeAndPivot.cs │ │ └── UIImageSetSizeAndPivot.cs.meta ├── HotfixMain │ ├── HotFixActivity.cs │ ├── HotfixMain.csproj │ ├── Net │ │ └── NetworkChannelHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UI │ │ └── Form │ │ │ └── TestForm.cs │ ├── UnityEngine.AudioModule.dll │ ├── UnityEngine.CoreModule.dll │ ├── UnityEngine.InputLegacyModule.dll │ ├── UnityEngine.UnityWebRequestModule.dll │ ├── UnityEngine.UnityWebRequestTextureModule.dll │ ├── copy.sh │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HotfixMain.csproj.AssemblyReference.cache │ │ ├── HotfixMain.csproj.CoreCompileInputs.cache │ │ ├── HotfixMain.csproj.FileListAbsolute.txt │ │ ├── HotfixMain.csproj.Up2Date │ │ ├── HotfixMain.dll │ │ └── HotfixMain.pdb ├── Packages │ ├── com.focus-creative-games.hybridclr_unity │ │ ├── Data~ │ │ │ ├── ModifiedUnityAssemblies │ │ │ │ ├── 2019.4.40.meta │ │ │ │ └── 2019.4.40 │ │ │ │ │ ├── Unity.IL2CPP-Mac.dll │ │ │ │ │ └── Unity.IL2CPP-Win.dll │ │ │ ├── NetStandard │ │ │ │ ├── netstandard2.0.dll │ │ │ │ └── netstandard2.1.dll │ │ │ └── hybridclr_version.json │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── 3rds.meta │ │ │ ├── 3rds │ │ │ │ ├── 7zip.meta │ │ │ │ ├── 7zip │ │ │ │ │ ├── Common.meta │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CRC.cs │ │ │ │ │ │ ├── CRC.cs.meta │ │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ │ ├── CommandLineParser.cs.meta │ │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ │ ├── InBuffer.cs.meta │ │ │ │ │ │ ├── OutBuffer.cs │ │ │ │ │ │ └── OutBuffer.cs.meta │ │ │ │ │ ├── Compress.meta │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── LZ.meta │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ │ ├── IMatchFinder.cs.meta │ │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ │ ├── LzBinTree.cs.meta │ │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ │ ├── LzInWindow.cs.meta │ │ │ │ │ │ │ ├── LzOutWindow.cs │ │ │ │ │ │ │ └── LzOutWindow.cs.meta │ │ │ │ │ │ ├── LZMA.meta │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ │ ├── LzmaBase.cs.meta │ │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ │ ├── LzmaDecoder.cs.meta │ │ │ │ │ │ │ ├── LzmaEncoder.cs │ │ │ │ │ │ │ └── LzmaEncoder.cs.meta │ │ │ │ │ │ ├── RangeCoder.meta │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ │ ├── RangeCoder.cs.meta │ │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ │ ├── RangeCoderBit.cs.meta │ │ │ │ │ │ │ ├── RangeCoderBitTree.cs │ │ │ │ │ │ │ └── RangeCoderBitTree.cs.meta │ │ │ │ │ ├── ICoder.cs │ │ │ │ │ └── ICoder.cs.meta │ │ │ │ ├── UnityFS.meta │ │ │ │ ├── UnityFS │ │ │ │ │ ├── ArchiveFlags.cs │ │ │ │ │ ├── ArchiveFlags.cs.meta │ │ │ │ │ ├── BinaryReaderExtensions.cs │ │ │ │ │ ├── BinaryReaderExtensions.cs.meta │ │ │ │ │ ├── BinaryWriterExtensions.cs │ │ │ │ │ ├── BinaryWriterExtensions.cs.meta │ │ │ │ │ ├── BundleFileInfo.cs │ │ │ │ │ ├── BundleFileInfo.cs.meta │ │ │ │ │ ├── BundleFileReader.cs │ │ │ │ │ ├── BundleFileReader.cs.meta │ │ │ │ │ ├── BundleFileWriter.cs │ │ │ │ │ ├── BundleFileWriter.cs.meta │ │ │ │ │ ├── CompressionType.cs │ │ │ │ │ ├── CompressionType.cs.meta │ │ │ │ │ ├── EndianBinaryReader.cs │ │ │ │ │ ├── EndianBinaryReader.cs.meta │ │ │ │ │ ├── EndianBinaryWriter.cs │ │ │ │ │ ├── EndianBinaryWriter.cs.meta │ │ │ │ │ ├── EndianType.cs │ │ │ │ │ ├── EndianType.cs.meta │ │ │ │ │ ├── GlobalgamedatasPatcher.cs │ │ │ │ │ ├── GlobalgamedatasPatcher.cs.meta │ │ │ │ │ ├── Header.cs │ │ │ │ │ ├── Header.cs.meta │ │ │ │ │ ├── Node.cs │ │ │ │ │ ├── Node.cs.meta │ │ │ │ │ ├── ScriptingAssembliesJsonPatcher.cs │ │ │ │ │ ├── ScriptingAssembliesJsonPatcher.cs.meta │ │ │ │ │ ├── SevenZipHelper.cs │ │ │ │ │ ├── SevenZipHelper.cs.meta │ │ │ │ │ ├── StorageBlock.cs │ │ │ │ │ ├── StorageBlock.cs.meta │ │ │ │ │ ├── StorageBlockFlags.cs │ │ │ │ │ ├── StorageBlockFlags.cs.meta │ │ │ │ │ ├── StreamExtensions.cs │ │ │ │ │ ├── StreamExtensions.cs.meta │ │ │ │ │ ├── StreamFile.cs │ │ │ │ │ ├── StreamFile.cs.meta │ │ │ │ │ ├── UnityBinFile.cs │ │ │ │ │ ├── UnityBinFile.cs.meta │ │ │ │ │ ├── UnityBinFileDefines.cs │ │ │ │ │ ├── UnityBinFileDefines.cs.meta │ │ │ │ │ ├── UnityBinUtils.cs │ │ │ │ │ └── UnityBinUtils.cs.meta │ │ │ │ ├── UnityHook.meta │ │ │ │ └── UnityHook │ │ │ │ │ ├── CodePatcher.cs │ │ │ │ │ ├── CodePatcher.cs.meta │ │ │ │ │ ├── HookPool.cs │ │ │ │ │ ├── HookPool.cs.meta │ │ │ │ │ ├── HookUtils.cs │ │ │ │ │ ├── HookUtils.cs.meta │ │ │ │ │ ├── HookUtils_OSX.cs │ │ │ │ │ ├── HookUtils_OSX.cs.meta │ │ │ │ │ ├── HybridCLRHooks.meta │ │ │ │ │ ├── HybridCLRHooks │ │ │ │ │ ├── CopyStrippedAOTAssembliesHook.cs │ │ │ │ │ ├── CopyStrippedAOTAssembliesHook.cs.meta │ │ │ │ │ ├── GetIl2CppFolderHook.cs │ │ │ │ │ ├── GetIl2CppFolderHook.cs.meta │ │ │ │ │ ├── PatchScriptingAssembliesJsonHook.cs │ │ │ │ │ └── PatchScriptingAssembliesJsonHook.cs.meta │ │ │ │ │ ├── LDasm.cs │ │ │ │ │ ├── LDasm.cs.meta │ │ │ │ │ ├── MethodHook.cs │ │ │ │ │ ├── MethodHook.cs.meta │ │ │ │ │ ├── Plugins.meta │ │ │ │ │ └── Plugins │ │ │ │ │ ├── Utils.cpp │ │ │ │ │ ├── Utils.cpp.meta │ │ │ │ │ ├── build_libMonoHookUtils_OSX.dylib.sh │ │ │ │ │ ├── build_libMonoHookUtils_OSX.dylib.sh.meta │ │ │ │ │ ├── silicon.meta │ │ │ │ │ ├── silicon │ │ │ │ │ ├── libMonoHookUtils_OSX.dylib │ │ │ │ │ └── libMonoHookUtils_OSX.dylib.meta │ │ │ │ │ ├── x86_64.meta │ │ │ │ │ └── x86_64 │ │ │ │ │ ├── libMonoHookUtils_OSX.dylib │ │ │ │ │ └── libMonoHookUtils_OSX.dylib.meta │ │ │ ├── ABI.meta │ │ │ ├── ABI │ │ │ │ ├── ABIUtil.cs │ │ │ │ ├── ABIUtil.cs.meta │ │ │ │ ├── MethodDesc.cs │ │ │ │ ├── MethodDesc.cs.meta │ │ │ │ ├── ParamInfo.cs │ │ │ │ ├── ParamInfo.cs.meta │ │ │ │ ├── ParamOrReturnType.cs │ │ │ │ ├── ParamOrReturnType.cs.meta │ │ │ │ ├── PlatformABI.cs │ │ │ │ ├── PlatformABI.cs.meta │ │ │ │ ├── TypeCreator.cs │ │ │ │ ├── TypeCreator.cs.meta │ │ │ │ ├── TypeInfo.cs │ │ │ │ ├── TypeInfo.cs.meta │ │ │ │ ├── ValueTypeSizeAligmentCalculator.cs │ │ │ │ └── ValueTypeSizeAligmentCalculator.cs.meta │ │ │ ├── AOT.meta │ │ │ ├── AOT │ │ │ │ ├── AOTAssemblyMetadataStripper.cs │ │ │ │ ├── AOTAssemblyMetadataStripper.cs.meta │ │ │ │ ├── Analyzer.cs │ │ │ │ ├── Analyzer.cs.meta │ │ │ │ ├── ConstraintContext.cs │ │ │ │ ├── ConstraintContext.cs.meta │ │ │ │ ├── GenericReferenceWriter.cs │ │ │ │ └── GenericReferenceWriter.cs.meta │ │ │ ├── BuildProcessors.meta │ │ │ ├── BuildProcessors │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2019.cs │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2019.cs.meta │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2020Or2021.cs │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2020Or2021.cs.meta │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2022OrNewer.cs │ │ │ │ ├── AddLil2cppSourceCodeToXcodeproj2022OrNewer.cs.meta │ │ │ │ ├── CheckSettings.cs │ │ │ │ ├── CheckSettings.cs.meta │ │ │ │ ├── CopyStrippedAOTAssemblies.cs │ │ │ │ ├── CopyStrippedAOTAssemblies.cs.meta │ │ │ │ ├── FilterHotFixAssemblies.cs │ │ │ │ ├── FilterHotFixAssemblies.cs.meta │ │ │ │ ├── MsvcStdextWorkaround.cs │ │ │ │ ├── MsvcStdextWorkaround.cs.meta │ │ │ │ ├── PatchScriptingAssemblyList.cs │ │ │ │ ├── PatchScriptingAssemblyList.cs.meta │ │ │ │ ├── ScriptingAssembliesJsonPatcher.cs │ │ │ │ └── ScriptingAssembliesJsonPatcher.cs.meta │ │ │ ├── Commands.meta │ │ │ ├── Commands │ │ │ │ ├── AOTReferenceGeneratorCommand.cs │ │ │ │ ├── AOTReferenceGeneratorCommand.cs.meta │ │ │ │ ├── CompileDllCommand.cs │ │ │ │ ├── CompileDllCommand.cs.meta │ │ │ │ ├── Il2CppDefGeneratorCommand.cs │ │ │ │ ├── Il2CppDefGeneratorCommand.cs.meta │ │ │ │ ├── LinkGeneratorCommand.cs │ │ │ │ ├── LinkGeneratorCommand.cs.meta │ │ │ │ ├── MethodBridgeGeneratorCommand.cs │ │ │ │ ├── MethodBridgeGeneratorCommand.cs.meta │ │ │ │ ├── PrebuildCommand.cs │ │ │ │ ├── PrebuildCommand.cs.meta │ │ │ │ ├── ReversePInvokeWrapperGeneratorCommand.cs │ │ │ │ ├── ReversePInvokeWrapperGeneratorCommand.cs.meta │ │ │ │ ├── StripAOTDllCommand.cs │ │ │ │ └── StripAOTDllCommand.cs.meta │ │ │ ├── HashUtil.cs │ │ │ ├── HashUtil.cs.meta │ │ │ ├── HotUpdate.meta │ │ │ ├── HotUpdate │ │ │ │ ├── MissingMetadataChecker.cs │ │ │ │ └── MissingMetadataChecker.cs.meta │ │ │ ├── HybridCLR.Editor.asmdef │ │ │ ├── HybridCLR.Editor.asmdef.meta │ │ │ ├── Il2CppDef.meta │ │ │ ├── Il2CppDef │ │ │ │ ├── Il2CppDefGenerator.cs │ │ │ │ └── Il2CppDefGenerator.cs.meta │ │ │ ├── Installer.meta │ │ │ ├── Installer │ │ │ │ ├── BashUtil.cs │ │ │ │ ├── BashUtil.cs.meta │ │ │ │ ├── InstallerController.cs │ │ │ │ ├── InstallerController.cs.meta │ │ │ │ ├── InstallerWindow.cs │ │ │ │ └── InstallerWindow.cs.meta │ │ │ ├── Link.meta │ │ │ ├── Link │ │ │ │ ├── Analyzer.cs │ │ │ │ ├── Analyzer.cs.meta │ │ │ │ ├── LinkXmlWriter.cs │ │ │ │ └── LinkXmlWriter.cs.meta │ │ │ ├── Meta.meta │ │ │ ├── Meta │ │ │ │ ├── AssemblyCache.cs │ │ │ │ ├── AssemblyCache.cs.meta │ │ │ │ ├── AssemblyCacheBase.cs │ │ │ │ ├── AssemblyCacheBase.cs.meta │ │ │ │ ├── AssemblyReferenceDeepCollector.cs │ │ │ │ ├── AssemblyReferenceDeepCollector.cs.meta │ │ │ │ ├── AssemblyResolverBase.cs │ │ │ │ ├── AssemblyResolverBase.cs.meta │ │ │ │ ├── CombinedAssemblyResolver.cs │ │ │ │ ├── CombinedAssemblyResolver.cs.meta │ │ │ │ ├── FixedSetAssemblyResolver.cs │ │ │ │ ├── FixedSetAssemblyResolver.cs.meta │ │ │ │ ├── GenericArgumentContext.cs │ │ │ │ ├── GenericArgumentContext.cs.meta │ │ │ │ ├── GenericClass.cs │ │ │ │ ├── GenericClass.cs.meta │ │ │ │ ├── GenericMethod.cs │ │ │ │ ├── GenericMethod.cs.meta │ │ │ │ ├── IAssemblyResolver.cs │ │ │ │ ├── IAssemblyResolver.cs.meta │ │ │ │ ├── MetaUtil.cs │ │ │ │ ├── MetaUtil.cs.meta │ │ │ │ ├── MethodReferenceAnalyzer.cs │ │ │ │ ├── MethodReferenceAnalyzer.cs.meta │ │ │ │ ├── PathAssemblyResolver.cs │ │ │ │ └── PathAssemblyResolver.cs.meta │ │ │ ├── MethodBridge.meta │ │ │ ├── MethodBridge │ │ │ │ ├── Analyzer.cs │ │ │ │ ├── Analyzer.cs.meta │ │ │ │ ├── Generator.cs │ │ │ │ └── Generator.cs.meta │ │ │ ├── ReversePInvokeWrap.meta │ │ │ ├── ReversePInvokeWrap │ │ │ │ ├── Analyzer.cs │ │ │ │ ├── Analyzer.cs.meta │ │ │ │ ├── Generator.cs │ │ │ │ └── Generator.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── EditorStatusWatcher.cs │ │ │ │ ├── EditorStatusWatcher.cs.meta │ │ │ │ ├── HybridCLRSettingProvider.cs │ │ │ │ ├── HybridCLRSettingProvider.cs.meta │ │ │ │ ├── HybridCLRSettings.cs │ │ │ │ ├── HybridCLRSettings.cs.meta │ │ │ │ ├── MenuProvider.cs │ │ │ │ ├── MenuProvider.cs.meta │ │ │ │ ├── ScriptableSignleton.cs │ │ │ │ ├── ScriptableSignleton.cs.meta │ │ │ │ ├── SettingsPresetReceiver.cs │ │ │ │ └── SettingsPresetReceiver.cs.meta │ │ │ ├── SettingsUtil.cs │ │ │ ├── SettingsUtil.cs.meta │ │ │ ├── Template.meta │ │ │ └── Template │ │ │ │ ├── FileRegionReplace.cs │ │ │ │ └── FileRegionReplace.cs.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── LZ4.dll │ │ │ ├── LZ4.dll.meta │ │ │ ├── dnlib.dll │ │ │ └── dnlib.dll.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── README_zh.md │ │ ├── README_zh.md.meta │ │ ├── RELEASELOG.md │ │ ├── RELEASELOG.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── HomologousImageMode.cs │ │ │ ├── HomologousImageMode.cs.meta │ │ │ ├── HybridCLR.Runtime.asmdef │ │ │ ├── HybridCLR.Runtime.asmdef.meta │ │ │ ├── LoadImageErrorCode.cs │ │ │ ├── LoadImageErrorCode.cs.meta │ │ │ ├── ReversePInvokeWrapperGenerationAttribute.cs │ │ │ ├── ReversePInvokeWrapperGenerationAttribute.cs.meta │ │ │ ├── RuntimeApi.cs │ │ │ ├── RuntimeApi.cs.meta │ │ │ ├── RuntimeOptionId.cs │ │ │ └── RuntimeOptionId.cs.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.textmeshpro │ │ ├── .signature │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── TextMeshPro.md │ │ │ └── TextMeshPro.md.meta │ │ ├── Editor Resources.meta │ │ ├── Editor Resources │ │ │ ├── Gizmos.meta │ │ │ ├── Gizmos │ │ │ │ ├── TMP - Dropdown Icon.psd │ │ │ │ ├── TMP - Dropdown Icon.psd.meta │ │ │ │ ├── TMP - Font Asset Icon.psd │ │ │ │ ├── TMP - Font Asset Icon.psd.meta │ │ │ │ ├── TMP - Input Field Icon.psd │ │ │ │ ├── TMP - Input Field Icon.psd.meta │ │ │ │ ├── TMP - Sprite Asset Icon.psd │ │ │ │ ├── TMP - Sprite Asset Icon.psd.meta │ │ │ │ ├── TMP - Text Component Icon.psd │ │ │ │ └── TMP - Text Component Icon.psd.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Properties.cginc │ │ │ │ ├── TMP_Properties.cginc.meta │ │ │ │ ├── TMP_SDF Internal Editor.shader │ │ │ │ ├── TMP_SDF Internal Editor.shader.meta │ │ │ │ ├── TMP_SDF_SSD.cginc │ │ │ │ └── TMP_SDF_SSD.cginc.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── SectionHeader_Dark.psd │ │ │ │ ├── SectionHeader_Dark.psd.meta │ │ │ │ ├── SectionHeader_Light.psd │ │ │ │ ├── SectionHeader_Light.psd.meta │ │ │ │ ├── btn_AlignBaseLine.psd │ │ │ │ ├── btn_AlignBaseLine.psd.meta │ │ │ │ ├── btn_AlignBaseLine_Light.psd │ │ │ │ ├── btn_AlignBaseLine_Light.psd.meta │ │ │ │ ├── btn_AlignBottom.psd │ │ │ │ ├── btn_AlignBottom.psd.meta │ │ │ │ ├── btn_AlignBottom_Light.psd │ │ │ │ ├── btn_AlignBottom_Light.psd.meta │ │ │ │ ├── btn_AlignCapLine.psd │ │ │ │ ├── btn_AlignCapLine.psd.meta │ │ │ │ ├── btn_AlignCapLine_Light.psd │ │ │ │ ├── btn_AlignCapLine_Light.psd.meta │ │ │ │ ├── btn_AlignCenter.psd │ │ │ │ ├── btn_AlignCenter.psd.meta │ │ │ │ ├── btn_AlignCenterGeo.psd │ │ │ │ ├── btn_AlignCenterGeo.psd.meta │ │ │ │ ├── btn_AlignCenterGeo_Light.psd │ │ │ │ ├── btn_AlignCenterGeo_Light.psd.meta │ │ │ │ ├── btn_AlignCenter_Light.psd │ │ │ │ ├── btn_AlignCenter_Light.psd.meta │ │ │ │ ├── btn_AlignFlush.psd │ │ │ │ ├── btn_AlignFlush.psd.meta │ │ │ │ ├── btn_AlignFlush_Light.psd │ │ │ │ ├── btn_AlignFlush_Light.psd.meta │ │ │ │ ├── btn_AlignJustified.psd │ │ │ │ ├── btn_AlignJustified.psd.meta │ │ │ │ ├── btn_AlignJustified_Light.psd │ │ │ │ ├── btn_AlignJustified_Light.psd.meta │ │ │ │ ├── btn_AlignLeft.psd │ │ │ │ ├── btn_AlignLeft.psd.meta │ │ │ │ ├── btn_AlignLeft_Light.psd │ │ │ │ ├── btn_AlignLeft_Light.psd.meta │ │ │ │ ├── btn_AlignMidLine.psd │ │ │ │ ├── btn_AlignMidLine.psd.meta │ │ │ │ ├── btn_AlignMiddle.psd │ │ │ │ ├── btn_AlignMiddle.psd.meta │ │ │ │ ├── btn_AlignMiddle_Light.psd │ │ │ │ ├── btn_AlignMiddle_Light.psd.meta │ │ │ │ ├── btn_AlignMidline_Light.psd │ │ │ │ ├── btn_AlignMidline_Light.psd.meta │ │ │ │ ├── btn_AlignRight.psd │ │ │ │ ├── btn_AlignRight.psd.meta │ │ │ │ ├── btn_AlignRight_Light.psd │ │ │ │ ├── btn_AlignRight_Light.psd.meta │ │ │ │ ├── btn_AlignTop.psd │ │ │ │ ├── btn_AlignTop.psd.meta │ │ │ │ ├── btn_AlignTop_Light.psd │ │ │ │ └── btn_AlignTop_Light.psd.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Package Resources.meta │ │ ├── Package Resources │ │ │ ├── TMP Essential Resources.unitypackage │ │ │ ├── TMP Essential Resources.unitypackage.meta │ │ │ ├── TMP Examples & Extras.unitypackage │ │ │ └── TMP Examples & Extras.unitypackage.meta │ │ ├── PackageConversionData.json │ │ ├── PackageConversionData.json.meta │ │ ├── PackageConversionData_Assets.json │ │ ├── PackageConversionData_Assets.json.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DropdownOptionListDrawer.cs │ │ │ │ ├── DropdownOptionListDrawer.cs.meta │ │ │ │ ├── GlyphInfoDrawer.cs │ │ │ │ ├── GlyphInfoDrawer.cs.meta │ │ │ │ ├── GlyphMetricsPropertyDrawer.cs │ │ │ │ ├── GlyphMetricsPropertyDrawer.cs.meta │ │ │ │ ├── GlyphRectPropertyDrawer.cs │ │ │ │ ├── GlyphRectPropertyDrawer.cs.meta │ │ │ │ ├── TMP_BaseEditorPanel.cs │ │ │ │ ├── TMP_BaseEditorPanel.cs.meta │ │ │ │ ├── TMP_BaseShaderGUI.cs │ │ │ │ ├── TMP_BaseShaderGUI.cs.meta │ │ │ │ ├── TMP_BitmapShaderGUI.cs │ │ │ │ ├── TMP_BitmapShaderGUI.cs.meta │ │ │ │ ├── TMP_CharacterPropertyDrawer.cs │ │ │ │ ├── TMP_CharacterPropertyDrawer.cs.meta │ │ │ │ ├── TMP_ColorGradientAssetMenu.cs │ │ │ │ ├── TMP_ColorGradientAssetMenu.cs.meta │ │ │ │ ├── TMP_ColorGradientEditor.cs │ │ │ │ ├── TMP_ColorGradientEditor.cs.meta │ │ │ │ ├── TMP_DropdownEditor.cs │ │ │ │ ├── TMP_DropdownEditor.cs.meta │ │ │ │ ├── TMP_EditorCoroutine.cs │ │ │ │ ├── TMP_EditorCoroutine.cs.meta │ │ │ │ ├── TMP_EditorPanel.cs │ │ │ │ ├── TMP_EditorPanel.cs.meta │ │ │ │ ├── TMP_EditorPanelUI.cs │ │ │ │ ├── TMP_EditorPanelUI.cs.meta │ │ │ │ ├── TMP_EditorUtility.cs │ │ │ │ ├── TMP_EditorUtility.cs.meta │ │ │ │ ├── TMP_FontAssetEditor.cs │ │ │ │ ├── TMP_FontAssetEditor.cs.meta │ │ │ │ ├── TMP_FontAsset_CreationMenu.cs │ │ │ │ ├── TMP_FontAsset_CreationMenu.cs.meta │ │ │ │ ├── TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs │ │ │ │ ├── TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs.meta │ │ │ │ ├── TMP_GlyphPropertyDrawer.cs │ │ │ │ ├── TMP_GlyphPropertyDrawer.cs.meta │ │ │ │ ├── TMP_InputFieldEditor.cs │ │ │ │ ├── TMP_InputFieldEditor.cs.meta │ │ │ │ ├── TMP_MeshRendererEditor.cs │ │ │ │ ├── TMP_MeshRendererEditor.cs.meta │ │ │ │ ├── TMP_PackageUtilities.cs │ │ │ │ ├── TMP_PackageUtilities.cs.meta │ │ │ │ ├── TMP_PostBuildProcessHandler.cs │ │ │ │ ├── TMP_PostBuildProcessHandler.cs.meta │ │ │ │ ├── TMP_PreBuildProcessor.cs │ │ │ │ ├── TMP_PreBuildProcessor.cs.meta │ │ │ │ ├── TMP_ProjectTextSettings.cs │ │ │ │ ├── TMP_ProjectTextSettings.cs.meta │ │ │ │ ├── TMP_ResourcesLoader.cs │ │ │ │ ├── TMP_ResourcesLoader.cs.meta │ │ │ │ ├── TMP_SDFShaderGUI.cs │ │ │ │ ├── TMP_SDFShaderGUI.cs.meta │ │ │ │ ├── TMP_SerializedPropertyHolder.cs │ │ │ │ ├── TMP_SerializedPropertyHolder.cs.meta │ │ │ │ ├── TMP_SettingsEditor.cs │ │ │ │ ├── TMP_SettingsEditor.cs.meta │ │ │ │ ├── TMP_SpriteAssetEditor.cs │ │ │ │ ├── TMP_SpriteAssetEditor.cs.meta │ │ │ │ ├── TMP_SpriteAssetImporter.cs │ │ │ │ ├── TMP_SpriteAssetImporter.cs.meta │ │ │ │ ├── TMP_SpriteAssetMenu.cs │ │ │ │ ├── TMP_SpriteAssetMenu.cs.meta │ │ │ │ ├── TMP_SpriteCharacterPropertyDrawer.cs │ │ │ │ ├── TMP_SpriteCharacterPropertyDrawer.cs.meta │ │ │ │ ├── TMP_SpriteGlyphPropertyDrawer.cs │ │ │ │ ├── TMP_SpriteGlyphPropertyDrawer.cs.meta │ │ │ │ ├── TMP_StyleAssetMenu.cs │ │ │ │ ├── TMP_StyleAssetMenu.cs.meta │ │ │ │ ├── TMP_StyleSheetEditor.cs │ │ │ │ ├── TMP_StyleSheetEditor.cs.meta │ │ │ │ ├── TMP_SubMeshUI_Editor.cs │ │ │ │ ├── TMP_SubMeshUI_Editor.cs.meta │ │ │ │ ├── TMP_SubMesh_Editor.cs │ │ │ │ ├── TMP_SubMesh_Editor.cs.meta │ │ │ │ ├── TMP_TextAlignmentDrawer.cs │ │ │ │ ├── TMP_TextAlignmentDrawer.cs.meta │ │ │ │ ├── TMP_UIStyleManager.cs │ │ │ │ ├── TMP_UIStyleManager.cs.meta │ │ │ │ ├── TMPro_ContextMenus.cs │ │ │ │ ├── TMPro_ContextMenus.cs.meta │ │ │ │ ├── TMPro_CreateObjectMenu.cs │ │ │ │ ├── TMPro_CreateObjectMenu.cs.meta │ │ │ │ ├── TMPro_EditorShaderUtilities.cs │ │ │ │ ├── TMPro_EditorShaderUtilities.cs.meta │ │ │ │ ├── TMPro_FontAssetCreatorWindow.cs │ │ │ │ ├── TMPro_FontAssetCreatorWindow.cs.meta │ │ │ │ ├── TMPro_FontPlugin.cs │ │ │ │ ├── TMPro_FontPlugin.cs.meta │ │ │ │ ├── TMPro_SortingLayerHelper.cs │ │ │ │ ├── TMPro_SortingLayerHelper.cs.meta │ │ │ │ ├── TMPro_TextContainerEditor.cs │ │ │ │ ├── TMPro_TextContainerEditor.cs.meta │ │ │ │ ├── TMPro_TexturePostProcessor.cs │ │ │ │ ├── TMPro_TexturePostProcessor.cs.meta │ │ │ │ ├── Unity.TextMeshPro.Editor.asmdef │ │ │ │ └── Unity.TextMeshPro.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── FastAction.cs │ │ │ │ ├── FastAction.cs.meta │ │ │ │ ├── ITextPreProcessor.cs │ │ │ │ ├── ITextPreProcessor.cs.meta │ │ │ │ ├── MaterialReferenceManager.cs │ │ │ │ ├── MaterialReferenceManager.cs.meta │ │ │ │ ├── TMP_Asset.cs │ │ │ │ ├── TMP_Asset.cs.meta │ │ │ │ ├── TMP_Character.cs │ │ │ │ ├── TMP_Character.cs.meta │ │ │ │ ├── TMP_CharacterInfo.cs │ │ │ │ ├── TMP_CharacterInfo.cs.meta │ │ │ │ ├── TMP_ColorGradient.cs │ │ │ │ ├── TMP_ColorGradient.cs.meta │ │ │ │ ├── TMP_Compatibility.cs │ │ │ │ ├── TMP_Compatibility.cs.meta │ │ │ │ ├── TMP_CoroutineTween.cs │ │ │ │ ├── TMP_CoroutineTween.cs.meta │ │ │ │ ├── TMP_DefaultControls.cs │ │ │ │ ├── TMP_DefaultControls.cs.meta │ │ │ │ ├── TMP_Dropdown.cs │ │ │ │ ├── TMP_Dropdown.cs.meta │ │ │ │ ├── TMP_EditorResourceManager.cs │ │ │ │ ├── TMP_EditorResourceManager.cs.meta │ │ │ │ ├── TMP_FontAsset.cs │ │ │ │ ├── TMP_FontAsset.cs.meta │ │ │ │ ├── TMP_FontAssetCommon.cs │ │ │ │ ├── TMP_FontAssetCommon.cs.meta │ │ │ │ ├── TMP_FontAssetUtilities.cs │ │ │ │ ├── TMP_FontAssetUtilities.cs.meta │ │ │ │ ├── TMP_FontFeatureTable.cs │ │ │ │ ├── TMP_FontFeatureTable.cs.meta │ │ │ │ ├── TMP_FontFeaturesCommon.cs │ │ │ │ ├── TMP_FontFeaturesCommon.cs.meta │ │ │ │ ├── TMP_InputField.cs │ │ │ │ ├── TMP_InputField.cs.meta │ │ │ │ ├── TMP_InputValidator.cs │ │ │ │ ├── TMP_InputValidator.cs.meta │ │ │ │ ├── TMP_LineInfo.cs │ │ │ │ ├── TMP_LineInfo.cs.meta │ │ │ │ ├── TMP_ListPool.cs │ │ │ │ ├── TMP_ListPool.cs.meta │ │ │ │ ├── TMP_MaterialManager.cs │ │ │ │ ├── TMP_MaterialManager.cs.meta │ │ │ │ ├── TMP_MeshInfo.cs │ │ │ │ ├── TMP_MeshInfo.cs.meta │ │ │ │ ├── TMP_ObjectPool.cs │ │ │ │ ├── TMP_ObjectPool.cs.meta │ │ │ │ ├── TMP_PackageResourceImporter.cs │ │ │ │ ├── TMP_PackageResourceImporter.cs.meta │ │ │ │ ├── TMP_ResourcesManager.cs │ │ │ │ ├── TMP_ResourcesManager.cs.meta │ │ │ │ ├── TMP_RichTextTagsCommon.cs │ │ │ │ ├── TMP_RichTextTagsCommon.cs.meta │ │ │ │ ├── TMP_ScrollbarEventHandler.cs │ │ │ │ ├── TMP_ScrollbarEventHandler.cs.meta │ │ │ │ ├── TMP_SelectionCaret.cs │ │ │ │ ├── TMP_SelectionCaret.cs.meta │ │ │ │ ├── TMP_Settings.cs │ │ │ │ ├── TMP_Settings.cs.meta │ │ │ │ ├── TMP_ShaderUtilities.cs │ │ │ │ ├── TMP_ShaderUtilities.cs.meta │ │ │ │ ├── TMP_Sprite.cs │ │ │ │ ├── TMP_Sprite.cs.meta │ │ │ │ ├── TMP_SpriteAnimator.cs │ │ │ │ ├── TMP_SpriteAnimator.cs.meta │ │ │ │ ├── TMP_SpriteAsset.cs │ │ │ │ ├── TMP_SpriteAsset.cs.meta │ │ │ │ ├── TMP_SpriteAssetImportFormats.cs │ │ │ │ ├── TMP_SpriteAssetImportFormats.cs.meta │ │ │ │ ├── TMP_SpriteCharacter.cs │ │ │ │ ├── TMP_SpriteCharacter.cs.meta │ │ │ │ ├── TMP_SpriteGlyph.cs │ │ │ │ ├── TMP_SpriteGlyph.cs.meta │ │ │ │ ├── TMP_Style.cs │ │ │ │ ├── TMP_Style.cs.meta │ │ │ │ ├── TMP_StyleSheet.cs │ │ │ │ ├── TMP_StyleSheet.cs.meta │ │ │ │ ├── TMP_SubMesh.cs │ │ │ │ ├── TMP_SubMesh.cs.meta │ │ │ │ ├── TMP_SubMeshUI.cs │ │ │ │ ├── TMP_SubMeshUI.cs.meta │ │ │ │ ├── TMP_Text.cs │ │ │ │ ├── TMP_Text.cs.meta │ │ │ │ ├── TMP_TextElement.cs │ │ │ │ ├── TMP_TextElement.cs.meta │ │ │ │ ├── TMP_TextElement_Legacy.cs │ │ │ │ ├── TMP_TextElement_Legacy.cs.meta │ │ │ │ ├── TMP_TextInfo.cs │ │ │ │ ├── TMP_TextInfo.cs.meta │ │ │ │ ├── TMP_TextParsingUtilities.cs │ │ │ │ ├── TMP_TextParsingUtilities.cs.meta │ │ │ │ ├── TMP_TextProcessingStack.cs │ │ │ │ ├── TMP_TextProcessingStack.cs.meta │ │ │ │ ├── TMP_TextUtilities.cs │ │ │ │ ├── TMP_TextUtilities.cs.meta │ │ │ │ ├── TMP_UpdateManager.cs │ │ │ │ ├── TMP_UpdateManager.cs.meta │ │ │ │ ├── TMP_UpdateRegistery.cs │ │ │ │ ├── TMP_UpdateRegistery.cs.meta │ │ │ │ ├── TMPro_EventManager.cs │ │ │ │ ├── TMPro_EventManager.cs.meta │ │ │ │ ├── TMPro_ExtensionMethods.cs │ │ │ │ ├── TMPro_ExtensionMethods.cs.meta │ │ │ │ ├── TMPro_MeshUtilities.cs │ │ │ │ ├── TMPro_MeshUtilities.cs.meta │ │ │ │ ├── TMPro_Private.cs │ │ │ │ ├── TMPro_Private.cs.meta │ │ │ │ ├── TMPro_UGUI_Private.cs │ │ │ │ ├── TMPro_UGUI_Private.cs.meta │ │ │ │ ├── TextContainer.cs │ │ │ │ ├── TextContainer.cs.meta │ │ │ │ ├── TextMeshPro.cs │ │ │ │ ├── TextMeshPro.cs.meta │ │ │ │ ├── TextMeshProUGUI.cs │ │ │ │ ├── TextMeshProUGUI.cs.meta │ │ │ │ ├── Unity.TextMeshPro.asmdef │ │ │ │ └── Unity.TextMeshPro.asmdef.meta │ │ ├── Tests.meta │ │ ├── ValidationExceptions.json │ │ ├── ValidationExceptions.json.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── HybridCLRSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── boot.config └── UserSettings │ ├── EditorUserSettings.asset │ ├── Layouts │ └── default-2021.dwlt │ └── Search.settings ├── PROTO ├── CMakeLists.txt ├── Google.Protobuf │ ├── ByteArray.cs │ ├── ByteString.cs │ ├── CodedInputStream.cs │ ├── CodedOutputStream.ComputeSize.cs │ ├── CodedOutputStream.cs │ ├── Collections │ │ ├── Lists.cs │ │ ├── MapField.cs │ │ ├── ProtobufEqualityComparers.cs │ │ └── RepeatedField.cs │ ├── ExtensionValue.cs │ ├── FieldCodec.cs │ ├── IDeepCloneable.cs │ ├── IMessage.cs │ ├── InvalidProtocolBufferException.cs │ ├── LimitedInputStream.cs │ ├── MessageExtensions.cs │ ├── MessageParser.cs │ ├── ObjectIntPair.cs │ ├── ParseContext.cs │ ├── ParserInternalState.cs │ ├── ParsingPrimitives.cs │ ├── ParsingPrimitivesMessages.cs │ ├── ProtoPreconditions.cs │ ├── SegmentedBufferHelper.cs │ ├── UnknownField.cs │ ├── UnknownFieldSet.cs │ ├── WireFormat.cs │ ├── WriteBufferHelper.cs │ ├── WriteContext.cs │ ├── WriterInternalState.cs │ ├── WritingPrimitives.cs │ └── WritingPrimitivesMessages.cs ├── buildProto.sh ├── buildProtoCfg.sh ├── buildProtoNet.sh ├── csharp_cfg │ ├── BUILD.bazel │ ├── csharp_bootstrap_unittest.cc │ ├── csharp_doc_comment.cc │ ├── csharp_doc_comment.h │ ├── csharp_enum.cc │ ├── csharp_enum.h │ ├── csharp_enum_field.cc │ ├── csharp_enum_field.h │ ├── csharp_field_base.cc │ ├── csharp_field_base.h │ ├── csharp_generator.cc │ ├── csharp_generator.h │ ├── csharp_generator_unittest.cc │ ├── csharp_helpers.cc │ ├── csharp_helpers.h │ ├── csharp_map_field.cc │ ├── csharp_map_field.h │ ├── csharp_message.cc │ ├── csharp_message.h │ ├── csharp_message_field.cc │ ├── csharp_message_field.h │ ├── csharp_options.h │ ├── csharp_primitive_field.cc │ ├── csharp_primitive_field.h │ ├── csharp_reflection_class.cc │ ├── csharp_reflection_class.h │ ├── csharp_repeated_enum_field.cc │ ├── csharp_repeated_enum_field.h │ ├── csharp_repeated_message_field.cc │ ├── csharp_repeated_message_field.h │ ├── csharp_repeated_primitive_field.cc │ ├── csharp_repeated_primitive_field.h │ ├── csharp_source_generator_base.cc │ ├── csharp_source_generator_base.h │ ├── csharp_wrapper_field.cc │ ├── csharp_wrapper_field.h │ ├── names.cc │ └── names.h ├── csharp_lite │ ├── BUILD.bazel │ ├── csharp_bootstrap_unittest.cc │ ├── csharp_doc_comment.cc │ ├── csharp_doc_comment.h │ ├── csharp_enum.cc │ ├── csharp_enum.h │ ├── csharp_enum_field.cc │ ├── csharp_enum_field.h │ ├── csharp_field_base.cc │ ├── csharp_field_base.h │ ├── csharp_generator.cc │ ├── csharp_generator.h │ ├── csharp_generator_unittest.cc │ ├── csharp_helpers.cc │ ├── csharp_helpers.h │ ├── csharp_map_field.cc │ ├── csharp_map_field.h │ ├── csharp_message.cc │ ├── csharp_message.h │ ├── csharp_message_field.cc │ ├── csharp_message_field.h │ ├── csharp_options.h │ ├── csharp_primitive_field.cc │ ├── csharp_primitive_field.h │ ├── csharp_reflection_class.cc │ ├── csharp_reflection_class.h │ ├── csharp_repeated_enum_field.cc │ ├── csharp_repeated_enum_field.h │ ├── csharp_repeated_message_field.cc │ ├── csharp_repeated_message_field.h │ ├── csharp_repeated_primitive_field.cc │ ├── csharp_repeated_primitive_field.h │ ├── csharp_source_generator_base.cc │ ├── csharp_source_generator_base.h │ ├── csharp_wrapper_field.cc │ ├── csharp_wrapper_field.h │ ├── names.cc │ └── names.h ├── csharp_net │ ├── BUILD.bazel │ ├── csharp_bootstrap_unittest.cc │ ├── csharp_doc_comment.cc │ ├── csharp_doc_comment.h │ ├── csharp_enum.cc │ ├── csharp_enum.h │ ├── csharp_enum_field.cc │ ├── csharp_enum_field.h │ ├── csharp_field_base.cc │ ├── csharp_field_base.h │ ├── csharp_generator.cc │ ├── csharp_generator.h │ ├── csharp_generator_unittest.cc │ ├── csharp_helpers.cc │ ├── csharp_helpers.h │ ├── csharp_map_field.cc │ ├── csharp_map_field.h │ ├── csharp_message.cc │ ├── csharp_message.h │ ├── csharp_message_field.cc │ ├── csharp_message_field.h │ ├── csharp_options.h │ ├── csharp_primitive_field.cc │ ├── csharp_primitive_field.h │ ├── csharp_reflection_class.cc │ ├── csharp_reflection_class.h │ ├── csharp_repeated_enum_field.cc │ ├── csharp_repeated_enum_field.h │ ├── csharp_repeated_message_field.cc │ ├── csharp_repeated_message_field.h │ ├── csharp_repeated_primitive_field.cc │ ├── csharp_repeated_primitive_field.h │ ├── csharp_source_generator_base.cc │ ├── csharp_source_generator_base.h │ ├── csharp_wrapper_field.cc │ ├── csharp_wrapper_field.h │ ├── names.cc │ └── names.h └── net │ ├── Common.cs │ ├── Common.proto │ ├── RespFullyLst.cs │ ├── RespFullyLst.proto │ ├── RqstFully.cs │ ├── RqstFully.proto │ ├── protoc.exe │ └── run.bat ├── README.md └── Server ├── Server.sln └── Server ├── .vs └── Server.csproj.dtbcache.json ├── App.config ├── Gen ├── Common.cs ├── RespFullyLst.cs └── RqstFully.cs ├── Google.Protobuf ├── ByteArray.cs ├── ByteString.cs ├── CodedInputStream.cs ├── CodedOutputStream.ComputeSize.cs ├── CodedOutputStream.cs ├── Collections │ ├── Lists.cs │ ├── MapField.cs │ ├── ProtobufEqualityComparers.cs │ └── RepeatedField.cs ├── ExtensionValue.cs ├── FieldCodec.cs ├── IDeepCloneable.cs ├── IMessage.cs ├── InvalidProtocolBufferException.cs ├── LimitedInputStream.cs ├── MessageExtensions.cs ├── MessageParser.cs ├── ObjectIntPair.cs ├── ParseContext.cs ├── ParserInternalState.cs ├── ParsingPrimitives.cs ├── ParsingPrimitivesMessages.cs ├── ProtoPreconditions.cs ├── SegmentedBufferHelper.cs ├── UnknownField.cs ├── UnknownFieldSet.cs ├── WireFormat.cs ├── WriteBufferHelper.cs ├── WriteContext.cs ├── WriterInternalState.cs ├── WritingPrimitives.cs └── WritingPrimitivesMessages.cs ├── KCP ├── FakeKcpIO.cs ├── IKcpInterface.cs ├── IKcpSegment.cs ├── Kcp.cs ├── KcpCore.cs ├── KcpIO.cs ├── KcpOutputWriter.cs ├── KcpSegment.cs ├── KcpTrace.cs ├── SegManager.cs └── Utility.cs ├── LockStepEngine ├── BaseType │ ├── LAxis2D.cs │ ├── LAxis3D.cs │ ├── LFloat.cs │ ├── LMatrix33.cs │ ├── LQuaternion.cs │ ├── LRect.cs │ ├── LVector2.cs │ ├── LVector2Int.cs │ ├── LVector3.cs │ └── LVector3Int.cs ├── LMath.cs ├── LTime.cs └── LUT │ ├── LUTAcos.cs │ ├── LUTAsin.cs │ ├── LUTAtan2.cs │ └── LUTSinCos.cs ├── Manager ├── ClientController.cs ├── ControllerManager.cs ├── LoginController.cs ├── RoomController.cs └── RunServer.cs ├── Model ├── BaseController.cs ├── Client.cs ├── ConnHelper.cs ├── GameRoom.cs └── HashCodeMatcher.cs ├── MySql.Data.dll ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Server.csproj ├── Server.csproj.user ├── Telepathy ├── Common.cs ├── ConnectionState.cs ├── EventType.cs ├── Log.cs ├── MagnificentReceivePipe.cs ├── MagnificentSendPipe.cs ├── NetworkStreamExtensions.cs ├── Pool.cs ├── Server.cs ├── ThreadFunctions.cs └── Utils.cs └── packages.config /CONFIG/DataTables/Datas/AssetsPath.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/AssetsPath.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/Collision.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/Collision.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/Entity.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/Entity.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/EntityGroup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/EntityGroup.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/ItemTest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/ItemTest.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/PoolParam.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/PoolParam.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/SkillInfo.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/SkillInfo.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/Sound.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/Sound.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/SoundConstant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/SoundConstant.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/SoundGroup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/SoundGroup.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/SoundParam.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/SoundParam.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/UIEntity.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/UIEntity.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/__beans__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/__beans__.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/__enums__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/__enums__.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/__tables__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/__tables__.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/l10n/Language_en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/l10n/Language_en.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/l10n/Text/language.txt: -------------------------------------------------------------------------------- 1 | 200001 -------------------------------------------------------------------------------- /CONFIG/DataTables/Datas/l10n/language_ch.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Datas/l10n/language_ch.xlsx -------------------------------------------------------------------------------- /CONFIG/DataTables/Defines/l10n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/Defines/l10n.xml -------------------------------------------------------------------------------- /CONFIG/DataTables/luban.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/DataTables/luban.conf -------------------------------------------------------------------------------- /CONFIG/Luban/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/CommandLine.dll -------------------------------------------------------------------------------- /CONFIG/Luban/ExcelDataReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/ExcelDataReader.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Google.Protobuf.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Bson.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Bson.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Bson.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.CSharp.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.CSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.CSharp.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Core.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Core.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Cpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Cpp.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Cpp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Cpp.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataLoader.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataLoader.Builtin.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataLoader.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataLoader.Builtin.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataTarget.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataTarget.Builtin.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataTarget.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataTarget.Builtin.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataValidator.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataValidator.Builtin.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.DataValidator.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.DataValidator.Builtin.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.FlatBuffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.FlatBuffers.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.FlatBuffers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.FlatBuffers.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Gdscript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Gdscript.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Gdscript.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Gdscript.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Golang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Golang.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Golang.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Golang.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Java.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Java.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Java.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Java.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.L10N.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.L10N.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.L10N.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.L10N.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Lua.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Lua.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Lua.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.MsgPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.MsgPack.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.MsgPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.MsgPack.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Protobuf.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Protobuf.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Python.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Python.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Python.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Python.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Schema.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Schema.Builtin.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Schema.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Schema.Builtin.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Typescript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Typescript.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.Typescript.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.Typescript.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.deps.json -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.exe -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.pdb -------------------------------------------------------------------------------- /CONFIG/Luban/Luban.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Luban.runtimeconfig.json -------------------------------------------------------------------------------- /CONFIG/Luban/MessagePack.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/MessagePack.Annotations.dll -------------------------------------------------------------------------------- /CONFIG/Luban/MessagePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/MessagePack.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /CONFIG/Luban/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/NLog.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Neo.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Neo.Lua.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Scriban.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Scriban.dll -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/common/cpp/enum.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/common/cpp/enum.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/common/cs/enum.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/common/cs/enum.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/common/go/enum.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/common/go/enum.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/common/java/enum.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/common/java/enum.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/common/ts/enum.sbn: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cpp-bin/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cpp-bin/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cpp-bin/schema_cpp.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cpp-bin/schema_cpp.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cpp-bin/schema_h.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cpp-bin/schema_h.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cpp-bin/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cpp-bin/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cpp-bin/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cpp-bin/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-bin/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-bin/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-bin/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-bin/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-bin/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-bin/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-dotnet-json/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-dotnet-json/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-dotnet-json/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-dotnet-json/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-dotnet-json/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-dotnet-json/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-editor-json/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-editor-json/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-editor-json/enum.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-editor-json/enum.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-simple-json/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-simple-json/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-simple-json/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-simple-json/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/cs-simple-json/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/cs-simple-json/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/flatbuffers/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/flatbuffers/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/gdscript-json/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/gdscript-json/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-bin/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-bin/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-bin/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-bin/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-bin/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-bin/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-json/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-json/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-json/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-json/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/go-json/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/go-json/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-bin/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-bin/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-bin/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-bin/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-bin/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-bin/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-json/bean.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-json/bean.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-json/table.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-json/table.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/java-json/tables.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/java-json/tables.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/lua-bin/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/lua-bin/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/lua-lua/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/lua-lua/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/pb/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/pb/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/python-json/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/python-json/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Templates/typescript-json/schema.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Templates/typescript-json/schema.sbn -------------------------------------------------------------------------------- /CONFIG/Luban/Ude.NetStandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/Ude.NetStandard.dll -------------------------------------------------------------------------------- /CONFIG/Luban/YamlDotNet.NetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/YamlDotNet.NetCore.dll -------------------------------------------------------------------------------- /CONFIG/Luban/de/Neo.Lua.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Luban/de/Neo.Lua.resources.dll -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/gen_language_list.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/gen_language_list.bat -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/gen_language_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/gen_language_list.sh -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/gen_pb_schema_data.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/gen_pb_schema_data.bat -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/gen_pb_schema_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/gen_pb_schema_data.sh -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/AssetsPathConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/AssetsPathConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/CollisionConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/CollisionConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/EntityConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/EntityConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/EntityGroupConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/EntityGroupConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/ItemTestConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/ItemTestConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/PoolParamConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/PoolParamConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/SkillInfoConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/SkillInfoConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/SoundConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/SoundConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/SoundConstantConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/SoundConstantConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/SoundGroupConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/SoundGroupConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/SoundParamConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/SoundParamConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/UIEntityConfig_pb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/UIEntityConfig_pb.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/l10n_language_ch.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/l10n_language_ch.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_bin/l10n_language_en.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_bin/l10n_language_en.bytes -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_proto/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_proto/Schema.cs -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/pb_proto/schema.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/pb_proto/schema.proto -------------------------------------------------------------------------------- /CONFIG/Protobuf3_bin/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/Protobuf3_bin/protoc.exe -------------------------------------------------------------------------------- /CONFIG/buildLuban.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/buildLuban.sh -------------------------------------------------------------------------------- /CONFIG/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/CONFIG/说明.txt -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/AssetBundleCollectorSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/AssetBundleCollectorSetting.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/AssetBundleCollectorSetting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/AssetBundleCollectorSetting.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/effects.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/effects/Mutant.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/effects/Mutant.fbx -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/effects/Mutant.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/effects/Mutant.fbx.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/materials.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/prefab.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/prefab/TestForm.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/prefab/TestForm.prefab -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/prefab/TestForm.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/prefab/TestForm.prefab.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/prefab/UILoadForm.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/prefab/UILoadForm.prefab -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/prefab/UILoadForm.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/prefab/UILoadForm.prefab.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/RectGuidanceShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/RectGuidanceShader.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/Shadow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/Shadow.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/Shadow.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/Shadow.shader.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/SpriteUI_Alpha.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/SpriteUI_Alpha.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/UI_BGBlur.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/UI_BGBlur.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/UI_BGBlur.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/UI_BGBlur.shader.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/sv.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/sv.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/sv.json.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/sv.shadervariants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/sv.shadervariants -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/shader/sv.shadervariants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/shader/sv.shadervariants.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/atlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/atlas.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/atlas/chat.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/atlas/chat.spriteatlas -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/atlas/main.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/atlas/main.spriteatlas -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/sprite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/sprite.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/sprite/chat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/sprite/chat.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/sprites/sprite/main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/sprites/sprite/main.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Heavy.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Heavy.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Heavy.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Heavy.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Medium.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Medium.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Medium.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Medium.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Regular.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Regular.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Regular.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/PuHuiTi-Regular.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/emoji one.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/emoji one.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Buildin/tmp/emoji one.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Buildin/tmp/emoji one.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/AutoBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/AutoBuild.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/AutoBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/AutoBuild.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/BaseEditorInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/BaseEditorInspector.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/BaseEditorInspector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/BaseEditorInspector.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/DefaultAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/DefaultAssetEditor.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/DefaultAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/DefaultAssetEditor.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/EditorTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/EditorTool.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/EditorTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/EditorTool.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/HybridCLREditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/HybridCLREditor.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/HybridCLREditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/HybridCLREditor.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/LogRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/LogRedirect.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/LogRedirect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/LogRedirect.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/MeshRenderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/MeshRenderEditor.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/MeshRenderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/MeshRenderEditor.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/ReferenceFinder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/ReferenceFinder.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/collectConfig.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/collectConfig.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/collectConfig/extra_Codes.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/collectConfig/extra_Codes.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Editor/collectConfig/extra_Video.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Editor/collectConfig/extra_Video.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/DefaultTextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/DefaultTextHelper.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/DinLogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/DinLogHelper.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/DinLogHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/DinLogHelper.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/EventPool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/EventPool.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/EventPool/EventPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/EventPool/EventPool.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/GameFrameworkLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/GameFrameworkLog.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/Singleton.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/Singleton.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/TLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/TLogger.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/TLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/TLogger.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/Utility.Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/Utility.Assembly.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/Utility.Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/Utility.Text.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Base/Utility.Text.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Base/Utility.Text.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Config.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/DataStruct.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/DataStruct.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Event.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Event.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Event/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Event/Base.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/Fsm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/Fsm.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/Fsm.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/Fsm.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmBase.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmManager.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/FsmState.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsm.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsm.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsm.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsmManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Fsm/IFsmManager.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/HotFix.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/HotFix.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/HotFix/MonoHot/MonoHot.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MonoHot" 3 | } 4 | -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/Base.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/KCP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/KCP.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/Kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/Kcp.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/KcpCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/KcpCore.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/KcpIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/KcpIO.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/KCP/Utility.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Net/Telepathy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Net/Telepathy.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/ObjectPool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/ObjectPool.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Procedure.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Procedure.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/ReferencePool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/ReferencePool.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Resource.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Resource.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Resource/ResourceHelper.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | public class ResourceHelper : MonoBehaviour 3 | { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Timer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Timer.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/Base.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/Base/IUIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/Base/IUIForm.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/UGUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/UGUI.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/UIComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/UIComponent.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/UIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/UIForm.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/UIForm.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/UIForm.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/UI/UIFormLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/UI/UIFormLogic.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Component/Variable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Component/Variable.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor/GameEnterInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor/GameEnterInspector.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor/HelperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor/HelperInfo.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor/HelperInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor/HelperInfo.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor/Type.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Editor/Type.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Editor/Type.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/GameEnter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/GameEnter.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/GameEnter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/GameEnter.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Google.Protobuf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Google.Protobuf.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/TMP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/TMP.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/TMP/TMPAssetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/TMP/TMPAssetLoader.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/TMP/TMPAssetLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/TMP/TMPAssetLoader.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/GameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/GameUtil.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/GameUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/GameUtil.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/JsonTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/JsonTool.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/JsonTool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/JsonTool.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/Log.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/Log.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/MultiMap.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/MultiMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/MultiMap.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/TimerTimeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/TimerTimeUtility.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/ZipUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/ZipUtility.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Util/ZipUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Util/ZipUtility.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Utility.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Utility/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Utility/Constant.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Utility/Constant.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Utility/Constant.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Framework/Utility/UnityExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Framework/Utility/UnityExtension.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/Config.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/Config/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/Config/Schema.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/Config/Schema.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/Config/Schema.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/Common.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/Common.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/Common.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/RespFullyLst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/RespFullyLst.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/RespFullyLst.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/RespFullyLst.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/RqstFully.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/RqstFully.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Generated/netGen/RqstFully.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Generated/netGen/RqstFully.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/HybridCLRGenerate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/HybridCLRGenerate.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/HybridCLRGenerate/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/HybridCLRGenerate/link.xml -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/HybridCLRGenerate/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/HybridCLRGenerate/link.xml.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/AsyncLazy.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/AsyncUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/AsyncUnit.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Channel.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/External.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/External.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Internal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Internal.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/All.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/All.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Any.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Buffer.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Cast.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Concat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Concat.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Count.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Count.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Create.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Do.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Do.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Empty.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Except.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Except.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/First.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/First.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Join.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Last.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Last.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Max.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Merge.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Min.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/MinMax.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Never.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Never.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/OfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/OfType.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Queue.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Range.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Repeat.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Return.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Select.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Single.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Skip.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Sum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Sum.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Take.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Take.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Throw.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/ToList.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Union.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Union.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Where.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Linq/Zip.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Progress.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/TaskPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/TaskPool.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Triggers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/Triggers.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.Run.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.asmdef -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTask.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTaskVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/Runtime/UniTaskVoid.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/package.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Plugins/UniTask/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Plugins/UniTask/package.json.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Resources.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Resources/BuildinFileManifest.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Resources/BuildinFileManifest.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Resources/YooAssetSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Resources/YooAssetSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Resources/YooAssetSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Resources/YooAssetSettings.asset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Scene.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Scene/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Scene/Main.unity -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Scene/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Scene/Main.unity.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Scene/uiedit.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Scene/uiedit.unity -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Scene/uiedit.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Scene/uiedit.unity.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/StreamingAssets/buildin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/StreamingAssets/buildin.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Heavy.ttf -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Medium.ttf -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Fonts/PuHuiTi-Regular.ttf -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Sprites/emoji one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Sprites/emoji one.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/TextMesh Pro/Sprites/emoji one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/TextMesh Pro/Sprites/emoji one.png -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/README.md -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/README.md.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Images.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Reporter.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/Unity-Logs-Viewer/Reporter/Test.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/Common.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/Common/AssetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/Common/AssetInfo.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/EditorDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/EditorDefine.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/EditorDefine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/EditorDefine.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/EditorTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/EditorTools.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/EditorTools.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/EditorTools.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/HomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/HomePage.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/HomePage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/HomePage.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/SettingLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/SettingLoader.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/SettingLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/SettingLoader.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/UIElements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/UIElements.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Editor/YooAsset.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Editor/YooAsset.Editor.asmdef -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/CacheSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/CacheSystem.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/DiagnosticSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/DiagnosticSystem.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/DownloadSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/DownloadSystem.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/OperationSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/OperationSystem.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/ResourceManager.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/ResourceManager.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/ResourcePackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/ResourcePackage.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/Services.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/Settings.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility/YooLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility/YooLogger.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility/YooUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/Utility/YooUtility.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAsset.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAsset.asmdef -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAsset.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAsset.asmdef.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssets.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssets.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssets.cs.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssetsDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssetsDriver.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssetsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/YooAsset/Runtime/YooAssetsExtension.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/codeandweb.com.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/codeandweb.com.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/codeandweb.com/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/codeandweb.com/Editor.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Assets/codeandweb.com/Editor/TPImporter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Assets/codeandweb.com/Editor/TPImporter.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/HotFixActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/HotFixActivity.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/HotfixMain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/HotfixMain.csproj -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/Net/NetworkChannelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/Net/NetworkChannelHelper.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/UI/Form/TestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/UI/Form/TestForm.cs -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/UnityEngine.AudioModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/UnityEngine.AudioModule.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/UnityEngine.InputLegacyModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/UnityEngine.InputLegacyModule.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/copy.sh -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/obj/Debug/HotfixMain.csproj.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/obj/Debug/HotfixMain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/obj/Debug/HotfixMain.dll -------------------------------------------------------------------------------- /HybridCLR_UNITY/HotfixMain/obj/Debug/HotfixMain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/HotfixMain/obj/Debug/HotfixMain.pdb -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/.signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/.signature -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/CHANGELOG.md -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/LICENSE.md -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/Scripts.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/Tests.meta -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/com.unity.textmeshpro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/com.unity.textmeshpro/package.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/manifest.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/Packages/packages-lock.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/HybridCLRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/HybridCLRSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HybridCLR_UNITY/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /HybridCLR_UNITY/UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/HybridCLR_UNITY/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /HybridCLR_UNITY/UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /PROTO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/CMakeLists.txt -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/CodedOutputStream.ComputeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/CodedOutputStream.ComputeSize.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/Collections/Lists.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/Collections/MapField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/Collections/MapField.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/Collections/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/Collections/RepeatedField.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ExtensionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ExtensionValue.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/IDeepCloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/IDeepCloneable.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/InvalidProtocolBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/InvalidProtocolBufferException.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ObjectIntPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ObjectIntPair.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ParseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ParseContext.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ParserInternalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ParserInternalState.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ParsingPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ParsingPrimitives.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ParsingPrimitivesMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ParsingPrimitivesMessages.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/SegmentedBufferHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/SegmentedBufferHelper.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/UnknownField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/UnknownField.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/UnknownFieldSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/UnknownFieldSet.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WriteBufferHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WriteBufferHelper.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WriteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WriteContext.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WriterInternalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WriterInternalState.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WritingPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WritingPrimitives.cs -------------------------------------------------------------------------------- /PROTO/Google.Protobuf/WritingPrimitivesMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/Google.Protobuf/WritingPrimitivesMessages.cs -------------------------------------------------------------------------------- /PROTO/buildProto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/buildProto.sh -------------------------------------------------------------------------------- /PROTO/buildProtoCfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/buildProtoCfg.sh -------------------------------------------------------------------------------- /PROTO/buildProtoNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/buildProtoNet.sh -------------------------------------------------------------------------------- /PROTO/csharp_cfg/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/BUILD.bazel -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_doc_comment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_doc_comment.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_doc_comment.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_enum.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_enum.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_field_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_field_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_field_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_field_base.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_generator.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_generator.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_generator_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_generator_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_helpers.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_helpers.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_map_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_map_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_message.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_message.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_options.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_reflection_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_reflection_class.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_reflection_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_reflection_class.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_repeated_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_repeated_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_source_generator_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_source_generator_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_source_generator_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_source_generator_base.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_wrapper_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_wrapper_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/csharp_wrapper_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/csharp_wrapper_field.h -------------------------------------------------------------------------------- /PROTO/csharp_cfg/names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/names.cc -------------------------------------------------------------------------------- /PROTO/csharp_cfg/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_cfg/names.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/BUILD.bazel -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_doc_comment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_doc_comment.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_doc_comment.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_enum.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_enum.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_field_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_field_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_field_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_field_base.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_generator.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_generator.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_generator_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_generator_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_helpers.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_helpers.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_map_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_map_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_message.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_message.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_options.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_reflection_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_reflection_class.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_reflection_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_reflection_class.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_repeated_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_repeated_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_source_generator_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_source_generator_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_source_generator_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_source_generator_base.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_wrapper_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_wrapper_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/csharp_wrapper_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/csharp_wrapper_field.h -------------------------------------------------------------------------------- /PROTO/csharp_lite/names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/names.cc -------------------------------------------------------------------------------- /PROTO/csharp_lite/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_lite/names.h -------------------------------------------------------------------------------- /PROTO/csharp_net/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/BUILD.bazel -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_doc_comment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_doc_comment.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_doc_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_doc_comment.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_enum.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_enum.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_field_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_field_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_field_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_field_base.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_generator.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_generator.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_generator_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_generator_unittest.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_helpers.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_helpers.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_map_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_map_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_message.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_message.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_options.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_reflection_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_reflection_class.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_reflection_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_reflection_class.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_enum_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_enum_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_message_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_message_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_primitive_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_repeated_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_repeated_primitive_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_source_generator_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_source_generator_base.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_source_generator_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_source_generator_base.h -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_wrapper_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_wrapper_field.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/csharp_wrapper_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/csharp_wrapper_field.h -------------------------------------------------------------------------------- /PROTO/csharp_net/names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/names.cc -------------------------------------------------------------------------------- /PROTO/csharp_net/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/csharp_net/names.h -------------------------------------------------------------------------------- /PROTO/net/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/Common.cs -------------------------------------------------------------------------------- /PROTO/net/Common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/Common.proto -------------------------------------------------------------------------------- /PROTO/net/RespFullyLst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/RespFullyLst.cs -------------------------------------------------------------------------------- /PROTO/net/RespFullyLst.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/RespFullyLst.proto -------------------------------------------------------------------------------- /PROTO/net/RqstFully.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/RqstFully.cs -------------------------------------------------------------------------------- /PROTO/net/RqstFully.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/RqstFully.proto -------------------------------------------------------------------------------- /PROTO/net/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/protoc.exe -------------------------------------------------------------------------------- /PROTO/net/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/PROTO/net/run.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/README.md -------------------------------------------------------------------------------- /Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server.sln -------------------------------------------------------------------------------- /Server/Server/.vs/Server.csproj.dtbcache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/.vs/Server.csproj.dtbcache.json -------------------------------------------------------------------------------- /Server/Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/App.config -------------------------------------------------------------------------------- /Server/Server/Gen/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Gen/Common.cs -------------------------------------------------------------------------------- /Server/Server/Gen/RespFullyLst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Gen/RespFullyLst.cs -------------------------------------------------------------------------------- /Server/Server/Gen/RqstFully.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Gen/RqstFully.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/Collections/Lists.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/Collections/MapField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/Collections/MapField.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/Collections/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/Collections/RepeatedField.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ExtensionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ExtensionValue.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/IDeepCloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/IDeepCloneable.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ObjectIntPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ObjectIntPair.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ParseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ParseContext.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ParserInternalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ParserInternalState.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ParsingPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ParsingPrimitives.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ParsingPrimitivesMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ParsingPrimitivesMessages.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/SegmentedBufferHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/SegmentedBufferHelper.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/UnknownField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/UnknownField.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/UnknownFieldSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/UnknownFieldSet.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WriteBufferHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WriteBufferHelper.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WriteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WriteContext.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WriterInternalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WriterInternalState.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WritingPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WritingPrimitives.cs -------------------------------------------------------------------------------- /Server/Server/Google.Protobuf/WritingPrimitivesMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Google.Protobuf/WritingPrimitivesMessages.cs -------------------------------------------------------------------------------- /Server/Server/KCP/FakeKcpIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/FakeKcpIO.cs -------------------------------------------------------------------------------- /Server/Server/KCP/IKcpInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/IKcpInterface.cs -------------------------------------------------------------------------------- /Server/Server/KCP/IKcpSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/IKcpSegment.cs -------------------------------------------------------------------------------- /Server/Server/KCP/Kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/Kcp.cs -------------------------------------------------------------------------------- /Server/Server/KCP/KcpCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/KcpCore.cs -------------------------------------------------------------------------------- /Server/Server/KCP/KcpIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/KcpIO.cs -------------------------------------------------------------------------------- /Server/Server/KCP/KcpOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/KcpOutputWriter.cs -------------------------------------------------------------------------------- /Server/Server/KCP/KcpSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/KcpSegment.cs -------------------------------------------------------------------------------- /Server/Server/KCP/KcpTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/KcpTrace.cs -------------------------------------------------------------------------------- /Server/Server/KCP/SegManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/SegManager.cs -------------------------------------------------------------------------------- /Server/Server/KCP/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/KCP/Utility.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LAxis2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LAxis2D.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LAxis3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LAxis3D.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LFloat.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LMatrix33.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LMatrix33.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LQuaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LQuaternion.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LRect.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LVector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LVector2.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LVector2Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LVector2Int.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LVector3.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/BaseType/LVector3Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/BaseType/LVector3Int.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LMath.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LTime.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LUT/LUTAcos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LUT/LUTAcos.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LUT/LUTAsin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LUT/LUTAsin.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LUT/LUTAtan2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LUT/LUTAtan2.cs -------------------------------------------------------------------------------- /Server/Server/LockStepEngine/LUT/LUTSinCos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/LockStepEngine/LUT/LUTSinCos.cs -------------------------------------------------------------------------------- /Server/Server/Manager/ClientController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Manager/ClientController.cs -------------------------------------------------------------------------------- /Server/Server/Manager/ControllerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Manager/ControllerManager.cs -------------------------------------------------------------------------------- /Server/Server/Manager/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Manager/LoginController.cs -------------------------------------------------------------------------------- /Server/Server/Manager/RoomController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Manager/RoomController.cs -------------------------------------------------------------------------------- /Server/Server/Manager/RunServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Manager/RunServer.cs -------------------------------------------------------------------------------- /Server/Server/Model/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Model/BaseController.cs -------------------------------------------------------------------------------- /Server/Server/Model/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Model/Client.cs -------------------------------------------------------------------------------- /Server/Server/Model/ConnHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Model/ConnHelper.cs -------------------------------------------------------------------------------- /Server/Server/Model/GameRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Model/GameRoom.cs -------------------------------------------------------------------------------- /Server/Server/Model/HashCodeMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Model/HashCodeMatcher.cs -------------------------------------------------------------------------------- /Server/Server/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/MySql.Data.dll -------------------------------------------------------------------------------- /Server/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Program.cs -------------------------------------------------------------------------------- /Server/Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Server/Server.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Server.csproj.user -------------------------------------------------------------------------------- /Server/Server/Telepathy/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/Common.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/ConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/ConnectionState.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/EventType.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/Log.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/MagnificentReceivePipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/MagnificentReceivePipe.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/MagnificentSendPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/MagnificentSendPipe.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/NetworkStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/NetworkStreamExtensions.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/Pool.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/Server.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/ThreadFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/ThreadFunctions.cs -------------------------------------------------------------------------------- /Server/Server/Telepathy/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/Telepathy/Utils.cs -------------------------------------------------------------------------------- /Server/Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absences/Unity_HybridCLR_YooAsset_Luban-protobuf3-/HEAD/Server/Server/packages.config --------------------------------------------------------------------------------