├── .gitignore ├── Images ├── step0.jpg ├── step1.jpg ├── step2.jpg └── step3.jpg ├── LICENSE ├── README.md └── RuntimePrefabEditor └── Scripts └── Editor ├── EditorUtils.cs ├── GameObjectDiff.cs ├── PrefabSearchDB.cs └── RuntimePrefabEditor.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/step0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/Images/step0.jpg -------------------------------------------------------------------------------- /Images/step1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/Images/step1.jpg -------------------------------------------------------------------------------- /Images/step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/Images/step2.jpg -------------------------------------------------------------------------------- /Images/step3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/Images/step3.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/README.md -------------------------------------------------------------------------------- /RuntimePrefabEditor/Scripts/Editor/EditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/RuntimePrefabEditor/Scripts/Editor/EditorUtils.cs -------------------------------------------------------------------------------- /RuntimePrefabEditor/Scripts/Editor/GameObjectDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/RuntimePrefabEditor/Scripts/Editor/GameObjectDiff.cs -------------------------------------------------------------------------------- /RuntimePrefabEditor/Scripts/Editor/PrefabSearchDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/RuntimePrefabEditor/Scripts/Editor/PrefabSearchDB.cs -------------------------------------------------------------------------------- /RuntimePrefabEditor/Scripts/Editor/RuntimePrefabEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoselov-ab/unity-prefab-editor/HEAD/RuntimePrefabEditor/Scripts/Editor/RuntimePrefabEditor.cs --------------------------------------------------------------------------------