├── .gitignore ├── Assets ├── MotionFramework.meta └── MotionFramework │ ├── CHANGELOG.txt │ ├── CHANGELOG.txt.meta │ ├── Resources.meta │ ├── Resources │ ├── console_background.png │ └── console_background.png.meta │ ├── Scripts.meta │ ├── Scripts │ ├── Editor.meta │ ├── Editor │ │ ├── AssetSearch.meta │ │ ├── AssetSearch │ │ │ ├── AssetSearchWindow.cs │ │ │ └── AssetSearchWindow.cs.meta │ │ ├── EditorDefine.cs │ │ ├── EditorDefine.cs.meta │ │ ├── EditorTools.cs │ │ ├── EditorTools.cs.meta │ │ ├── MotionFramework.Editor.asmdef │ │ ├── MotionFramework.Editor.asmdef.meta │ │ ├── UIPanelSetting.meta │ │ └── UIPanelSetting │ │ │ ├── UIPanelModifier.cs │ │ │ ├── UIPanelModifier.cs.meta │ │ │ ├── UIPanelMonitor.cs │ │ │ ├── UIPanelMonitor.cs.meta │ │ │ ├── UIPanelSetting.cs │ │ │ ├── UIPanelSetting.cs.meta │ │ │ ├── UIPanelSettingData.cs │ │ │ ├── UIPanelSettingData.cs.meta │ │ │ ├── UIPanelSettingWindow.cs │ │ │ └── UIPanelSettingWindow.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── Engine.meta │ │ ├── Engine │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── ELogLevel.cs │ │ │ ├── ELogLevel.cs.meta │ │ │ ├── IActivatorServices.cs │ │ │ ├── IActivatorServices.cs.meta │ │ │ ├── IModule.cs │ │ │ ├── IModule.cs.meta │ │ │ ├── MainThreadSyncContext.cs │ │ │ ├── MainThreadSyncContext.cs.meta │ │ │ ├── ModuleSingleton.cs │ │ │ ├── ModuleSingleton.cs.meta │ │ │ ├── MotionEngine.cs │ │ │ ├── MotionEngine.cs.meta │ │ │ ├── MotionLog.cs │ │ │ └── MotionLog.cs.meta │ │ ├── Engine.AI.meta │ │ ├── Engine.AI │ │ │ ├── ANN.meta │ │ │ ├── ANN │ │ │ │ ├── NeuralDefine.cs │ │ │ │ ├── NeuralDefine.cs.meta │ │ │ │ ├── NeuralLayer.cs │ │ │ │ ├── NeuralLayer.cs.meta │ │ │ │ ├── NeuralNetwork.cs │ │ │ │ ├── NeuralNetwork.cs.meta │ │ │ │ ├── Neuron.cs │ │ │ │ └── Neuron.cs.meta │ │ │ ├── AStar.meta │ │ │ ├── AStar │ │ │ │ ├── AStarHeuristic.cs │ │ │ │ ├── AStarHeuristic.cs.meta │ │ │ │ ├── AStarNode.cs │ │ │ │ ├── AStarNode.cs.meta │ │ │ │ ├── AStarPathFinding.cs │ │ │ │ ├── AStarPathFinding.cs.meta │ │ │ │ ├── AStarPatterns.cs │ │ │ │ ├── AStarPatterns.cs.meta │ │ │ │ ├── IAStarGraph.cs │ │ │ │ └── IAStarGraph.cs.meta │ │ │ ├── FSM.meta │ │ │ └── FSM │ │ │ │ ├── FiniteStateMachine.cs │ │ │ │ ├── FiniteStateMachine.cs.meta │ │ │ │ ├── FsmGraph.cs │ │ │ │ ├── FsmGraph.cs.meta │ │ │ │ ├── IFsmNode.cs │ │ │ │ ├── IFsmNode.cs.meta │ │ │ │ ├── ProcedureFsm.cs │ │ │ │ └── ProcedureFsm.cs.meta │ │ ├── Engine.Animation.meta │ │ ├── Engine.Animation │ │ │ ├── AnimBehaviour.cs │ │ │ ├── AnimBehaviour.cs.meta │ │ │ ├── AnimMixer.cs │ │ │ ├── AnimMixer.cs.meta │ │ │ ├── AnimNode.cs │ │ │ ├── AnimNode.cs.meta │ │ │ ├── AnimPlayable.cs │ │ │ ├── AnimPlayable.cs.meta │ │ │ ├── AnimState.cs │ │ │ ├── AnimState.cs.meta │ │ │ ├── EAnimStates.cs │ │ │ └── EAnimStates.cs.meta │ │ ├── Engine.Console.meta │ │ ├── Engine.Console │ │ │ ├── ConsoleAttribute.cs │ │ │ ├── ConsoleAttribute.cs.meta │ │ │ ├── ConsoleGUI.cs │ │ │ ├── ConsoleGUI.cs.meta │ │ │ ├── DeveloperConsole.cs │ │ │ ├── DeveloperConsole.cs.meta │ │ │ ├── FPSCounter.cs │ │ │ ├── FPSCounter.cs.meta │ │ │ ├── IConsoleWindow.cs │ │ │ └── IConsoleWindow.cs.meta │ │ ├── Engine.IO.meta │ │ ├── Engine.IO │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBuffer.cs.meta │ │ │ ├── StringConvert.cs │ │ │ ├── StringConvert.cs.meta │ │ │ ├── StringFormat.cs │ │ │ ├── StringFormat.cs.meta │ │ │ ├── StringOperate.cs │ │ │ └── StringOperate.cs.meta │ │ ├── Engine.Network.meta │ │ ├── Engine.Network │ │ │ ├── Package.meta │ │ │ ├── Package │ │ │ │ ├── INetworkPackage.cs │ │ │ │ ├── INetworkPackage.cs.meta │ │ │ │ ├── NetworkPackageCoder.cs │ │ │ │ └── NetworkPackageCoder.cs.meta │ │ │ ├── Socket.meta │ │ │ ├── Socket │ │ │ │ ├── TcpChannel.cs │ │ │ │ ├── TcpChannel.cs.meta │ │ │ │ ├── TcpClient.cs │ │ │ │ └── TcpClient.cs.meta │ │ │ ├── WebRequest.meta │ │ │ └── WebRequest │ │ │ │ ├── WebFileRequest.cs │ │ │ │ ├── WebFileRequest.cs.meta │ │ │ │ ├── WebGetRequest.cs │ │ │ │ ├── WebGetRequest.cs.meta │ │ │ │ ├── WebHeaderRequest.cs │ │ │ │ ├── WebHeaderRequest.cs.meta │ │ │ │ ├── WebPostRequest.cs │ │ │ │ ├── WebPostRequest.cs.meta │ │ │ │ ├── WebRequestBase.cs │ │ │ │ └── WebRequestBase.cs.meta │ │ ├── Engine.Reference.meta │ │ ├── Engine.Reference │ │ │ ├── IReference.cs │ │ │ ├── IReference.cs.meta │ │ │ ├── ReferenceCollector.cs │ │ │ ├── ReferenceCollector.cs.meta │ │ │ ├── ReferencePool.cs │ │ │ └── ReferencePool.cs.meta │ │ ├── Engine.Utility.meta │ │ └── Engine.Utility │ │ │ ├── AssemblyUtility.cs │ │ │ ├── AssemblyUtility.cs.meta │ │ │ ├── FileUtility.cs │ │ │ ├── FileUtility.cs.meta │ │ │ ├── HashUtility.cs │ │ │ ├── HashUtility.cs.meta │ │ │ ├── Misc.meta │ │ │ ├── Misc │ │ │ ├── BitMask32.cs │ │ │ ├── BitMask32.cs.meta │ │ │ ├── BitMask64.cs │ │ │ ├── BitMask64.cs.meta │ │ │ ├── CRC32Algorithm.cs │ │ │ ├── CRC32Algorithm.cs.meta │ │ │ ├── ObfuscateDouble.cs │ │ │ ├── ObfuscateDouble.cs.meta │ │ │ ├── ObfuscateFloat.cs │ │ │ ├── ObfuscateFloat.cs.meta │ │ │ ├── ObfuscateInt.cs │ │ │ ├── ObfuscateInt.cs.meta │ │ │ ├── ObfuscateLong.cs │ │ │ ├── ObfuscateLong.cs.meta │ │ │ ├── Timer.cs │ │ │ └── Timer.cs.meta │ │ │ ├── ProfilerUtility.cs │ │ │ └── ProfilerUtility.cs.meta │ │ ├── Module.meta │ │ ├── Module │ │ ├── Extension.meta │ │ ├── Extension │ │ │ ├── System_String_Extension.cs │ │ │ ├── System_String_Extension.cs.meta │ │ │ ├── UnityEngine_Object_Extension.cs │ │ │ ├── UnityEngine_Object_Extension.cs.meta │ │ │ ├── UnityEngine_RectTransform_Extension.cs │ │ │ ├── UnityEngine_RectTransform_Extension.cs.meta │ │ │ ├── UnityEngine_Transform_Extension.cs │ │ │ └── UnityEngine_Transform_Extension.cs.meta │ │ ├── Module.Audio.meta │ │ ├── Module.Audio │ │ │ ├── AssetAudio.cs │ │ │ ├── AssetAudio.cs.meta │ │ │ ├── AudioManager.cs │ │ │ ├── AudioManager.cs.meta │ │ │ ├── EAudioLayer.cs │ │ │ └── EAudioLayer.cs.meta │ │ ├── Module.Config.meta │ │ ├── Module.Config │ │ │ ├── AssetConfig.cs │ │ │ ├── AssetConfig.cs.meta │ │ │ ├── ConfigAttribute.cs │ │ │ ├── ConfigAttribute.cs.meta │ │ │ ├── ConfigDefine.cs │ │ │ ├── ConfigDefine.cs.meta │ │ │ ├── ConfigManager.cs │ │ │ └── ConfigManager.cs.meta │ │ ├── Module.Console.meta │ │ ├── Module.Console │ │ │ ├── ApplicationWindow.cs │ │ │ ├── ApplicationWindow.cs.meta │ │ │ ├── GameLogWindow.cs │ │ │ ├── GameLogWindow.cs.meta │ │ │ ├── GameModuleWindow.cs │ │ │ ├── GameModuleWindow.cs.meta │ │ │ ├── GameObjectPoolWindow.cs │ │ │ ├── GameObjectPoolWindow.cs.meta │ │ │ ├── ReferencePoolWindow.cs │ │ │ └── ReferencePoolWindow.cs.meta │ │ ├── Module.Event.meta │ │ ├── Module.Event │ │ │ ├── EventGroup.cs │ │ │ ├── EventGroup.cs.meta │ │ │ ├── EventManager.cs │ │ │ ├── EventManager.cs.meta │ │ │ ├── IEventMessage.cs │ │ │ └── IEventMessage.cs.meta │ │ ├── Module.Network.meta │ │ ├── Module.Network │ │ │ ├── ENetworkStates.cs │ │ │ ├── ENetworkStates.cs.meta │ │ │ ├── NetworkEventDispatcher.cs │ │ │ ├── NetworkEventDispatcher.cs.meta │ │ │ ├── NetworkEventMessageDefine.cs │ │ │ ├── NetworkEventMessageDefine.cs.meta │ │ │ ├── NetworkManager.cs │ │ │ ├── NetworkManager.cs.meta │ │ │ ├── Package.meta │ │ │ └── Package │ │ │ │ ├── DefaultNetworkPackage.cs │ │ │ │ ├── DefaultNetworkPackage.cs.meta │ │ │ │ ├── DefaultNetworkPackageCoder.cs │ │ │ │ └── DefaultNetworkPackageCoder.cs.meta │ │ ├── Module.Pool.meta │ │ ├── Module.Pool │ │ │ ├── GameObjectCollector.cs │ │ │ ├── GameObjectCollector.cs.meta │ │ │ ├── GameObjectPoolManager.cs │ │ │ ├── GameObjectPoolManager.cs.meta │ │ │ ├── SpawnGameObject.cs │ │ │ └── SpawnGameObject.cs.meta │ │ ├── Module.Resource.meta │ │ ├── Module.Resource │ │ │ ├── ResourceManager.cs │ │ │ └── ResourceManager.cs.meta │ │ ├── Module.Scene.meta │ │ ├── Module.Scene │ │ │ ├── AssetScene.cs │ │ │ ├── AssetScene.cs.meta │ │ │ ├── SceneManager.cs │ │ │ └── SceneManager.cs.meta │ │ ├── Module.Tween.meta │ │ ├── Module.Tween │ │ │ ├── ETweenLoop.cs │ │ │ ├── ETweenLoop.cs.meta │ │ │ ├── ITweenChain.cs │ │ │ ├── ITweenChain.cs.meta │ │ │ ├── ITweenNode.cs │ │ │ ├── ITweenNode.cs.meta │ │ │ ├── TweenAllocate.cs │ │ │ ├── TweenAllocate.cs.meta │ │ │ ├── TweenChain.meta │ │ │ ├── TweenChain │ │ │ │ ├── TweenChainExtension.cs │ │ │ │ └── TweenChainExtension.cs.meta │ │ │ ├── TweenEase.cs │ │ │ ├── TweenEase.cs.meta │ │ │ ├── TweenExtension.meta │ │ │ ├── TweenExtension │ │ │ │ ├── UnityEngine_CanvasGroup_Tween_Extension.cs │ │ │ │ ├── UnityEngine_CanvasGroup_Tween_Extension.cs.meta │ │ │ │ ├── UnityEngine_GameObject_Tween_Extension.cs │ │ │ │ ├── UnityEngine_GameObject_Tween_Extension.cs.meta │ │ │ │ ├── UnityEngine_RectTransform_Tween_Extension.cs │ │ │ │ ├── UnityEngine_RectTransform_Tween_Extension.cs.meta │ │ │ │ ├── UnityEngine_Transform_Tween_Extension.cs │ │ │ │ ├── UnityEngine_Transform_Tween_Extension.cs.meta │ │ │ │ ├── UnityEngine_UI_Image_Tween_Extension.cs │ │ │ │ ├── UnityEngine_UI_Image_Tween_Extension.cs.meta │ │ │ │ ├── UnityEngine_UI_Text_Tween_Extension.cs │ │ │ │ └── UnityEngine_UI_Text_Tween_Extension.cs.meta │ │ │ ├── TweenManager.cs │ │ │ ├── TweenManager.cs.meta │ │ │ ├── TweenMath.cs │ │ │ ├── TweenMath.cs.meta │ │ │ ├── TweenNode.meta │ │ │ └── TweenNode │ │ │ │ ├── ChainNode.cs │ │ │ │ ├── ChainNode.cs.meta │ │ │ │ ├── ExecuteNode.cs │ │ │ │ ├── ExecuteNode.cs.meta │ │ │ │ ├── ParallelNode.cs │ │ │ │ ├── ParallelNode.cs.meta │ │ │ │ ├── SelectorNode.cs │ │ │ │ ├── SelectorNode.cs.meta │ │ │ │ ├── SequenceNode.cs │ │ │ │ ├── SequenceNode.cs.meta │ │ │ │ ├── TimerNode.cs │ │ │ │ ├── TimerNode.cs.meta │ │ │ │ ├── TweenNode.cs │ │ │ │ ├── TweenNode.cs.meta │ │ │ │ ├── UntilNode.cs │ │ │ │ └── UntilNode.cs.meta │ │ ├── Module.Window.meta │ │ └── Module.Window │ │ │ ├── UGUI.meta │ │ │ ├── UGUI │ │ │ ├── CanvasRoot.cs │ │ │ ├── CanvasRoot.cs.meta │ │ │ ├── CanvasWindow.cs │ │ │ ├── CanvasWindow.cs.meta │ │ │ ├── UIManifest.cs │ │ │ ├── UIManifest.cs.meta │ │ │ ├── UISprite.cs │ │ │ └── UISprite.cs.meta │ │ │ ├── UIRoot.cs │ │ │ ├── UIRoot.cs.meta │ │ │ ├── UIWindow.cs │ │ │ ├── UIWindow.cs.meta │ │ │ ├── WindowAttribute.cs │ │ │ ├── WindowAttribute.cs.meta │ │ │ ├── WindowManager.cs │ │ │ └── WindowManager.cs.meta │ │ ├── MotionFramework.asmdef │ │ └── MotionFramework.asmdef.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ ├── Compatibility.meta │ ├── Compatibility │ │ ├── AssetBundleCollectorSetting.cs │ │ └── AssetBundleCollectorSetting.cs.meta │ ├── YooAsset.meta │ └── YooAsset │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── AssetBundleBuilder.meta │ │ ├── AssetBundleBuilder │ │ │ ├── AssetBundleBuilder.cs │ │ │ ├── AssetBundleBuilder.cs.meta │ │ │ ├── AssetBundleBuilderHelper.cs │ │ │ ├── AssetBundleBuilderHelper.cs.meta │ │ │ ├── AssetBundleBuilderSetting.cs │ │ │ ├── AssetBundleBuilderSetting.cs.meta │ │ │ ├── AssetBundleBuilderSettingData.cs │ │ │ ├── AssetBundleBuilderSettingData.cs.meta │ │ │ ├── AssetBundleBuilderTools.cs │ │ │ ├── AssetBundleBuilderTools.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 │ │ │ ├── BuildReport.meta │ │ │ ├── BuildReport │ │ │ │ ├── BuildReport.cs │ │ │ │ ├── BuildReport.cs.meta │ │ │ │ ├── ReportAssetInfo.cs │ │ │ │ ├── ReportAssetInfo.cs.meta │ │ │ │ ├── ReportBundleInfo.cs │ │ │ │ ├── ReportBundleInfo.cs.meta │ │ │ │ ├── ReportSummary.cs │ │ │ │ └── ReportSummary.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 │ │ │ │ ├── IBuildTask.cs │ │ │ │ ├── IBuildTask.cs.meta │ │ │ │ ├── IContextObject.cs │ │ │ │ ├── IContextObject.cs.meta │ │ │ │ ├── TaskAttribute.cs │ │ │ │ └── TaskAttribute.cs.meta │ │ │ ├── BuildTasks.meta │ │ │ ├── BuildTasks │ │ │ │ ├── SBPBuildTasks.cs │ │ │ │ ├── SBPBuildTasks.cs.meta │ │ │ │ ├── TaskBuilding.cs │ │ │ │ ├── TaskBuilding.cs.meta │ │ │ │ ├── TaskBuilding_SBP.cs │ │ │ │ ├── TaskBuilding_SBP.cs.meta │ │ │ │ ├── TaskCopyBuildinFiles.cs │ │ │ │ ├── TaskCopyBuildinFiles.cs.meta │ │ │ │ ├── TaskCopyRawFile.cs │ │ │ │ ├── TaskCopyRawFile.cs.meta │ │ │ │ ├── TaskCreateManifest.cs │ │ │ │ ├── TaskCreateManifest.cs.meta │ │ │ │ ├── TaskCreatePackage.cs │ │ │ │ ├── TaskCreatePackage.cs.meta │ │ │ │ ├── TaskCreateReport.cs │ │ │ │ ├── TaskCreateReport.cs.meta │ │ │ │ ├── TaskEncryption.cs │ │ │ │ ├── TaskEncryption.cs.meta │ │ │ │ ├── TaskGetBuildMap.cs │ │ │ │ ├── TaskGetBuildMap.cs.meta │ │ │ │ ├── TaskPrepare.cs │ │ │ │ ├── TaskPrepare.cs.meta │ │ │ │ ├── TaskUpdateBundleInfo.cs │ │ │ │ ├── TaskUpdateBundleInfo.cs.meta │ │ │ │ ├── TaskVerifyBuildResult.cs │ │ │ │ ├── TaskVerifyBuildResult.cs.meta │ │ │ │ ├── TaskVerifyBuildResult_SBP.cs │ │ │ │ └── TaskVerifyBuildResult_SBP.cs.meta │ │ │ ├── DefaultEncryption.cs │ │ │ ├── DefaultEncryption.cs.meta │ │ │ ├── EBuildMode.cs │ │ │ ├── EBuildMode.cs.meta │ │ │ ├── EBuildPipeline.cs │ │ │ ├── EBuildPipeline.cs.meta │ │ │ ├── ECompressOption.cs │ │ │ ├── ECompressOption.cs.meta │ │ │ ├── ECopyBuildinFileOption.cs │ │ │ ├── ECopyBuildinFileOption.cs.meta │ │ │ ├── EOutputNameStyle.cs │ │ │ └── EOutputNameStyle.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 │ │ │ ├── DefaultActiveRule.cs │ │ │ ├── DefaultActiveRule.cs.meta │ │ │ ├── DefaultAddressRule.cs │ │ │ ├── DefaultAddressRule.cs.meta │ │ │ ├── DefaultFilterRule.cs │ │ │ ├── DefaultFilterRule.cs.meta │ │ │ ├── DefaultPackRule.cs │ │ │ ├── DefaultPackRule.cs.meta │ │ │ ├── DefaultShareAssetPackRule.cs │ │ │ ├── DefaultShareAssetPackRule.cs.meta │ │ │ ├── DisplayNameAttribute.cs │ │ │ ├── DisplayNameAttribute.cs.meta │ │ │ ├── ECollectorType.cs │ │ │ ├── ECollectorType.cs.meta │ │ │ ├── IActiveRule.cs │ │ │ ├── IActiveRule.cs.meta │ │ │ ├── IAddressRule.cs │ │ │ ├── IAddressRule.cs.meta │ │ │ ├── IFilterRule.cs │ │ │ ├── IFilterRule.cs.meta │ │ │ ├── IPackRule.cs │ │ │ ├── IPackRule.cs.meta │ │ │ ├── IShareAssetPackRule.cs │ │ │ ├── IShareAssetPackRule.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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── ShaderVariantCollectorSettingData.cs │ │ │ ├── ShaderVariantCollectorSettingData.cs.meta │ │ │ ├── ShaderVariantCollectorWindow.cs │ │ │ ├── ShaderVariantCollectorWindow.cs.meta │ │ │ ├── ShaderVariantCollectorWindow.uxml │ │ │ └── ShaderVariantCollectorWindow.uxml.meta │ │ ├── UxmlDefine.cs │ │ ├── UxmlDefine.cs.meta │ │ ├── UxmlExtension.cs │ │ ├── UxmlExtension.cs.meta │ │ ├── UxmlLoader.cs │ │ ├── UxmlLoader.cs.meta │ │ ├── YooAsset.Editor.asmdef │ │ └── YooAsset.Editor.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── AssetReference.cs │ │ ├── AssetReference.cs.meta │ │ ├── AssetSystem.meta │ │ ├── AssetSystem │ │ │ ├── AssetSystem.cs │ │ │ ├── AssetSystem.cs.meta │ │ │ ├── Handles.meta │ │ │ ├── Handles │ │ │ │ ├── AssetOperationHandle.cs │ │ │ │ ├── AssetOperationHandle.cs.meta │ │ │ │ ├── OperationHandleBase.cs │ │ │ │ ├── OperationHandleBase.cs.meta │ │ │ │ ├── RawFileOperationHandle.cs │ │ │ │ ├── RawFileOperationHandle.cs.meta │ │ │ │ ├── SceneOperationHandle.cs │ │ │ │ ├── SceneOperationHandle.cs.meta │ │ │ │ ├── SubAssetsOperationHandle.cs │ │ │ │ └── SubAssetsOperationHandle.cs.meta │ │ │ ├── Loader.meta │ │ │ ├── Loader │ │ │ │ ├── AssetBundleFileLoader.cs │ │ │ │ ├── AssetBundleFileLoader.cs.meta │ │ │ │ ├── AssetBundleWebLoader.cs │ │ │ │ ├── AssetBundleWebLoader.cs.meta │ │ │ │ ├── BundleLoaderBase.cs │ │ │ │ ├── BundleLoaderBase.cs.meta │ │ │ │ ├── DependAssetBundleGrouper.cs │ │ │ │ ├── DependAssetBundleGrouper.cs.meta │ │ │ │ ├── EBundleLoadMethod.cs │ │ │ │ ├── EBundleLoadMethod.cs.meta │ │ │ │ ├── RawBundleFileLoader.cs │ │ │ │ ├── RawBundleFileLoader.cs.meta │ │ │ │ ├── RawBundleWebLoader.cs │ │ │ │ ├── RawBundleWebLoader.cs.meta │ │ │ │ ├── VirtualBundleFileLoader.cs │ │ │ │ └── VirtualBundleFileLoader.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── Operations │ │ │ │ ├── InstantiateOperation.cs │ │ │ │ ├── InstantiateOperation.cs.meta │ │ │ │ ├── UnloadSceneOperation.cs │ │ │ │ └── UnloadSceneOperation.cs.meta │ │ │ ├── Provider.meta │ │ │ └── Provider │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── CacheSystem.meta │ │ ├── CacheSystem │ │ │ ├── CacheFileInfo.cs │ │ │ ├── CacheFileInfo.cs.meta │ │ │ ├── CacheSystem.cs │ │ │ ├── CacheSystem.cs.meta │ │ │ ├── EVerifyLevel.cs │ │ │ ├── EVerifyLevel.cs.meta │ │ │ ├── EVerifyResult.cs │ │ │ ├── EVerifyResult.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── Operations │ │ │ │ ├── ClearUnusedCacheFilesOperation.cs │ │ │ │ ├── ClearUnusedCacheFilesOperation.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 │ │ │ ├── PackageCache.cs │ │ │ ├── PackageCache.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 │ │ │ ├── DownloadReport.cs │ │ │ ├── DownloadReport.cs.meta │ │ │ ├── DownloadSystem.cs │ │ │ ├── DownloadSystem.cs.meta │ │ │ ├── Downloader.meta │ │ │ ├── Downloader │ │ │ │ ├── DownloadHandlerFileRange.cs │ │ │ │ ├── DownloadHandlerFileRange.cs.meta │ │ │ │ ├── DownloaderBase.cs │ │ │ │ ├── DownloaderBase.cs.meta │ │ │ │ ├── FileDownloader.cs │ │ │ │ ├── FileDownloader.cs.meta │ │ │ │ ├── TempDownloader.cs │ │ │ │ └── TempDownloader.cs.meta │ │ │ ├── ThreadSyncContext.cs │ │ │ ├── ThreadSyncContext.cs.meta │ │ │ ├── UnityWebDataRequester.cs │ │ │ ├── UnityWebDataRequester.cs.meta │ │ │ ├── UnityWebFileRequester.cs │ │ │ └── UnityWebFileRequester.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 │ │ ├── PackageSystem.meta │ │ ├── PackageSystem │ │ │ ├── AssetInfo.cs │ │ │ ├── AssetInfo.cs.meta │ │ │ ├── BundleInfo.cs │ │ │ ├── BundleInfo.cs.meta │ │ │ ├── ManifestTools.cs │ │ │ ├── ManifestTools.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── Operations │ │ │ │ ├── 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 │ │ │ │ │ ├── QueryBuildinPackageVersionOperation.cs │ │ │ │ │ ├── QueryBuildinPackageVersionOperation.cs.meta │ │ │ │ │ ├── QueryCachePackageHashOperation.cs │ │ │ │ │ ├── QueryCachePackageHashOperation.cs.meta │ │ │ │ │ ├── QueryCachePackageVersionOperation.cs │ │ │ │ │ ├── QueryCachePackageVersionOperation.cs.meta │ │ │ │ │ ├── QueryRemotePackageVersionOperation.cs │ │ │ │ │ ├── QueryRemotePackageVersionOperation.cs.meta │ │ │ │ │ ├── UnpackBuildinManifestOperation.cs │ │ │ │ │ └── UnpackBuildinManifestOperation.cs.meta │ │ │ │ ├── PreDownloadContentOperation.cs │ │ │ │ ├── PreDownloadContentOperation.cs.meta │ │ │ │ ├── UpdatePackageManifestOperation.cs │ │ │ │ ├── UpdatePackageManifestOperation.cs.meta │ │ │ │ ├── UpdatePackageVersionOperation.cs │ │ │ │ └── UpdatePackageVersionOperation.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 │ │ │ ├── ResourcePackage.cs │ │ │ └── ResourcePackage.cs.meta │ │ ├── Properties.meta │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ ├── Services.meta │ │ ├── Services │ │ │ ├── IDecryptionServices.cs │ │ │ ├── IDecryptionServices.cs.meta │ │ │ ├── IEncryptionServices.cs │ │ │ ├── IEncryptionServices.cs.meta │ │ │ ├── IQueryServices.cs │ │ │ ├── IQueryServices.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── IBundleServices.cs │ │ │ │ ├── IBundleServices.cs.meta │ │ │ │ ├── IPlayModeServices.cs │ │ │ │ ├── IPlayModeServices.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 │ │ │ ├── YooHelper.cs │ │ │ ├── YooHelper.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 │ │ ├── Samples~ │ │ ├── Extension Sample.meta │ │ ├── Extension Sample │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── CustomPackRule.cs │ │ │ │ ├── CustomPackRule.cs.meta │ │ │ │ ├── PackageCompareWindow.cs │ │ │ │ ├── PackageCompareWindow.cs.meta │ │ │ │ ├── PackageImportWindow.cs │ │ │ │ └── PackageImportWindow.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── AssetOperationHandleExtension.cs │ │ │ │ ├── AssetOperationHandleExtension.cs.meta │ │ │ │ ├── LoadAssetsByTagOperation.cs │ │ │ │ └── LoadAssetsByTagOperation.cs.meta │ │ ├── Space Shooter.meta │ │ ├── Space Shooter │ │ │ ├── AssetSetting.meta │ │ │ ├── AssetSetting │ │ │ │ ├── AssetBundleBuilderSetting.asset │ │ │ │ ├── AssetBundleBuilderSetting.asset.meta │ │ │ │ ├── AssetBundleCollectorConfig.xml │ │ │ │ ├── AssetBundleCollectorConfig.xml.meta │ │ │ │ ├── AssetBundleCollectorSetting.asset │ │ │ │ ├── AssetBundleCollectorSetting.asset.meta │ │ │ │ ├── ShaderVariantCollectorSetting.asset │ │ │ │ └── ShaderVariantCollectorSetting.asset.meta │ │ │ ├── Boot.unity │ │ │ ├── Boot.unity.meta │ │ │ ├── GameArt.meta │ │ │ ├── GameArt │ │ │ │ ├── Effect.meta │ │ │ │ ├── Effect │ │ │ │ │ ├── fx_bolt_cyan_mat.mat │ │ │ │ │ ├── fx_bolt_cyan_mat.mat.meta │ │ │ │ │ ├── fx_bolt_orange_mat.mat │ │ │ │ │ ├── fx_bolt_orange_mat.mat.meta │ │ │ │ │ ├── fx_enemyShip_engines_mat.mat │ │ │ │ │ ├── fx_enemyShip_engines_mat.mat.meta │ │ │ │ │ ├── fx_lazer_cyan_dff.tif │ │ │ │ │ ├── fx_lazer_cyan_dff.tif.meta │ │ │ │ │ ├── fx_lazer_orange_dff.tif │ │ │ │ │ ├── fx_lazer_orange_dff.tif.meta │ │ │ │ │ ├── part_blast_mat.mat │ │ │ │ │ ├── part_blast_mat.mat.meta │ │ │ │ │ ├── part_enginePulse_dff.tif │ │ │ │ │ ├── part_enginePulse_dff.tif.meta │ │ │ │ │ ├── part_flash_dff.tif │ │ │ │ │ ├── part_flash_dff.tif.meta │ │ │ │ │ ├── part_glow_mat.mat │ │ │ │ │ ├── part_glow_mat.mat.meta │ │ │ │ │ ├── part_jet_core_dff.tif │ │ │ │ │ ├── part_jet_core_dff.tif.meta │ │ │ │ │ ├── part_jet_core_mat.mat │ │ │ │ │ ├── part_jet_core_mat.mat.meta │ │ │ │ │ ├── part_jet_flare_dff.tif │ │ │ │ │ ├── part_jet_flare_dff.tif.meta │ │ │ │ │ ├── part_jet_flare_mat.mat │ │ │ │ │ ├── part_jet_flare_mat.mat.meta │ │ │ │ │ ├── part_shockwave_dff.tif │ │ │ │ │ ├── part_shockwave_dff.tif.meta │ │ │ │ │ ├── part_shockwave_mat.mat │ │ │ │ │ ├── part_shockwave_mat.mat.meta │ │ │ │ │ ├── part_spark_blue_mat.mat │ │ │ │ │ ├── part_spark_blue_mat.mat.meta │ │ │ │ │ ├── part_spark_large_dff.tif │ │ │ │ │ ├── part_spark_large_dff.tif.meta │ │ │ │ │ ├── part_spark_large_mat.mat │ │ │ │ │ ├── part_spark_large_mat.mat.meta │ │ │ │ │ ├── part_spark_small_dff.tif │ │ │ │ │ ├── part_spark_small_dff.tif.meta │ │ │ │ │ ├── part_spark_white_mat.mat │ │ │ │ │ ├── part_spark_white_mat.mat.meta │ │ │ │ │ ├── part_spark_yellow_mat.mat │ │ │ │ │ ├── part_spark_yellow_mat.mat.meta │ │ │ │ │ ├── part_star_dff.tif │ │ │ │ │ ├── part_star_dff.tif.meta │ │ │ │ │ ├── part_star_mat.mat │ │ │ │ │ └── part_star_mat.mat.meta │ │ │ │ ├── Entity.meta │ │ │ │ ├── Entity │ │ │ │ │ ├── Asteroid.meta │ │ │ │ │ ├── Asteroid │ │ │ │ │ │ ├── prop_asteroid_01.meta │ │ │ │ │ │ ├── prop_asteroid_01 │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ ├── prop_asteroid_01_mat.mat │ │ │ │ │ │ │ │ └── prop_asteroid_01_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_01.FBX │ │ │ │ │ │ │ ├── prop_asteroid_01.FBX.meta │ │ │ │ │ │ │ ├── prop_asteroid_01_dff.tif │ │ │ │ │ │ │ ├── prop_asteroid_01_dff.tif.meta │ │ │ │ │ │ │ ├── prop_asteroid_01_mat.mat │ │ │ │ │ │ │ ├── prop_asteroid_01_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_01_nrm.tif │ │ │ │ │ │ │ └── prop_asteroid_01_nrm.tif.meta │ │ │ │ │ │ ├── prop_asteroid_02.meta │ │ │ │ │ │ ├── prop_asteroid_02 │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ ├── prop_asteroid_02_mat.mat │ │ │ │ │ │ │ │ └── prop_asteroid_02_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_02.FBX │ │ │ │ │ │ │ ├── prop_asteroid_02.FBX.meta │ │ │ │ │ │ │ ├── prop_asteroid_02_dff.tif │ │ │ │ │ │ │ ├── prop_asteroid_02_dff.tif.meta │ │ │ │ │ │ │ ├── prop_asteroid_02_mat.mat │ │ │ │ │ │ │ ├── prop_asteroid_02_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_02_nrm.tif │ │ │ │ │ │ │ └── prop_asteroid_02_nrm.tif.meta │ │ │ │ │ │ ├── prop_asteroid_03.meta │ │ │ │ │ │ └── prop_asteroid_03 │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── prop_asteroid_03_mat.mat │ │ │ │ │ │ │ └── prop_asteroid_03_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_03.FBX │ │ │ │ │ │ │ ├── prop_asteroid_03.FBX.meta │ │ │ │ │ │ │ ├── prop_asteroid_03_dff.tif │ │ │ │ │ │ │ ├── prop_asteroid_03_dff.tif.meta │ │ │ │ │ │ │ ├── prop_asteroid_03_mat.mat │ │ │ │ │ │ │ ├── prop_asteroid_03_mat.mat.meta │ │ │ │ │ │ │ ├── prop_asteroid_03_nrm.tif │ │ │ │ │ │ │ └── prop_asteroid_03_nrm.tif.meta │ │ │ │ │ ├── Vehicle.meta │ │ │ │ │ └── Vehicle │ │ │ │ │ │ ├── vehicle_enemyShip.meta │ │ │ │ │ │ ├── vehicle_enemyShip │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── vehicle_enemyShip_glow_mat.mat │ │ │ │ │ │ │ ├── vehicle_enemyShip_glow_mat.mat.meta │ │ │ │ │ │ │ ├── vehicle_enemyShip_metal_mat.mat │ │ │ │ │ │ │ └── vehicle_enemyShip_metal_mat.mat.meta │ │ │ │ │ │ ├── vehicle_enemyShip.FBX │ │ │ │ │ │ ├── vehicle_enemyShip.FBX.meta │ │ │ │ │ │ ├── vehicle_enemyShip_glow_mat.mat │ │ │ │ │ │ ├── vehicle_enemyShip_glow_mat.mat.meta │ │ │ │ │ │ ├── vehicle_enemyShip_metal_mat.mat │ │ │ │ │ │ ├── vehicle_enemyShip_metal_mat.mat.meta │ │ │ │ │ │ ├── vehicle_enemyShip_nrm.tif │ │ │ │ │ │ ├── vehicle_enemyShip_nrm.tif.meta │ │ │ │ │ │ ├── vehicle_enemyShip_purple_dff.tif │ │ │ │ │ │ ├── vehicle_enemyShip_purple_dff.tif.meta │ │ │ │ │ │ ├── vehicle_enemyShip_red_dff.tif │ │ │ │ │ │ └── vehicle_enemyShip_red_dff.tif.meta │ │ │ │ │ │ ├── vehicle_playerShip.meta │ │ │ │ │ │ └── vehicle_playerShip │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── vehicle_playerShip_glass_mat.mat │ │ │ │ │ │ ├── vehicle_playerShip_glass_mat.mat.meta │ │ │ │ │ │ ├── vehicle_playerShip_metal_mat.mat │ │ │ │ │ │ └── vehicle_playerShip_metal_mat.mat.meta │ │ │ │ │ │ ├── vehicle_playerShip.FBX │ │ │ │ │ │ ├── vehicle_playerShip.FBX.meta │ │ │ │ │ │ ├── vehicle_playerShip_collider.FBX │ │ │ │ │ │ ├── vehicle_playerShip_collider.FBX.meta │ │ │ │ │ │ ├── vehicle_playerShip_glass_mat.mat │ │ │ │ │ │ ├── vehicle_playerShip_glass_mat.mat.meta │ │ │ │ │ │ ├── vehicle_playerShip_metal_mat.mat │ │ │ │ │ │ ├── vehicle_playerShip_metal_mat.mat.meta │ │ │ │ │ │ ├── vehicle_playerShip_orange_dff.tif │ │ │ │ │ │ ├── vehicle_playerShip_orange_dff.tif.meta │ │ │ │ │ │ ├── vehicle_playerShip_orange_nrm.tif │ │ │ │ │ │ └── vehicle_playerShip_orange_nrm.tif.meta │ │ │ │ ├── Scene.meta │ │ │ │ ├── Scene │ │ │ │ │ ├── cube_junkyard_sharp.cubemap │ │ │ │ │ ├── cube_junkyard_sharp.cubemap.meta │ │ │ │ │ ├── cube_junkyard_soft.cubemap │ │ │ │ │ ├── cube_junkyard_soft.cubemap.meta │ │ │ │ │ ├── tile_nebula_green_dff.mat │ │ │ │ │ ├── tile_nebula_green_dff.mat.meta │ │ │ │ │ ├── tile_nebula_green_dff.tif │ │ │ │ │ └── tile_nebula_green_dff.tif.meta │ │ │ │ ├── Shader.meta │ │ │ │ ├── Shader │ │ │ │ │ ├── MyUnlitShader.shader │ │ │ │ │ ├── MyUnlitShader.shader.meta │ │ │ │ │ ├── StandardMobile.cginc │ │ │ │ │ ├── StandardMobile.cginc.meta │ │ │ │ │ ├── StandardMobile.shader │ │ │ │ │ └── StandardMobile.shader.meta │ │ │ │ ├── ShaderVariants.meta │ │ │ │ ├── ShaderVariants │ │ │ │ │ ├── MyShaderVariants.json │ │ │ │ │ ├── MyShaderVariants.json.meta │ │ │ │ │ ├── MyShaderVariants.shadervariants │ │ │ │ │ └── MyShaderVariants.shadervariants.meta │ │ │ │ ├── UIAnim.meta │ │ │ │ ├── UIAnim │ │ │ │ │ ├── UIBgEffect.anim │ │ │ │ │ ├── UIBgEffect.anim.meta │ │ │ │ │ ├── UIBgEffect.controller │ │ │ │ │ └── UIBgEffect.controller.meta │ │ │ │ ├── UIAtlas.meta │ │ │ │ ├── UIAtlas │ │ │ │ │ ├── common.spriteatlas │ │ │ │ │ └── common.spriteatlas.meta │ │ │ │ ├── UIFont.meta │ │ │ │ └── UIFont │ │ │ │ │ ├── zekton free.ttf │ │ │ │ │ └── zekton free.ttf.meta │ │ │ ├── GameRes.meta │ │ │ ├── GameRes │ │ │ │ ├── Audio.meta │ │ │ │ ├── Audio │ │ │ │ │ ├── music_background.wav │ │ │ │ │ ├── music_background.wav.meta │ │ │ │ │ ├── sound_explosion_asteroid.wav │ │ │ │ │ ├── sound_explosion_asteroid.wav.meta │ │ │ │ │ ├── sound_explosion_enemy.wav │ │ │ │ │ ├── sound_explosion_enemy.wav.meta │ │ │ │ │ ├── sound_explosion_player.wav │ │ │ │ │ ├── sound_explosion_player.wav.meta │ │ │ │ │ ├── sound_weapon_enemy.wav │ │ │ │ │ ├── sound_weapon_enemy.wav.meta │ │ │ │ │ ├── sound_weapon_player.wav │ │ │ │ │ └── sound_weapon_player.wav.meta │ │ │ │ ├── Config.meta │ │ │ │ ├── Config │ │ │ │ │ ├── about.txt │ │ │ │ │ └── about.txt.meta │ │ │ │ ├── Effect.meta │ │ │ │ ├── Effect │ │ │ │ │ ├── Engines.meta │ │ │ │ │ ├── Engines │ │ │ │ │ │ ├── engines_enemy.prefab │ │ │ │ │ │ ├── engines_enemy.prefab.meta │ │ │ │ │ │ ├── engines_player.prefab │ │ │ │ │ │ └── engines_player.prefab.meta │ │ │ │ │ ├── Explosions.meta │ │ │ │ │ └── Explosions │ │ │ │ │ │ ├── explosion_asteroid.prefab │ │ │ │ │ │ ├── explosion_asteroid.prefab.meta │ │ │ │ │ │ ├── explosion_enemy.prefab │ │ │ │ │ │ ├── explosion_enemy.prefab.meta │ │ │ │ │ │ ├── explosion_player.prefab │ │ │ │ │ │ └── explosion_player.prefab.meta │ │ │ │ ├── Entity.meta │ │ │ │ ├── Entity │ │ │ │ │ ├── asteroid01.prefab │ │ │ │ │ ├── asteroid01.prefab.meta │ │ │ │ │ ├── asteroid02.prefab │ │ │ │ │ ├── asteroid02.prefab.meta │ │ │ │ │ ├── asteroid03.prefab │ │ │ │ │ ├── asteroid03.prefab.meta │ │ │ │ │ ├── enemy_bullet.prefab │ │ │ │ │ ├── enemy_bullet.prefab.meta │ │ │ │ │ ├── enemy_ship.prefab │ │ │ │ │ ├── enemy_ship.prefab.meta │ │ │ │ │ ├── player_bullet.prefab │ │ │ │ │ ├── player_bullet.prefab.meta │ │ │ │ │ ├── player_ship.prefab │ │ │ │ │ └── player_ship.prefab.meta │ │ │ │ ├── Scene.meta │ │ │ │ ├── Scene │ │ │ │ │ ├── scene_battle.unity │ │ │ │ │ ├── scene_battle.unity.meta │ │ │ │ │ ├── scene_home.unity │ │ │ │ │ └── scene_home.unity.meta │ │ │ │ ├── UIImage.meta │ │ │ │ ├── UIImage │ │ │ │ │ ├── Space.jpg │ │ │ │ │ └── Space.jpg.meta │ │ │ │ ├── UIPanel.meta │ │ │ │ ├── UIPanel │ │ │ │ │ ├── UIAbout.prefab │ │ │ │ │ ├── UIAbout.prefab.meta │ │ │ │ │ ├── UIBattle.prefab │ │ │ │ │ ├── UIBattle.prefab.meta │ │ │ │ │ ├── UICanvas.prefab │ │ │ │ │ ├── UICanvas.prefab.meta │ │ │ │ │ ├── UIHome.prefab │ │ │ │ │ ├── UIHome.prefab.meta │ │ │ │ │ ├── UILoading.prefab │ │ │ │ │ └── UILoading.prefab.meta │ │ │ │ ├── UISprite.meta │ │ │ │ └── UISprite │ │ │ │ │ ├── common.meta │ │ │ │ │ └── common │ │ │ │ │ ├── arrows.meta │ │ │ │ │ ├── arrows │ │ │ │ │ ├── arrow1_left.png │ │ │ │ │ ├── arrow1_left.png.meta │ │ │ │ │ ├── arrow1_right.png │ │ │ │ │ ├── arrow1_right.png.meta │ │ │ │ │ ├── arrow_left.png │ │ │ │ │ ├── arrow_left.png.meta │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── arrow_right.png.meta │ │ │ │ │ ├── back_arrow.png │ │ │ │ │ ├── back_arrow.png.meta │ │ │ │ │ ├── long_arrow_left.png │ │ │ │ │ ├── long_arrow_left.png.meta │ │ │ │ │ ├── long_arrow_right.png │ │ │ │ │ ├── long_arrow_right.png.meta │ │ │ │ │ ├── plus.png │ │ │ │ │ └── plus.png.meta │ │ │ │ │ ├── bars.meta │ │ │ │ │ ├── bars │ │ │ │ │ ├── bar_blue.png │ │ │ │ │ ├── bar_blue.png.meta │ │ │ │ │ ├── bar_blue1.png │ │ │ │ │ ├── bar_blue1.png.meta │ │ │ │ │ ├── progress_bar.png │ │ │ │ │ ├── progress_bar.png.meta │ │ │ │ │ ├── progress_bar_background.png │ │ │ │ │ └── progress_bar_background.png.meta │ │ │ │ │ ├── buttons.meta │ │ │ │ │ ├── buttons │ │ │ │ │ ├── bullets.png │ │ │ │ │ ├── bullets.png.meta │ │ │ │ │ ├── button1.png │ │ │ │ │ ├── button1.png.meta │ │ │ │ │ ├── button_active.png │ │ │ │ │ ├── button_active.png.meta │ │ │ │ │ ├── button_pushed.png │ │ │ │ │ ├── button_pushed.png.meta │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── pause.png.meta │ │ │ │ │ ├── rocket.png │ │ │ │ │ └── rocket.png.meta │ │ │ │ │ ├── window.meta │ │ │ │ │ └── window │ │ │ │ │ ├── window_transparent.png │ │ │ │ │ ├── window_transparent.png.meta │ │ │ │ │ ├── window_transparent1.png │ │ │ │ │ └── window_transparent1.png.meta │ │ │ ├── GameScript.meta │ │ │ ├── GameScript │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── Encryption.cs │ │ │ │ │ └── Encryption.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── BattleLogic.meta │ │ │ │ │ ├── BattleLogic │ │ │ │ │ ├── BattleRoom.cs │ │ │ │ │ ├── BattleRoom.cs.meta │ │ │ │ │ ├── Entity.meta │ │ │ │ │ └── Entity │ │ │ │ │ │ ├── EntityAsteroid.cs │ │ │ │ │ │ ├── EntityAsteroid.cs.meta │ │ │ │ │ │ ├── EntityBullet.cs │ │ │ │ │ │ ├── EntityBullet.cs.meta │ │ │ │ │ │ ├── EntityEffect.cs │ │ │ │ │ │ ├── EntityEffect.cs.meta │ │ │ │ │ │ ├── EntityEnemy.cs │ │ │ │ │ │ ├── EntityEnemy.cs.meta │ │ │ │ │ │ ├── EntityPlayer.cs │ │ │ │ │ │ └── EntityPlayer.cs.meta │ │ │ │ │ ├── Behaviour.meta │ │ │ │ │ ├── Behaviour │ │ │ │ │ ├── BhvApplicationQuit.cs │ │ │ │ │ ├── BhvApplicationQuit.cs.meta │ │ │ │ │ ├── BhvBackgroundScroller.cs │ │ │ │ │ └── BhvBackgroundScroller.cs.meta │ │ │ │ │ ├── Boot.cs │ │ │ │ │ ├── Boot.cs.meta │ │ │ │ │ ├── EventDefine.meta │ │ │ │ │ ├── EventDefine │ │ │ │ │ ├── BattleEventDefine.cs │ │ │ │ │ ├── BattleEventDefine.cs.meta │ │ │ │ │ ├── PatchEventDefine.cs │ │ │ │ │ ├── PatchEventDefine.cs.meta │ │ │ │ │ ├── SceneEventDefine.cs │ │ │ │ │ ├── SceneEventDefine.cs.meta │ │ │ │ │ ├── UserEventDefine.cs │ │ │ │ │ └── UserEventDefine.cs.meta │ │ │ │ │ ├── GameLogic.meta │ │ │ │ │ ├── GameLogic │ │ │ │ │ ├── FsmNode.meta │ │ │ │ │ ├── FsmNode │ │ │ │ │ │ ├── FsmInitGame.cs │ │ │ │ │ │ ├── FsmInitGame.cs.meta │ │ │ │ │ │ ├── FsmSceneBattle.cs │ │ │ │ │ │ ├── FsmSceneBattle.cs.meta │ │ │ │ │ │ ├── FsmSceneHome.cs │ │ │ │ │ │ └── FsmSceneHome.cs.meta │ │ │ │ │ ├── GameManager.cs │ │ │ │ │ └── GameManager.cs.meta │ │ │ │ │ ├── PatchLogic.meta │ │ │ │ │ ├── PatchLogic │ │ │ │ │ ├── FileStream.cs │ │ │ │ │ ├── FileStream.cs.meta │ │ │ │ │ ├── FsmNode.meta │ │ │ │ │ ├── FsmNode │ │ │ │ │ │ ├── FsmClearCache.cs │ │ │ │ │ │ ├── FsmClearCache.cs.meta │ │ │ │ │ │ ├── FsmCreateDownloader.cs │ │ │ │ │ │ ├── FsmCreateDownloader.cs.meta │ │ │ │ │ │ ├── FsmDownloadFiles.cs │ │ │ │ │ │ ├── FsmDownloadFiles.cs.meta │ │ │ │ │ │ ├── FsmDownloadOver.cs │ │ │ │ │ │ ├── FsmDownloadOver.cs.meta │ │ │ │ │ │ ├── FsmInitialize.cs │ │ │ │ │ │ ├── FsmInitialize.cs.meta │ │ │ │ │ │ ├── FsmPatchDone.cs │ │ │ │ │ │ ├── FsmPatchDone.cs.meta │ │ │ │ │ │ ├── FsmPatchPrepare.cs │ │ │ │ │ │ ├── FsmPatchPrepare.cs.meta │ │ │ │ │ │ ├── FsmUpdateManifest.cs │ │ │ │ │ │ ├── FsmUpdateManifest.cs.meta │ │ │ │ │ │ ├── FsmUpdateVersion.cs │ │ │ │ │ │ └── FsmUpdateVersion.cs.meta │ │ │ │ │ ├── PatchManager.cs │ │ │ │ │ ├── PatchManager.cs.meta │ │ │ │ │ ├── PatchWindow.cs │ │ │ │ │ └── PatchWindow.cs.meta │ │ │ │ │ ├── UIWindow.meta │ │ │ │ │ └── UIWindow │ │ │ │ │ ├── UIAboutWindow.cs │ │ │ │ │ ├── UIAboutWindow.cs.meta │ │ │ │ │ ├── UIBattleWindow.cs │ │ │ │ │ ├── UIBattleWindow.cs.meta │ │ │ │ │ ├── UIHomeWindow.cs │ │ │ │ │ ├── UIHomeWindow.cs.meta │ │ │ │ │ ├── UILoadingWindow.cs │ │ │ │ │ └── UILoadingWindow.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── PatchWindow.prefab │ │ │ │ ├── PatchWindow.prefab.meta │ │ │ │ ├── YooAssetSettings.asset │ │ │ │ └── YooAssetSettings.asset.meta │ │ │ ├── ThirdParty.meta │ │ │ └── ThirdParty │ │ │ │ ├── StreamingAssetsHelper.meta │ │ │ │ ├── StreamingAssetsHelper │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── StreamingAssetsHelperEditor.cs │ │ │ │ │ └── StreamingAssetsHelperEditor.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── StreamingAssetsHelper.cs │ │ │ │ │ └── StreamingAssetsHelper.cs.meta │ │ │ │ ├── UniFramework.meta │ │ │ │ └── UniFramework │ │ │ │ ├── UniEvent.meta │ │ │ │ ├── UniEvent │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── EventGroup.cs │ │ │ │ │ ├── EventGroup.cs.meta │ │ │ │ │ ├── IEventMessage.cs │ │ │ │ │ ├── IEventMessage.cs.meta │ │ │ │ │ ├── UniEvent.asmdef │ │ │ │ │ ├── UniEvent.asmdef.meta │ │ │ │ │ ├── UniEvent.cs │ │ │ │ │ ├── UniEvent.cs.meta │ │ │ │ │ ├── UniEventDriver.cs │ │ │ │ │ ├── UniEventDriver.cs.meta │ │ │ │ │ ├── UniLogger.cs │ │ │ │ │ └── UniLogger.cs.meta │ │ │ │ ├── UniMachine.meta │ │ │ │ ├── UniMachine │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── IStateNode.cs │ │ │ │ │ ├── IStateNode.cs.meta │ │ │ │ │ ├── StateMachine.cs │ │ │ │ │ ├── StateMachine.cs.meta │ │ │ │ │ ├── UniLogger.cs │ │ │ │ │ ├── UniLogger.cs.meta │ │ │ │ │ ├── UniMachine.asmdef │ │ │ │ │ └── UniMachine.asmdef.meta │ │ │ │ ├── UniPooling.meta │ │ │ │ ├── UniPooling │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── CreatePoolOperation.cs │ │ │ │ │ ├── CreatePoolOperation.cs.meta │ │ │ │ │ ├── GameObjectPool.cs │ │ │ │ │ ├── GameObjectPool.cs.meta │ │ │ │ │ ├── SpawnHandle.cs │ │ │ │ │ ├── SpawnHandle.cs.meta │ │ │ │ │ ├── Spawner.cs │ │ │ │ │ ├── Spawner.cs.meta │ │ │ │ │ ├── UniLogger.cs │ │ │ │ │ ├── UniLogger.cs.meta │ │ │ │ │ ├── UniPooling.asmdef │ │ │ │ │ ├── UniPooling.asmdef.meta │ │ │ │ │ ├── UniPooling.cs │ │ │ │ │ ├── UniPooling.cs.meta │ │ │ │ │ ├── UniPoolingDriver.cs │ │ │ │ │ └── UniPoolingDriver.cs.meta │ │ │ │ ├── UniSingleton.meta │ │ │ │ ├── UniSingleton │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── ISingleton.cs │ │ │ │ │ ├── ISingleton.cs.meta │ │ │ │ │ ├── SingletonInstance.cs │ │ │ │ │ ├── SingletonInstance.cs.meta │ │ │ │ │ ├── UniLogger.cs │ │ │ │ │ ├── UniLogger.cs.meta │ │ │ │ │ ├── UniSingleton.asmdef │ │ │ │ │ ├── UniSingleton.asmdef.meta │ │ │ │ │ ├── UniSingleton.cs │ │ │ │ │ ├── UniSingleton.cs.meta │ │ │ │ │ ├── UniSingletonDriver.cs │ │ │ │ │ └── UniSingletonDriver.cs.meta │ │ │ │ ├── UniUtility.meta │ │ │ │ ├── UniUtility │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── UniTimer.cs │ │ │ │ │ ├── UniTimer.cs.meta │ │ │ │ │ ├── UniUtility.asmdef │ │ │ │ │ └── UniUtility.asmdef.meta │ │ │ │ ├── UniWindow.meta │ │ │ │ └── UniWindow │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── OpenWindowOperation.cs │ │ │ │ ├── OpenWindowOperation.cs.meta │ │ │ │ ├── UIWindow.cs │ │ │ │ ├── UIWindow.cs.meta │ │ │ │ ├── UniLogger.cs │ │ │ │ ├── UniLogger.cs.meta │ │ │ │ ├── UniWindow.asmdef │ │ │ │ ├── UniWindow.asmdef.meta │ │ │ │ ├── UniWindow.cs │ │ │ │ ├── UniWindow.cs.meta │ │ │ │ ├── UniWindowDriver.cs │ │ │ │ ├── UniWindowDriver.cs.meta │ │ │ │ ├── WindowAttribute.cs │ │ │ │ └── WindowAttribute.cs.meta │ │ ├── UniTask Sample.meta │ │ └── UniTask Sample │ │ │ ├── README.md │ │ │ ├── README.md.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.InputField.tt │ │ │ │ │ ├── TextMeshProAsyncExtensions.InputField.tt.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 │ │ │ ├── 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 │ │ │ │ ├── Average.tt │ │ │ │ ├── Average.tt.meta │ │ │ │ ├── Buffer.cs │ │ │ │ ├── Buffer.cs.meta │ │ │ │ ├── Cast.cs │ │ │ │ ├── Cast.cs.meta │ │ │ │ ├── CombineLatest.cs │ │ │ │ ├── CombineLatest.cs.meta │ │ │ │ ├── CombineLatest.tt │ │ │ │ ├── CombineLatest.tt.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 │ │ │ │ ├── Min.cs │ │ │ │ ├── Min.cs.meta │ │ │ │ ├── MinMax.cs │ │ │ │ ├── MinMax.cs.meta │ │ │ │ ├── MinMax.tt │ │ │ │ ├── MinMax.tt.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 │ │ │ │ ├── Sum.tt │ │ │ │ ├── Sum.tt.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 │ │ │ │ ├── MonoBehaviourMessagesTriggers.tt │ │ │ │ └── MonoBehaviourMessagesTriggers.tt.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.Generated.tt │ │ │ ├── UniTask.WhenAll.Generated.tt.meta │ │ │ ├── UniTask.WhenAll.cs │ │ │ ├── UniTask.WhenAll.cs.meta │ │ │ ├── UniTask.WhenAny.Generated.cs │ │ │ ├── UniTask.WhenAny.Generated.cs.meta │ │ │ ├── UniTask.WhenAny.Generated.tt │ │ │ ├── UniTask.WhenAny.Generated.tt.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.Shorthand.tt │ │ │ ├── UniTaskExtensions.Shorthand.tt.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.tt │ │ │ ├── UnityAsyncExtensions.tt.meta │ │ │ ├── UnityAsyncExtensions.uGUI.cs │ │ │ ├── UnityAsyncExtensions.uGUI.cs.meta │ │ │ ├── UnityBindingExtensions.cs │ │ │ ├── UnityBindingExtensions.cs.meta │ │ │ ├── UnityWebRequestException.cs │ │ │ ├── UnityWebRequestException.cs.meta │ │ │ ├── _InternalVisibleTo.cs │ │ │ └── _InternalVisibleTo.cs.meta │ │ │ ├── package.json │ │ │ └── package.json.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── link.xml │ └── link.xml.meta ├── Docs ├── CodeStyle.md ├── Engine.AI.FSM.md ├── Engine.Console.md ├── Engine.Network.md ├── Engine.Reference.md ├── GameLauncher.md ├── Image │ ├── WindowModule1.png │ ├── WindowModule2.png │ ├── console.png │ └── framework.png ├── Module.Audio.md ├── Module.Config.md ├── Module.Event.md ├── Module.Network.md ├── Module.Pool.md ├── Module.Resource.md ├── Module.Scene.md ├── Module.Tween.md ├── Module.Window.md ├── MotionEngine.md └── MotionLog.md ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.sln 2 | *.suo 3 | *.csproj 4 | .vs/ 5 | 6 | Library/ 7 | Temp/ 8 | bin/ 9 | obj/ -------------------------------------------------------------------------------- /Assets/MotionFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ac1aba04265f9143957a5b474de973d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/CHANGELOG.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9452482989dbb74b9865c66ec29833c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d332d28277ee7d49b8ee4319e6c3015 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Resources/console_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/Resources/console_background.png -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4cf2a58e574d74aac5310ccd75525a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 388029185fa707340a861f57cd175df2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/AssetSearch.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e47e8d82dcc65184f9a8e1c753b88bc4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/AssetSearch/AssetSearchWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f4923cfe4a83dd43bde3647fe6bdbd5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/EditorDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a455252f5740cb4eac02fd5e9a7f581 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/EditorTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19e25bcfbccaecc449a8410e82ca3587 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/MotionFramework.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6aeebf03c9fac2b408cc947b3feaa606 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4841978eb8598f1459fe56d5b20ff3d0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting/UIPanelModifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6076577ae87253845a16ec633f38704c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting/UIPanelMonitor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bed3b2eaa555ec4e9aaa22a888b504c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting/UIPanelSetting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62fd1df836484fe499fb9363d9d0ac7d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting/UIPanelSettingData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38fa83500de9c474888ab301309562cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Editor/UIPanelSetting/UIPanelSettingWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a12b1c5e1b92e514c8915062d5e92752 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5ef71c752c838c459544a86dd58463c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 427646cfb10656d498f5e8d094a680f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03ce8fe28e97d2f40b814dcae8cad75d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/ELogLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9a7933bf5cb574ab1fa7b757931fcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/IActivatorServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beee09ffd49d7ef49a983e15cca8fe5e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/IModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f4757101f8553d49ad6da27c94c50c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/MainThreadSyncContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dc088445ce08dc4e81bfe04a381b449 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/ModuleSingleton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6c8230c0d097534e950f4e84ce01e96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/MotionEngine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b799b83d73a9cb543b2504ccb1cf796a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Core/MotionLog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbad3cd04905bab4fb6391f5184bcfa0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6aeadb49e16011848beefab8601650ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/ANN.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e5c0b346da7f844099e937d67d9fe98 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/ANN/NeuralDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bae77dcc3bd8d74d911d20bc5858c87 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/ANN/NeuralLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a9666cde7db0994493057018335cd11 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/ANN/NeuralNetwork.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea9403061d0ea8b47a1fed471b9ad728 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/ANN/Neuron.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e010885d30efe3f439d689a3d09f654e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fa4245aafd48894f9f997777feb33d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar/AStarHeuristic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e844f7e1ab5c744ebdf19db95c2fd76 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar/AStarNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee0df1e0fc1cc5942a1cf1d4feefde6a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar/AStarPathFinding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb6cd04ad2911664fab224f66d6e6112 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar/AStarPatterns.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a392539899fc4c489443d2cd0d7cfdf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/AStar/IAStarGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aa1368ab51525c47a83cb7e8d7cbf15 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/FSM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db1db5941396bc646973b57dbb17e926 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/FSM/FiniteStateMachine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d5f799d6af70ea4280a0bc0dab3020a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/FSM/FsmGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 228102d66b60bff43813ae9c0b595c3f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/FSM/IFsmNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a6ac065aa419242a04db52a1515746 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.AI/FSM/ProcedureFsm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22091144859e2ec4d8f8c75538bb5a1f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d31ab63c6e8982469ffce74914f4a4b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/AnimBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef52174816df6104587b15c5b250201a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/AnimMixer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b33204afd07c00c4f8b425276778b8bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/AnimNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6928afd60ab2ed489e492e00d9ddaba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/AnimPlayable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 772b8a9edd8466646bab12d6f5ba1084 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/AnimState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 606e5729d04cc8742a38f58e595c02f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Animation/EAnimStates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5660d9e37e5c2a44f818506c9fe76624 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64000d37ca5cca4eb4908b53f9be554 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console/ConsoleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f02d224d0e39bf24db2e41f0f982b510 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console/ConsoleGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fd3df705aafda04ba9590b482ab54a4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console/DeveloperConsole.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08697fd1e8d875c4888cba0db1280b60 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console/FPSCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 269834f2912e01245a28761bc1787ffc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Console/IConsoleWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e825e215c03a3a54d9ee86a64d99c51a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 774804cd019411e489d3565aea3137e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.IO/ByteBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcd2ef8207d26994497ffeb6e8f30d13 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.IO/StringConvert.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889d01b55e38f7c49bbfb8908d9bf17f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.IO/StringFormat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86ae09fcbdc5301499fb61e9bd4a5794 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.IO/StringOperate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dfe80d5e0cd4564798974e86c7745ac 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5df74ec92889b640bf662d3a2991bb2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network/Package.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f22dd043592bb7448f2f964aba852fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network/Socket.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc6fe4da36e7cce4986c5e629ce89ae2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network/Socket/TcpChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 841a2723c2b01744fb4bcd170411249f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network/Socket/TcpClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ae68566c8488c4099ef4652dd317c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Network/WebRequest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b17e44baf4e346b47b8686607fa1d3e9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Reference.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fe81b14a1faa17408f8bcc7b18f11f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Reference/IReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b7a4e9d2f217d14fa3fd2c5a2de2f8c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Reference/ReferenceCollector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c5b53630547ac94d9281a9abb0814c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Reference/ReferencePool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f4f4ee7b0e49ee459b54961143b5847 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f00e9242af88e04b905a41cfdf8c50d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/AssemblyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f5e6f29b65bf0449a7d33dbe1c04380 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/FileUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b11b6a7c3e2ac3b42934279f2611bd51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/HashUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24be65499552d3e46a4b8611ae81b9f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3123d2179297db341a92247c7ed04a4d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/BitMask32.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 229afadde794cc744a32a2ec829a67f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/BitMask64.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292cc03e5ad0d724188fbfa83506e5e0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/CRC32Algorithm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b096abda3d32ea44b9870c8fa2a6560 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/ObfuscateDouble.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8a64fba6ba07a45b9c3f5355dd76bc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/ObfuscateFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b3ab743f82f4314587e8def6386768f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/ObfuscateInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 490fab43fb3ac0749afa102b9ba57dc8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/ObfuscateLong.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d0fb04b6975a44180f9068d44b7973 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/Misc/Timer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c8072e60d9a07e4ba0634322357d446 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Utility/ProfilerUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ec9a246cc4236d4e83d331746929371 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af1f88536c0900042ae072d86f818806 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Extension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e19b500d8bb26ff4d9a183fd9bc8074d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Extension/System_String_Extension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6742e38aa9d820545ae7ed1171b45193 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3733f4bab1991f4889e6a4123f8e17d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Audio/AssetAudio.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 098382f1afb7fe74282063e2c12b4140 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Audio/AudioManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 010b1c745a7f7f24f873a1cdda5f64df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Audio/EAudioLayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2724f28929f7c0f4ebf49845497a8708 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 889d22b999521ec48948d94a6378eacd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Config/AssetConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6540b11bafee2a4db184aa8008a8f46 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Config/ConfigAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2aeb815d7655e647864fd04d0143639 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Config/ConfigDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 888b9aaacc4105c4e93e674a081e7e60 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Config/ConfigManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae3f979bd6686f4f8546239f967819a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feec152563c6ce5438d22c11c0a66856 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console/ApplicationWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f845ed2fd036eb14b83b46b3054946b7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console/GameLogWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e2a9baee29a8494597fadc3354720c8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console/GameModuleWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7131d9ae7fe6fd488878a650f1e4dd9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console/GameObjectPoolWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63bea20a2aeb5e54e8f985b95b5923f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Console/ReferencePoolWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eca1ecc037913874781860f709eb6b58 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e413da6ee0aaba4ea399ba2cc2ed42a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Event/EventGroup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcc5e4008d087434eb5db1390d8e4e6a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Event/EventManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2a39e0393e22c44b8416d1445c9bb2c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Event/IEventMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dcd12aabf986c6468f748911b1af65a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c5ceeac7fb64f545b513c267da9847f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Network/ENetworkStates.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f957c757cc9bd149911ddfd0d23138b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Network/NetworkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b7dea9d129605b43a891a6f51d167bd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Network/Package.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f204b5ae8f147443ad1ffcf8acc6f40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Pool.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eaa238269407f044c9f3a42f1d87fe25 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Pool/GameObjectCollector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dd976626eb4ca645b4ec80921f4e8fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Pool/GameObjectPoolManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04fd1800aa2e61644893fa7893d93db8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Pool/SpawnGameObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6350d2984a149b349b9cec658d21b12a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Resource.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40d584eb2477b2341aa999273d354aec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Resource/ResourceManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2a4db418f13ceb49864b15788bde173 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 872203539a81ebf488f2314aa1894960 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Scene/AssetScene.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72c36aaf4d64b634b9749c99fd6dd70b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Scene/SceneManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb09ce37f69df3945afc4f1e96558782 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca1840f813fadda4f8621a9a2e8106b8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/ETweenLoop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1391131ea350c9640a05910d947a38b8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/ITweenChain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a69c912d23f3f446aa6dee33054bcc1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/ITweenNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d96ae9e29e307e44087fc62fdc6fc259 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenAllocate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebdc7689a97635045a19a8def64cbf82 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenChain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 466dbe54c22685f48b0bc73113a7edd1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenEase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f73be75c1e900a64bab71022ae49d368 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenExtension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 688bba5b21bb5fa40ac50ba0292aae82 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4942da830749fca4e9cb7bbdf1bda924 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8b3a494b08ef3408b6f52b5abe7db2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1ce3e0893e80104fbc320d03a5bf5bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/ChainNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7a4c117e42263644943d618569e16fd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/ExecuteNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0e71daf2e3846f438e94207f355c106 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/ParallelNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53828e1dbd1e0ef4fa95b13237dbd166 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/SelectorNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35ae6d86b02c78d4baa5c5b45112304e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/SequenceNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de086a12be6a3f04ea3e6edac31cd23c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/TimerNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57190cc55d5fba24ca7f6e22dcbf38fb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/TweenNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6764a4a4b1300a4886350df53844828 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Tween/TweenNode/UntilNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 010500ebd041e5b4d89e581f33e4b0d8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5df16997b4213f94b87487b31f07d660 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8345337715b38b4baa1f3ff2881d43b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UGUI/CanvasRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a89a62f80bd8674bad5b4ba725d8934 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UGUI/CanvasWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d06c05d32f563cb44a9cac893097d8dd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UGUI/UIManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78f8c51d1eac4a548a5306a755aac78f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UGUI/UISprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4de1996ed12b0cf4e8ca0be3bbf410bd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UIRoot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b21f09e7fd065fa4daf4fdc34c72d0dd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/UIWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e1414cd524a4d24aa5653dba76dd850 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/WindowAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 422a90e8b252ae840aca5adb13efb130 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/Module/Module.Window/WindowManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cd9bf5acfacf214dabf26d7db088067 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/Scripts/Runtime/MotionFramework.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c58e12c45b50087489b06b9aa0148fe7 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bf1a7d4f1219304ba3aa3c4dec20270 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/Compatibility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58c2a8b868ee3d9439f918d87877fdfe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/Compatibility/AssetBundleCollectorSetting.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc54f0173b27fb40aee29e7eb3364da 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ac1aba04265f9143957a5b474de973d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db680274cf006c548abff57b7e1894b4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac093515ae764b94aa07be91d4ba978b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fdecc5500229d44887425ce619352fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildReport.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6268d725eec21b4aae819adc1553f0e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2875232ad7f87c148b752d432f3a54f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildSystem/IBuildTask.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | public interface IBuildTask 5 | { 6 | void Run(BuildContext context); 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildSystem/IContextObject.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | public interface IContextObject 5 | { 6 | } 7 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildSystem/TaskAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace YooAsset.Editor 4 | { 5 | [AttributeUsage(AttributeTargets.Class)] 6 | public class TaskAttribute : Attribute 7 | { 8 | public string Desc; 9 | public TaskAttribute(string desc) 10 | { 11 | Desc = desc; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/BuildTasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 254f430e0264bd84387878f8d7280e44 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/DefaultEncryption.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | public class EncryptionNone : IEncryptionServices 5 | { 6 | public EncryptResult Encrypt(EncryptFileInfo fileInfo) 7 | { 8 | throw new System.NotImplementedException(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/EBuildMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b6f2523a865e454d8fa3f48a2852d5a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleBuilder/ECompressOption.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | /// 5 | /// AssetBundle压缩选项 6 | /// 7 | public enum ECompressOption 8 | { 9 | Uncompressed = 0, 10 | LZMA, 11 | LZ4, 12 | } 13 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleCollector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b19f23ac31124274d942d32bec434450 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleCollector/IActiveRule.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | /// 5 | /// 资源分组激活规则接口 6 | /// 7 | public interface IActiveRule 8 | { 9 | /// 10 | /// 是否激活分组 11 | /// 12 | bool IsActiveGroup(); 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleCollector/IPackRule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 577f7c1abcdf0a140958f1d1d44d6f40 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleCollector/IShareAssetPackRule.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | /// 5 | /// 共享资源的打包规则 6 | /// 7 | public interface IShareAssetPackRule 8 | { 9 | /// 10 | /// 获取打包规则结果 11 | /// 12 | PackRuleResult GetPackRuleResult(string assetPath); 13 | } 14 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleCollector/RuleDisplayName.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset.Editor 3 | { 4 | public class RuleDisplayName 5 | { 6 | public string ClassName; 7 | public string DisplayName; 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleDebugger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b503bf79c4303d4794d7c9414a4c201 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleDebugger/VisualViewers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a034acd0035503742bc8d24b3c4068c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleReporter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 197364393c72852419af32ef010600bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/AssetBundleReporter/VisualViewers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dfde84e843cc34468dd1071608926bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/EditorDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33ff61240a851e4fbaea71d01a460cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/EditorTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8cbaf07016a5d045a8f463042a64c25 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/HomePage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 901fc6964e7d483428830e2681899473 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/SettingLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2d701e695ac3fe4cbe25d43dde05944 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/ShaderVariantCollector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcb9955c15609744a9666bd76f6af3d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/UxmlDefine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c3f4136cf7142346ae33e8a82cbdb27 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/UxmlExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8e4a86c3bd8c8947a947776891e14b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/UxmlLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed843f102c2467845b34fdce5d537e47 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Editor/YooAsset.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d1926c9df5b052469a1c63448b7609a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fec07d458534d34ea14d1b1a0a5100b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/README.md: -------------------------------------------------------------------------------- 1 | **YooAsset**是一套用于Unity3D的资源管理系统,用于帮助研发团队快速部署和交付游戏。 2 | 3 | 它可以满足商业化游戏的各类需求,并且经历多款百万DAU游戏产品的验证。 4 | 5 | 更多信息请了解官方主页:https://github.com/tuyoogame/YooAsset 6 | 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf18b110959e74849b675ca29f77c7dd 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40472229e23f3314f9a7123ad2d6e1e4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetReference.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace YooAsset 4 | { 5 | public class AssetReference 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1534f1a1b207ad542bf1fc73da8b4316 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6b180f448258247a506a5d0ea4922e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem/AssetSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ecc5913758e8234fbba5ef2fd192f86 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem/Handles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 937392854b37d5043808598f2d0e07ec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem/Loader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58462a7dcef164e43878a037395d4417 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem/Operations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcfac83df022948478c32bf11b8e0987 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/AssetSystem/Provider.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c64025c73372d9d4cab02c9cf9436e55 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96a75a20111d6124696665e7aac3564c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/CacheFileInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4a97c06e069c1146a881fcb359f9b4b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/CacheSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8616c7550a7890141af598898a12df1b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/EVerifyLevel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ad351eb8539da47a0c789e2f8c468f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/EVerifyResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65584a0568d40b14582a3c4aaf947b98 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/Operations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d29a9623b2b346e439b7a7e37fafa781 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/Operations/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a93a516506b2b5c4492fdefe26eb1175 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/PackageCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08f3e92fdbd5d56459d8882be1f54f60 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/CacheSystem/VerifyElement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a4b96484bd701f4289b2f74c38abaa8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DiagnosticSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13c0685c8f990994eb8bccb06df93ca3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DiagnosticSystem/DebugReport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04568a15f0fdb58438568dac56c588c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DiagnosticSystem/RemoteCommand.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e79402f4d610fb4408aa6f8a94b09cb9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DownloadSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715017c3b0bb2a3429d8f021b0d9a2b2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DownloadSystem/DownloadReport.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d40b8341fcd4ad2478eb1a890ebf0476 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DownloadSystem/DownloadSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d19eae1f43ecf6347925a06730a6c846 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/DownloadSystem/Downloader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a82eeb6a47cd02c4cb38e851c8ed8784 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/InitializeParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b5e8a77215adb45b203be8a4fb9eda 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/OperationSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94cb69081e4d394e80f6fca6da4366f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/OperationSystem/EOperationStatus.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset 3 | { 4 | public enum EOperationStatus 5 | { 6 | None, 7 | Succeed, 8 | Failed 9 | } 10 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ecf79384c5577a49a9908067c7ca646 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/AssetInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07db4f624e6cf80468fadd9e94691017 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/BundleInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2939a2b9862f05545969cc5fcb378bd8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/ManifestTools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1014f7c3c05ebab4d8023b27f97a2119 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/Operations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4812fd895ef2d7e4a97956be2c6f8170 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/Operations/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba3f4fc8cf6941f4a96ab928cec547e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/PackageAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df359cc7c21634d41b5d05f09ca59cf2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/PackageBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70ff08c6c9b0f5e4c993ec4c91954467 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/PackageManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0bb3469358a90d41a3a4b284a3ddc8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/PackageSystem/PlayMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9d6cb1ce5d510645866ad7c122abfab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2de5a58f37a4ae64e804f150144da809 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("YooAsset.Editor")] 4 | [assembly: InternalsVisibleTo("YooAsset.EditorExtension")] 5 | [assembly: InternalsVisibleTo("YooAsset.RuntimeExtension")] 6 | [assembly: InternalsVisibleTo("Assembly-CSharp-Editor")] -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Properties/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6847b71aba411740aaec06eea58a377 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Services.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf4cc5f446778bc428a69fdcd183e447 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Services/IQueryServices.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset 3 | { 4 | public interface IQueryServices 5 | { 6 | /// 7 | /// 查询内置资源 8 | /// 9 | bool QueryStreamingAssets(string fileName); 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Services/IQueryServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71b4ac2c7d7f15b40a457f355d535f33 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Services/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40c870edb8e84064a8be2d56acb8bbc0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Services/Internal/IRemoteServices.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace YooAsset 3 | { 4 | internal interface IRemoteServices 5 | { 6 | string GetRemoteMainURL(string fileName); 7 | string GetRemoteFallbackURL(string fileName); 8 | } 9 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff07a5253f139bf40856fa1ed6a6bb5b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Settings/YooAssetSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bd1afdce9715f84eb4cbc901922afc2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 770292fd53451ac40b45c59a4ef241a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/BufferReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76257995ca887ad48ac02bd5d2174d9b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/BufferWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a270f91ca07a38445949cb5e8195f0a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/CRC32Algorithm.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5eb0b1129d88a744973666a66a1902c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/YooHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9581e7c53fe081749ab849ec6e2be3d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/YooLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ffcef42f3747ab43908595778accc29 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/Utility/YooUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b559b6cd6f58a04497ef21b68d5dde8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/YooAsset.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e34a5702dd353724aa315fb8011f08c3 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/YooAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc02342251289b46a6fedc192aaa9b6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/YooAssetsDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6849dc1f64284274490437c22a811a1d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Runtime/YooAssetsExtension.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2db868c2aaaee8e42a7f035117e747c4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Extension Sample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b03c990ab10d8dc479d294d70f7c31a0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Extension Sample/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b073fca11bf0abf4f8dbfc9f70e1f9bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Extension Sample/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83541de392f5489438a81cb60f751e9c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Extension Sample/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6816dd00c9cfdce4d9386c0b3088b843 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0e9b24f4f0c31545a02f94e951bc9d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/AssetSetting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf9d3086b2515164fadc5025d764eeed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/AssetSetting/AssetBundleBuilderSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a363de58f5d6e9e438b2b9a692187f6e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/AssetSetting/AssetBundleCollectorConfig.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 218816e46e4f6304eaecd6fdc3a99f4d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/AssetSetting/AssetBundleCollectorSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 007a65bdc7416fd4a8823ff50f753d50 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/AssetSetting/ShaderVariantCollectorSetting.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b763f43bfb633944aa8955535b965c1f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/Boot.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db23997b705e34a419ba834ac85344f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f9f9848e17e5eb46b596a07391a42cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_bolt_cyan_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63fe6ff9ab9e1433f8db4ebd940f2442 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_bolt_orange_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e27380ee68aa4a219b4db9018e7da31 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_enemyShip_engines_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b4bad6cea5a94611b21f9757fe41444 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_lazer_cyan_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_lazer_cyan_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_lazer_orange_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/fx_lazer_orange_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_blast_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cfe02ffd0b74854ea5bcd1a3c63ac3c 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_enginePulse_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_enginePulse_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_flash_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_flash_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_glow_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ed73dc47f4cb38489020d05e9f02c99 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_core_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_core_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_core_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c58c9afddbd36d14d837fa218d772996 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_flare_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_flare_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_jet_flare_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b030cffa2dc44478c14e49a22771c2 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_shockwave_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_shockwave_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_shockwave_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d46a17a95a444c08830612bc1146d1d 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_blue_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c7cf51d3fecb446ab93bf854419715 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_large_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_large_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_large_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97b1f8b25cca2bc458cb9d6127c8d186 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_small_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_small_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_white_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f995b3145e0e7247a42da6cef1dbf23 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_spark_yellow_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a23eef5e20ff8cb46adf33491fc443fb 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_star_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_star_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Effect/part_star_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 185f97f18bd603a478461ce9c08bd039 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cceb877e06414a648926ca1230374a57 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ff26c6a2993dbf48a8fe071b51ef606 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fa7c45d3ba23c543a5696e7b7287d99 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10823e059e253a04083b6122027db930 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/Materials/prop_asteroid_01_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2028e985f7c2d9740858bcf7b567af05 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 583ff7026dac91849b7c7b2468ba456b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01_nrm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_01/prop_asteroid_01_nrm.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 303192e2098781949869cba7919f51c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11bb85ea268af24479830c45b3b21962 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/Materials/prop_asteroid_02_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec1ef84828f4b1e478c51c1c468a3fb6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 578af1667322bab45b652b79a40bb4fb 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02_nrm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_02/prop_asteroid_02_nrm.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b6f7793e0ee774429d213827edf3da4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 341ae2d28a0e18a40907cf38d7113825 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/Materials/prop_asteroid_03_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb585fc32e8ff0d4ca301d5ace6cb531 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c3865b2ac420cd46a9cde6ab468d016 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03_nrm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Asteroid/prop_asteroid_03/prop_asteroid_03_nrm.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc38993f12e70694fb84c45607c9f24c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62d1ca6b401f5b546b7b6edfb80ad299 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb1f7120ecd3f5e478f7505c2921cc35 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/Materials/vehicle_enemyShip_glow_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 675de5eae7418564e9f77608fb14ce96 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/Materials/vehicle_enemyShip_metal_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66c224bd8cd9b7d44bf7944e32b603fe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_glow_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e0350b97c61bfb4a91c62d756d01727 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_metal_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c547624e174de984882f0a14b4bb32e1 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_nrm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_nrm.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_purple_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_purple_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_red_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_enemyShip/vehicle_enemyShip_red_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd9183afc76f8ec4d9dd745b7f7d0499 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6638b178c52c9e44198ca3fd5f3c4bd8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/Materials/vehicle_playerShip_glass_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f60c03db44b7fd4898c532bc3d1bb86 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/Materials/vehicle_playerShip_metal_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1109665e2073c024083d3230dba1fa09 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_collider.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_collider.FBX -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_glass_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f36c72c738c55f741afcd674a0b1245f 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_metal_mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8940b037a9b441c4cbd3d2b446838424 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_orange_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_orange_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_orange_nrm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Entity/Vehicle/vehicle_playerShip/vehicle_playerShip_orange_nrm.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 214f92124328c964798dd33a78bab85d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene/cube_junkyard_sharp.cubemap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a18a747c16a9b478bead78298b8258 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene/cube_junkyard_soft.cubemap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92439ca99b5183e4b9ead41e36a0db40 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene/tile_nebula_green_dff.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 955000b4d1441470e8cbf94f483228b5 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene/tile_nebula_green_dff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Scene/tile_nebula_green_dff.tif -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/Shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b316670a5365349bbdfb4a41c71ce6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/ShaderVariants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00781758c26692e40a9634ddeac838be 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/ShaderVariants/MyShaderVariants.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36e6a95e5caea244eba1d1c64bc051a4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/ShaderVariants/MyShaderVariants.shadervariants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9db74adeb46eb2c42a3ad37355029660 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 20000000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIAnim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ede1368ba1fd90949ba1a0b4c74c6970 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIAnim/UIBgEffect.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd12c3b484650fb4e8ad6463c61be1c9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIAnim/UIBgEffect.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 421c063ced5a88441bf232f19be89c34 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIAtlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80caf8bc3d0ac5b48a5cab7765a68205 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIAtlas/common.spriteatlas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1679f4d6c3aca0549bfab2e3f327a98b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4343727234628468602 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIFont.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 464727a15e4a7dc4d895346374432399 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIFont/zekton free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameArt/UIFont/zekton free.ttf -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a3e7ee49993eb743836caef72b949ce 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 306075fbe00b24251b6c889984a7a7d5 3 | folderAsset: yes 4 | timeCreated: 1438075911 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/music_background.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/music_background.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_asteroid.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_asteroid.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_enemy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_enemy.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_player.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_explosion_player.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_weapon_enemy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_weapon_enemy.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_weapon_player.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Audio/sound_weapon_player.wav -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1894d23646ddbf8479e579cc03261dde 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Config/about.txt: -------------------------------------------------------------------------------- 1 | Powered by YooAsset @tuyoogame -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Config/about.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66ce1e032fc66694bb3fce32961d78d5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80d76514758554baaa96a9efffe9f3ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Engines.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27267307e339645e08d812c2bd97702c 3 | folderAsset: yes 4 | timeCreated: 1438075911 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Engines/engines_enemy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93bdcaae53f95461785a8eeb8c01bc61 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Engines/engines_player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62ea8a5ca94c546f29ba6dea8f379a7b 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Explosions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8421d374f00145d485dad8f07fdde7e 3 | folderAsset: yes 4 | timeCreated: 1438075911 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Explosions/explosion_asteroid.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6d58f54ce5934781962a4f887e834f3 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Explosions/explosion_enemy.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 160925a6fe2664f2a978566b819f0af0 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Effect/Explosions/explosion_player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3455fe69f7ddc4604b95bf9b0a1e88d7 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7c84745db8e884f8020a8c5356e67c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/asteroid01.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d5f7699d6d1d48e485ac71126e12061 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/asteroid02.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9143e2b62ad50488482f9b73672fc331 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/asteroid03.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 834bfaee90a9d4e04b1e8c1ca22cc88e 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/enemy_bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e27c26ac87b40f0a62ec40d7261989 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/enemy_ship.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afc18fc39ade3744397c0c993b57be53 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/player_bullet.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4ec271e525e14ca9927a07e6a2e153d 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Entity/player_ship.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 738bdf56857a65f479c367c7b62c4ad7 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6070eae1192f2994887f2983a177d503 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Scene/scene_battle.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 367249c8f14b3a041b2a5c9a2b7de7a5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/Scene/scene_home.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1f972c576a5e20448964044e23ac974 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIImage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30c57db62bb02a24590e7046d3a9e33a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIImage/Space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIImage/Space.jpg -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12d33f33f3a55224c9c747d7bffa1c68 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel/UIAbout.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e0f217747ebd544c82e9ddd1b47525e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel/UIBattle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dffa197b1a69704408cf9e2b16162c0e 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel/UICanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1700631a871f2da418ca3815faed9394 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel/UIHome.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f33f75c4ce22cf248abf851242ac4363 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UIPanel/UILoading.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79ae622f4c23c47449fc3ea70abaca51 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01865ad6f7c806147b6cb37f2d83bc96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5338a5ade0415264b976d834237aa226 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96761de9252a2be45b984c64f3307bd0 3 | folderAsset: yes 4 | timeCreated: 1438091524 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow1_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow1_left.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow1_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow1_right.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow_left.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/arrow_right.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/back_arrow.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/long_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/long_arrow_left.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/long_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/long_arrow_right.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/arrows/plus.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ef7e8cb2b1939e4fbaa2f4fb83fae34 3 | folderAsset: yes 4 | timeCreated: 1438091524 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/bar_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/bar_blue.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/bar_blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/bar_blue1.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/progress_bar.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/progress_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/bars/progress_bar_background.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7916cd3fc7621524ab888d9cae92c327 3 | folderAsset: yes 4 | timeCreated: 1438091524 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/bullets.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button1.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button_active.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button_pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/button_pushed.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/pause.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/buttons/rocket.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/window.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 856900e36ea72f24a9896ec2db21a71e 3 | folderAsset: yes 4 | timeCreated: 1438091524 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/window/window_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/window/window_transparent.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/window/window_transparent1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameRes/UISprite/common/window/window_transparent1.png -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68f7a10d23502e54a9d548a02a6fe12d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62f3c214d7670b44ebbee7153636c648 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 631e5633e0d02ff49b08cb300f7139a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/BattleLogic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358519dfd46c3c84d9300408c743ebf7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/BattleLogic/Entity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2673676235c2ebf4790768011d015d1d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/Behaviour.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2f6bcc746b3d984e81caafa7d25467b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/EventDefine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8428e7a0bb96bf946aa3034281990090 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/GameLogic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae7dcd2cee351e4390eebef0851486e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/GameLogic/FsmNode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beab7f759234b61469afb94f517f959b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/PatchLogic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0806ae86bd95bad4ca04d04b9084170f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/PatchLogic/FsmNode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22a43ec58b9da1743bfa629be08ef1ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/GameScript/Runtime/UIWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fadb6c5775042624595410d325420148 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aad929587001754ea117984bb4251de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/Resources/PatchWindow.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd3c0e69e672e0f4cb953ab81d5644e9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/Resources/YooAssetSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb3f660b9d6ba4eb3b669b94ac4886 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3998ac960c12c419cbfdb0df4c4f20 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/StreamingAssetsHelper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dc8cc2d1f4fd7149a0a1f13f8f8e54b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/StreamingAssetsHelper/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b1fa97e8bb8c5c46ad030b9554e1b5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/StreamingAssetsHelper/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b19a7385dee2d0141901167dbfda9300 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb9a320b68b1078468ead3c9a8e9a98a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2801816f5bf9e74eb7f2e2b340ad4cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/README.md: -------------------------------------------------------------------------------- 1 | # UniFramework.Event 2 | 3 | 一个轻量级的事件系统。 4 | 5 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dfad42c0d1a02f429a99108a35bbfce 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e86e06e6a95e6cc43940623bcc15721c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/Runtime/IEventMessage.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace UniFramework.Event 3 | { 4 | public interface IEventMessage 5 | { 6 | } 7 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/Runtime/UniEvent.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f22fac247a56d2d41b687bb0d900e54e 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniEvent/Runtime/UniEventDriver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace UniFramework.Event 4 | { 5 | internal class UniEventDriver : MonoBehaviour 6 | { 7 | void Update() 8 | { 9 | UniEvent.Update(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16d76e3e6337b0c4cae28696d4be4c7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine/README.md: -------------------------------------------------------------------------------- 1 | # UniFramework.Machine 2 | 3 | 一个轻量级的状态机。 4 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c3656e4009078943b97b6dcca2c5063 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26f3a6fd3a4f2a247a53a37334fd7624 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine/Runtime/IStateNode.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace UniFramework.Machine 3 | { 4 | public interface IStateNode 5 | { 6 | void OnCreate(StateMachine machine); 7 | void OnEnter(); 8 | void OnUpdate(); 9 | void OnExit(); 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniMachine/Runtime/UniMachine.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c55575a9f1747c240822f4b7e0400716 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniPooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cfeaa68459d1cb4f96e62f6b7bd9fd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniPooling/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7976cbcaa4dcfcc4b932fb01d6c0499a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniPooling/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5904699460a22064182a5cf9129fc09e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniPooling/Runtime/UniPooling.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0a84d582f6a6fa4185f67ce934d99c2 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniPooling/Runtime/UniPoolingDriver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace UniFramework.Pooling 4 | { 5 | internal class UniPoolingDriver : MonoBehaviour 6 | { 7 | void Update() 8 | { 9 | UniPooling.Update(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4d0461b6228c584dab24fbeb8dc4907 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton/README.md: -------------------------------------------------------------------------------- 1 | # UniFramework.Singleton 2 | 3 | 一个轻量级的单例系统。 4 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 496f400bdfe0c6c46809be47d2a45b37 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aef3e45fdde94b245841e6e62655912f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton/Runtime/UniSingleton.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b35e33884f6755d43b7e0511e88956d0 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniSingleton/Runtime/UniSingletonDriver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace UniFramework.Singleton 4 | { 5 | internal class UniSingletonDriver : MonoBehaviour 6 | { 7 | void Update() 8 | { 9 | UniSingleton.Update(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniUtility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 039eb69f46ea8bf4c873ab10b816da92 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniUtility/README.md: -------------------------------------------------------------------------------- 1 | # UniFramework.Utility 2 | 3 | 一些工具类。 4 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniUtility/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f055964b764f8cc41996f3c543307c85 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniUtility/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3799338015524b47a601024fd574a90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniUtility/Runtime/UniUtility.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ea6b676786131e4095182b742bb64ec 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5079914495c00a74e873f6490a7a5673 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow/README.md: -------------------------------------------------------------------------------- 1 | # UniFramework.Window 2 | 3 | 一个轻量级的基于堆栈的界面系统。 4 | 5 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e55b8a0d57de5428a1e06cc0cc87b3 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a933ee98d9388e74dba1a42e77f4f6d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow/Runtime/UniWindow.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e62322788ba70c5428b168602000a586 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/Space Shooter/ThirdParty/UniFramework/UniWindow/Runtime/UniWindowDriver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace UniFramework.Window 4 | { 5 | internal class UniWindowDriver : MonoBehaviour 6 | { 7 | void Update() 8 | { 9 | UniWindow.Update(); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d24eb65eaa261cf4cb16dafe7f09b4ba 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6375cc739b170490fbc6c38181b2c600 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaf714c0c57134e7ab7675a7528c1505 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275b87293edc6634f9d72387851dbbdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Editor/UniTask.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4129704b5a1a13841ba16f230bf24a57 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa765154468d4b34eb34304100d39e64 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/CompilerServices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64b064347ca7a404494a996b072e2e29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e874acee8398745b1dc3eddac09eaa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/Addressables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5b9231662e24c942b544bd85d4b39cb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/Addressables/UniTask.Addressables.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 593a5b492d29ac6448b1ebf7f035ef33 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/DOTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25cb2f742bfeb1d48a4e65d3140b955d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/DOTween/UniTask.DOTween.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 029c1c1b674aaae47a6841a0b89ad80e 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/TextMeshPro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f89da606bde9a4e4e94ae1189a029887 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/TextMeshPro/TextMeshProAsyncExtensions.InputField.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9bb9fc551a975d44a7180e022a2debe 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/TextMeshPro/UniTask.TextMeshPro.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc47925d1a5fa2946bdd37746b2b5d48 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/YooAsset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a55ef7d1bba14cc982b478d482c4461 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/YooAsset/AsyncOperationBaseExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cceff5ec1f84bd0a6a9b4ed7719527c 3 | timeCreated: 1651978895 -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/External/YooAsset/OperationHandleBaseExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1c9a3a6de2246bf88547a6b59b99b9f 3 | timeCreated: 1650851321 -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 633f49a8aafb6fa43894cd4646c71743 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc94a232b1c1154b8084bdda29c3484 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/Average.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84bce45768c171d4490153eb08630a98 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/CombineLatest.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1b8cfa9d17af814a971ee2224aaaaa2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/MinMax.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18108e9feb2ec40498df573cfef2ea15 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/Sum.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61271ca8e712494ab1ce2d10b180b6f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/UniTask.Linq.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c01796d064528144a599661eaab93a6 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Linq/UnityExtensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669f5459819f7284ca1b35f4d55fe226 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Triggers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85c0c768ced512e42b24021b3258b669 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/Triggers/MonoBehaviourMessagesTriggers.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ca26d0cd9373354c8cd147490f32c8e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/UniTask.WhenAll.Generated.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c2ecfd98ee1b9a4c9fae1b398c32d75 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/UniTask.WhenAny.Generated.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71c2c0bce7543454c8ef545083e18170 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/UniTask.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f51ebe6a0ceec4240a699833d6309b23 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/UniTaskExtensions.Shorthand.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a75b5d7e55a5a34fb6476586df37c72 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/Runtime/UnityAsyncExtensions.tt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1053c85b3f0794488b10e6de53e9c02 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/Samples~/UniTask Sample/UniTask/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a9a71f68bb0d04db91ddaa3329abf9 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/ThirdParty/YooAsset/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 552d612838977104b9bb3c91df401915 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/MotionFramework/link.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Assets/MotionFramework/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edad1739bdee4d046a88290717aea819 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Docs/Image/WindowModule1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Docs/Image/WindowModule1.png -------------------------------------------------------------------------------- /Docs/Image/WindowModule2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Docs/Image/WindowModule2.png -------------------------------------------------------------------------------- /Docs/Image/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Docs/Image/console.png -------------------------------------------------------------------------------- /Docs/Image/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmhevinci/MotionFramework/482c858c5eb7971e1758a2da7544257901dda7e1/Docs/Image/framework.png -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.6f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | --------------------------------------------------------------------------------