├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── enhancement.yaml │ └── other.yaml └── workflows │ ├── dotnet.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── THIRDPARTY_LICENSES.md ├── UnityEditorPackage ├── LICENSE.md ├── README.md ├── Runtime │ ├── 0Harmony.dll │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.dll │ ├── MonoMod.RuntimeDetour.dll │ ├── MonoMod.Utils.dll │ ├── Tomlet.dll │ ├── UnityExplorer.prefab │ └── mcs.dll ├── Third Party Notices.md └── package.json ├── img ├── icon.png └── preview.png ├── lib ├── ILRepack.exe ├── interop │ ├── Il2CppSystem.Core.dll │ ├── Il2Cppmscorlib.dll │ ├── UnityEngine.AssetBundleModule.dll │ ├── UnityEngine.AudioModule.dll │ ├── UnityEngine.CoreModule.dll │ ├── UnityEngine.IMGUIModule.dll │ ├── UnityEngine.PhysicsModule.dll │ ├── UnityEngine.TextRenderingModule.dll │ ├── UnityEngine.UI.dll │ ├── UnityEngine.UIModule.dll │ └── UnityEngine.dll ├── net35 │ ├── BepInEx │ │ ├── BepInEx.dll │ │ ├── build423~577 │ │ │ ├── BepInEx.Core.dll │ │ │ └── BepInEx.Unity.dll │ │ └── build647+ │ │ │ ├── BepInEx.Core.dll │ │ │ └── BepInEx.Unity.Mono.dll │ ├── MelonLoader.dll │ ├── UnityEngine.UI.dll │ ├── UnityEngine.dll │ └── mcs.dll ├── net472 │ └── BepInEx │ │ ├── build423~577 │ │ ├── BepInEx.Core.dll │ │ └── BepInEx.IL2CPP.dll │ │ └── build647+ │ │ ├── BepInEx.Core.dll │ │ ├── BepInEx.Unity.Common.dll │ │ └── BepInEx.Unity.IL2CPP.dll ├── net6 │ ├── MelonLoader.dll │ ├── System.Runtime.dll │ └── mcs.dll └── unhollowed │ ├── Il2CppSystem.Core.dll │ ├── Il2Cppmscorlib.dll │ ├── UnityEngine.AssetBundleModule.dll │ ├── UnityEngine.AudioModule.dll │ ├── UnityEngine.CoreModule.dll │ ├── UnityEngine.IMGUIModule.dll │ ├── UnityEngine.PhysicsModule.dll │ ├── UnityEngine.TextRenderingModule.dll │ ├── UnityEngine.UI.dll │ ├── UnityEngine.UIModule.dll │ └── UnityEngine.dll └── src ├── .editorconfig ├── CSConsole ├── CSAutoCompleter.cs ├── ConsoleController.cs ├── ConsoleScriptEvaluator.cs ├── LexerBuilder.cs ├── Lexers │ ├── CommentLexer.cs │ ├── KeywordLexer.cs │ ├── Lexer.cs │ ├── NumberLexer.cs │ ├── StringLexer.cs │ └── SymbolLexer.cs ├── ScriptEvaluator.cs ├── ScriptEvaluatorResult.cs └── ScriptInteraction.cs ├── CacheObject ├── CacheConfigEntry.cs ├── CacheConstructor.cs ├── CacheField.cs ├── CacheKeyValuePair.cs ├── CacheListEntry.cs ├── CacheMember.cs ├── CacheMemberFactory.cs ├── CacheMethod.cs ├── CacheObjectBase.cs ├── CacheProperty.cs ├── ICacheObjectController.cs ├── IValues │ ├── InteractiveColor.cs │ ├── InteractiveDictionary.cs │ ├── InteractiveEnum.cs │ ├── InteractiveList.cs │ ├── InteractiveString.cs │ ├── InteractiveValue.cs │ └── InteractiveValueStruct.cs └── Views │ ├── CacheConfigCell.cs │ ├── CacheKeyValuePairCell.cs │ ├── CacheListEntryCell.cs │ ├── CacheMemberCell.cs │ └── CacheObjectCell.cs ├── Config ├── ConfigElement.cs ├── ConfigHandler.cs ├── ConfigManager.cs ├── IConfigElement.cs └── InternalConfigHandler.cs ├── ExplorerBehaviour.cs ├── ExplorerCore.cs ├── ExplorerKeybind.cs ├── Hooks ├── AddHookCell.cs ├── HookCell.cs ├── HookCreator.cs ├── HookInstance.cs └── HookList.cs ├── Inspectors ├── GameObjectInspector.cs ├── InspectorBase.cs ├── InspectorManager.cs ├── InspectorTab.cs ├── MouseInspector.cs ├── MouseInspectors │ ├── MouseInspectorBase.cs │ ├── UiInspector.cs │ └── WorldInspector.cs └── ReflectionInspector.cs ├── Loader ├── BepInEx │ ├── BepInExConfigHandler.cs │ └── ExplorerBepInPlugin.cs ├── IExplorerLoader.cs ├── MelonLoader │ ├── ExplorerMelonMod.cs │ └── MelonLoaderConfigHandler.cs └── Standalone │ ├── Editor │ ├── ExplorerEditorBehaviour.cs │ └── ExplorerEditorLoader.cs │ ├── ExplorerStandalone.cs │ └── StandaloneConfigHandler.cs ├── ObjectExplorer ├── ObjectSearch.cs ├── SceneExplorer.cs ├── SceneHandler.cs └── SearchProvider.cs ├── Properties └── AssemblyInfo.cs ├── Runtime ├── Il2CppHelper.cs ├── MonoHelper.cs ├── UERuntimeHelper.cs └── UnityCrashPrevention.cs ├── Tests └── TestClass.cs ├── UI ├── DisplayManager.cs ├── ExplorerUIBase.cs ├── Notification.cs ├── Panels │ ├── AutoCompleteModal.cs │ ├── CSConsolePanel.cs │ ├── ClipboardPanel.cs │ ├── FreeCamPanel.cs │ ├── HookManagerPanel.cs │ ├── InspectorPanel.cs │ ├── LogPanel.cs │ ├── MouseInspectorResultsPanel.cs │ ├── ObjectExplorerPanel.cs │ ├── OptionsPanel.cs │ ├── UEPanel.cs │ └── UEPanelDragger.cs ├── UEPanelManager.cs ├── UIManager.cs └── Widgets │ ├── AutoComplete │ ├── EnumCompleter.cs │ ├── ISuggestionProvider.cs │ ├── Suggestion.cs │ └── TypeCompleter.cs │ ├── EvaluateWidget │ ├── BaseArgumentHandler.cs │ ├── EvaluateWidget.cs │ ├── GenericArgumentHandler.cs │ ├── GenericConstructorWidget.cs │ └── ParameterHandler.cs │ ├── GameObjects │ ├── AxisControl.cs │ ├── ComponentCell.cs │ ├── ComponentList.cs │ ├── GameObjectControls.cs │ ├── GameObjectInfoPanel.cs │ ├── TransformControls.cs │ ├── TransformType.cs │ └── Vector3Control.cs │ ├── TimeScaleWidget.cs │ └── UnityObjects │ ├── AudioClipWidget.cs │ ├── MaterialWidget.cs │ ├── Texture2DWidget.cs │ └── UnityObjectWidget.cs ├── UnityExplorer.csproj ├── UnityExplorer.sln └── nuget.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: yukieiji 4 | 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.github/ISSUE_TEMPLATE/enhancement.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.github/ISSUE_TEMPLATE/other.yaml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/README.md -------------------------------------------------------------------------------- /THIRDPARTY_LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/THIRDPARTY_LICENSES.md -------------------------------------------------------------------------------- /UnityEditorPackage/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/LICENSE.md -------------------------------------------------------------------------------- /UnityEditorPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/README.md -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/0Harmony.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/Mono.Cecil.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/MonoMod.RuntimeDetour.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/MonoMod.RuntimeDetour.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/MonoMod.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/MonoMod.Utils.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/Tomlet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/Tomlet.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/UnityExplorer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/UnityExplorer.prefab -------------------------------------------------------------------------------- /UnityEditorPackage/Runtime/mcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Runtime/mcs.dll -------------------------------------------------------------------------------- /UnityEditorPackage/Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/Third Party Notices.md -------------------------------------------------------------------------------- /UnityEditorPackage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/UnityEditorPackage/package.json -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/img/preview.png -------------------------------------------------------------------------------- /lib/ILRepack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/ILRepack.exe -------------------------------------------------------------------------------- /lib/interop/Il2CppSystem.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/Il2CppSystem.Core.dll -------------------------------------------------------------------------------- /lib/interop/Il2Cppmscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/Il2Cppmscorlib.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.AssetBundleModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.AssetBundleModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.AudioModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.AudioModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.PhysicsModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.PhysicsModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.TextRenderingModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.TextRenderingModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.UI.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /lib/interop/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/interop/UnityEngine.dll -------------------------------------------------------------------------------- /lib/net35/BepInEx/BepInEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/BepInEx/BepInEx.dll -------------------------------------------------------------------------------- /lib/net35/BepInEx/build423~577/BepInEx.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/BepInEx/build423~577/BepInEx.Core.dll -------------------------------------------------------------------------------- /lib/net35/BepInEx/build423~577/BepInEx.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/BepInEx/build423~577/BepInEx.Unity.dll -------------------------------------------------------------------------------- /lib/net35/BepInEx/build647+/BepInEx.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/BepInEx/build647+/BepInEx.Core.dll -------------------------------------------------------------------------------- /lib/net35/BepInEx/build647+/BepInEx.Unity.Mono.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/BepInEx/build647+/BepInEx.Unity.Mono.dll -------------------------------------------------------------------------------- /lib/net35/MelonLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/MelonLoader.dll -------------------------------------------------------------------------------- /lib/net35/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/UnityEngine.UI.dll -------------------------------------------------------------------------------- /lib/net35/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/UnityEngine.dll -------------------------------------------------------------------------------- /lib/net35/mcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net35/mcs.dll -------------------------------------------------------------------------------- /lib/net472/BepInEx/build423~577/BepInEx.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net472/BepInEx/build423~577/BepInEx.Core.dll -------------------------------------------------------------------------------- /lib/net472/BepInEx/build423~577/BepInEx.IL2CPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net472/BepInEx/build423~577/BepInEx.IL2CPP.dll -------------------------------------------------------------------------------- /lib/net472/BepInEx/build647+/BepInEx.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net472/BepInEx/build647+/BepInEx.Core.dll -------------------------------------------------------------------------------- /lib/net472/BepInEx/build647+/BepInEx.Unity.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net472/BepInEx/build647+/BepInEx.Unity.Common.dll -------------------------------------------------------------------------------- /lib/net472/BepInEx/build647+/BepInEx.Unity.IL2CPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net472/BepInEx/build647+/BepInEx.Unity.IL2CPP.dll -------------------------------------------------------------------------------- /lib/net6/MelonLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net6/MelonLoader.dll -------------------------------------------------------------------------------- /lib/net6/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net6/System.Runtime.dll -------------------------------------------------------------------------------- /lib/net6/mcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/net6/mcs.dll -------------------------------------------------------------------------------- /lib/unhollowed/Il2CppSystem.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/Il2CppSystem.Core.dll -------------------------------------------------------------------------------- /lib/unhollowed/Il2Cppmscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/Il2Cppmscorlib.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.AssetBundleModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.AssetBundleModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.AudioModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.AudioModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.IMGUIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.IMGUIModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.PhysicsModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.PhysicsModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.TextRenderingModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.TextRenderingModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.UI.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.UIModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.UIModule.dll -------------------------------------------------------------------------------- /lib/unhollowed/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/lib/unhollowed/UnityEngine.dll -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/CSConsole/CSAutoCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/CSAutoCompleter.cs -------------------------------------------------------------------------------- /src/CSConsole/ConsoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/ConsoleController.cs -------------------------------------------------------------------------------- /src/CSConsole/ConsoleScriptEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/ConsoleScriptEvaluator.cs -------------------------------------------------------------------------------- /src/CSConsole/LexerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/LexerBuilder.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/CommentLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/CommentLexer.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/KeywordLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/KeywordLexer.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/Lexer.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/NumberLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/NumberLexer.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/StringLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/StringLexer.cs -------------------------------------------------------------------------------- /src/CSConsole/Lexers/SymbolLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/Lexers/SymbolLexer.cs -------------------------------------------------------------------------------- /src/CSConsole/ScriptEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/ScriptEvaluator.cs -------------------------------------------------------------------------------- /src/CSConsole/ScriptEvaluatorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/ScriptEvaluatorResult.cs -------------------------------------------------------------------------------- /src/CSConsole/ScriptInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CSConsole/ScriptInteraction.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheConfigEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheConfigEntry.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheConstructor.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheField.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheKeyValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheKeyValuePair.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheListEntry.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheMember.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheMemberFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheMemberFactory.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheMethod.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheObjectBase.cs -------------------------------------------------------------------------------- /src/CacheObject/CacheProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/CacheProperty.cs -------------------------------------------------------------------------------- /src/CacheObject/ICacheObjectController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/ICacheObjectController.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveColor.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveDictionary.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveEnum.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveList.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveString.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveValue.cs -------------------------------------------------------------------------------- /src/CacheObject/IValues/InteractiveValueStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/IValues/InteractiveValueStruct.cs -------------------------------------------------------------------------------- /src/CacheObject/Views/CacheConfigCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/Views/CacheConfigCell.cs -------------------------------------------------------------------------------- /src/CacheObject/Views/CacheKeyValuePairCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/Views/CacheKeyValuePairCell.cs -------------------------------------------------------------------------------- /src/CacheObject/Views/CacheListEntryCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/Views/CacheListEntryCell.cs -------------------------------------------------------------------------------- /src/CacheObject/Views/CacheMemberCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/Views/CacheMemberCell.cs -------------------------------------------------------------------------------- /src/CacheObject/Views/CacheObjectCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/CacheObject/Views/CacheObjectCell.cs -------------------------------------------------------------------------------- /src/Config/ConfigElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Config/ConfigElement.cs -------------------------------------------------------------------------------- /src/Config/ConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Config/ConfigHandler.cs -------------------------------------------------------------------------------- /src/Config/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Config/ConfigManager.cs -------------------------------------------------------------------------------- /src/Config/IConfigElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Config/IConfigElement.cs -------------------------------------------------------------------------------- /src/Config/InternalConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Config/InternalConfigHandler.cs -------------------------------------------------------------------------------- /src/ExplorerBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ExplorerBehaviour.cs -------------------------------------------------------------------------------- /src/ExplorerCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ExplorerCore.cs -------------------------------------------------------------------------------- /src/ExplorerKeybind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ExplorerKeybind.cs -------------------------------------------------------------------------------- /src/Hooks/AddHookCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Hooks/AddHookCell.cs -------------------------------------------------------------------------------- /src/Hooks/HookCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Hooks/HookCell.cs -------------------------------------------------------------------------------- /src/Hooks/HookCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Hooks/HookCreator.cs -------------------------------------------------------------------------------- /src/Hooks/HookInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Hooks/HookInstance.cs -------------------------------------------------------------------------------- /src/Hooks/HookList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Hooks/HookList.cs -------------------------------------------------------------------------------- /src/Inspectors/GameObjectInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/GameObjectInspector.cs -------------------------------------------------------------------------------- /src/Inspectors/InspectorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/InspectorBase.cs -------------------------------------------------------------------------------- /src/Inspectors/InspectorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/InspectorManager.cs -------------------------------------------------------------------------------- /src/Inspectors/InspectorTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/InspectorTab.cs -------------------------------------------------------------------------------- /src/Inspectors/MouseInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/MouseInspector.cs -------------------------------------------------------------------------------- /src/Inspectors/MouseInspectors/MouseInspectorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/MouseInspectors/MouseInspectorBase.cs -------------------------------------------------------------------------------- /src/Inspectors/MouseInspectors/UiInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/MouseInspectors/UiInspector.cs -------------------------------------------------------------------------------- /src/Inspectors/MouseInspectors/WorldInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/MouseInspectors/WorldInspector.cs -------------------------------------------------------------------------------- /src/Inspectors/ReflectionInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Inspectors/ReflectionInspector.cs -------------------------------------------------------------------------------- /src/Loader/BepInEx/BepInExConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/BepInEx/BepInExConfigHandler.cs -------------------------------------------------------------------------------- /src/Loader/BepInEx/ExplorerBepInPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/BepInEx/ExplorerBepInPlugin.cs -------------------------------------------------------------------------------- /src/Loader/IExplorerLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/IExplorerLoader.cs -------------------------------------------------------------------------------- /src/Loader/MelonLoader/ExplorerMelonMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/MelonLoader/ExplorerMelonMod.cs -------------------------------------------------------------------------------- /src/Loader/MelonLoader/MelonLoaderConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/MelonLoader/MelonLoaderConfigHandler.cs -------------------------------------------------------------------------------- /src/Loader/Standalone/Editor/ExplorerEditorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/Standalone/Editor/ExplorerEditorBehaviour.cs -------------------------------------------------------------------------------- /src/Loader/Standalone/Editor/ExplorerEditorLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/Standalone/Editor/ExplorerEditorLoader.cs -------------------------------------------------------------------------------- /src/Loader/Standalone/ExplorerStandalone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/Standalone/ExplorerStandalone.cs -------------------------------------------------------------------------------- /src/Loader/Standalone/StandaloneConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Loader/Standalone/StandaloneConfigHandler.cs -------------------------------------------------------------------------------- /src/ObjectExplorer/ObjectSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ObjectExplorer/ObjectSearch.cs -------------------------------------------------------------------------------- /src/ObjectExplorer/SceneExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ObjectExplorer/SceneExplorer.cs -------------------------------------------------------------------------------- /src/ObjectExplorer/SceneHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ObjectExplorer/SceneHandler.cs -------------------------------------------------------------------------------- /src/ObjectExplorer/SearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/ObjectExplorer/SearchProvider.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Runtime/Il2CppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Runtime/Il2CppHelper.cs -------------------------------------------------------------------------------- /src/Runtime/MonoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Runtime/MonoHelper.cs -------------------------------------------------------------------------------- /src/Runtime/UERuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Runtime/UERuntimeHelper.cs -------------------------------------------------------------------------------- /src/Runtime/UnityCrashPrevention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Runtime/UnityCrashPrevention.cs -------------------------------------------------------------------------------- /src/Tests/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/Tests/TestClass.cs -------------------------------------------------------------------------------- /src/UI/DisplayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/DisplayManager.cs -------------------------------------------------------------------------------- /src/UI/ExplorerUIBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/ExplorerUIBase.cs -------------------------------------------------------------------------------- /src/UI/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Notification.cs -------------------------------------------------------------------------------- /src/UI/Panels/AutoCompleteModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/AutoCompleteModal.cs -------------------------------------------------------------------------------- /src/UI/Panels/CSConsolePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/CSConsolePanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/ClipboardPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/ClipboardPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/FreeCamPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/FreeCamPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/HookManagerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/HookManagerPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/InspectorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/InspectorPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/LogPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/LogPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/MouseInspectorResultsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/MouseInspectorResultsPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/ObjectExplorerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/ObjectExplorerPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/OptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/OptionsPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/UEPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/UEPanel.cs -------------------------------------------------------------------------------- /src/UI/Panels/UEPanelDragger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Panels/UEPanelDragger.cs -------------------------------------------------------------------------------- /src/UI/UEPanelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/UEPanelManager.cs -------------------------------------------------------------------------------- /src/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/UIManager.cs -------------------------------------------------------------------------------- /src/UI/Widgets/AutoComplete/EnumCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/AutoComplete/EnumCompleter.cs -------------------------------------------------------------------------------- /src/UI/Widgets/AutoComplete/ISuggestionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/AutoComplete/ISuggestionProvider.cs -------------------------------------------------------------------------------- /src/UI/Widgets/AutoComplete/Suggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/AutoComplete/Suggestion.cs -------------------------------------------------------------------------------- /src/UI/Widgets/AutoComplete/TypeCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/AutoComplete/TypeCompleter.cs -------------------------------------------------------------------------------- /src/UI/Widgets/EvaluateWidget/BaseArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/EvaluateWidget/BaseArgumentHandler.cs -------------------------------------------------------------------------------- /src/UI/Widgets/EvaluateWidget/EvaluateWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/EvaluateWidget/EvaluateWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/EvaluateWidget/GenericArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/EvaluateWidget/GenericArgumentHandler.cs -------------------------------------------------------------------------------- /src/UI/Widgets/EvaluateWidget/GenericConstructorWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/EvaluateWidget/GenericConstructorWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/EvaluateWidget/ParameterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/EvaluateWidget/ParameterHandler.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/AxisControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/AxisControl.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/ComponentCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/ComponentCell.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/ComponentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/ComponentList.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/GameObjectControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/GameObjectControls.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/GameObjectInfoPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/GameObjectInfoPanel.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/TransformControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/TransformControls.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/TransformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/TransformType.cs -------------------------------------------------------------------------------- /src/UI/Widgets/GameObjects/Vector3Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/GameObjects/Vector3Control.cs -------------------------------------------------------------------------------- /src/UI/Widgets/TimeScaleWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/TimeScaleWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/UnityObjects/AudioClipWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/UnityObjects/AudioClipWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/UnityObjects/MaterialWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/UnityObjects/MaterialWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/UnityObjects/Texture2DWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/UnityObjects/Texture2DWidget.cs -------------------------------------------------------------------------------- /src/UI/Widgets/UnityObjects/UnityObjectWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UI/Widgets/UnityObjects/UnityObjectWidget.cs -------------------------------------------------------------------------------- /src/UnityExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UnityExplorer.csproj -------------------------------------------------------------------------------- /src/UnityExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/UnityExplorer.sln -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukieiji/UnityExplorer/HEAD/src/nuget.config --------------------------------------------------------------------------------