├── .gitignore ├── Demo ├── .gitignore ├── Assets │ ├── Editor Default Resources.meta │ ├── Editor Default Resources │ │ ├── CustomSkin2.guiskin │ │ └── CustomSkin2.guiskin.meta │ ├── Resources.meta │ ├── Resources │ │ ├── CustomSkin.guiskin │ │ ├── CustomSkin.guiskin.meta │ │ ├── white-texture.psd │ │ └── white-texture.psd.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── CustomHPSliderDemo.unity │ │ ├── CustomHPSliderDemo.unity.meta │ │ ├── CustomHPSliderLayoutDemo.unity │ │ ├── CustomHPSliderLayoutDemo.unity.meta │ │ ├── CustomSkinDemo.unity │ │ ├── CustomSkinDemo.unity.meta │ │ ├── FlashingButtonDemo.unity │ │ ├── FlashingButtonDemo.unity.meta │ │ ├── SceneMouse.unity │ │ └── SceneMouse.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── CustomHPSliderDemo.cs │ │ ├── CustomHPSliderDemo.cs.meta │ │ ├── CustomHPSliderLayoutDemo.cs │ │ ├── CustomHPSliderLayoutDemo.cs.meta │ │ ├── CustomSkinDemo.cs │ │ ├── CustomSkinDemo.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── EditorStyleViewer.cs │ │ ├── EditorStyleViewer.cs.meta │ │ ├── RXLookingGlass.cs │ │ ├── RXLookingGlass.cs.meta │ │ ├── SceneMouseWindow.cs │ │ └── SceneMouseWindow.cs.meta │ │ ├── FlashingButtonDemo.cs │ │ └── FlashingButtonDemo.cs.meta └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityAdsSettings.asset │ └── UnityConnectSettings.asset ├── Doc └── Unity 编辑器.docx ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- 1 | /.vs/ 2 | /Library/ 3 | /Temp/ 4 | -------------------------------------------------------------------------------- /Demo/Assets/Editor Default Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Editor Default Resources.meta -------------------------------------------------------------------------------- /Demo/Assets/Editor Default Resources/CustomSkin2.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Editor Default Resources/CustomSkin2.guiskin -------------------------------------------------------------------------------- /Demo/Assets/Editor Default Resources/CustomSkin2.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Editor Default Resources/CustomSkin2.guiskin.meta -------------------------------------------------------------------------------- /Demo/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Resources.meta -------------------------------------------------------------------------------- /Demo/Assets/Resources/CustomSkin.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Resources/CustomSkin.guiskin -------------------------------------------------------------------------------- /Demo/Assets/Resources/CustomSkin.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Resources/CustomSkin.guiskin.meta -------------------------------------------------------------------------------- /Demo/Assets/Resources/white-texture.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Resources/white-texture.psd -------------------------------------------------------------------------------- /Demo/Assets/Resources/white-texture.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Resources/white-texture.psd.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomHPSliderDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomHPSliderDemo.unity -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomHPSliderDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomHPSliderDemo.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomHPSliderLayoutDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomHPSliderLayoutDemo.unity -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomHPSliderLayoutDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomHPSliderLayoutDemo.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomSkinDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomSkinDemo.unity -------------------------------------------------------------------------------- /Demo/Assets/Scenes/CustomSkinDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/CustomSkinDemo.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes/FlashingButtonDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/FlashingButtonDemo.unity -------------------------------------------------------------------------------- /Demo/Assets/Scenes/FlashingButtonDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/FlashingButtonDemo.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Scenes/SceneMouse.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/SceneMouse.unity -------------------------------------------------------------------------------- /Demo/Assets/Scenes/SceneMouse.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scenes/SceneMouse.unity.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomHPSliderDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomHPSliderDemo.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomHPSliderDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomHPSliderDemo.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomHPSliderLayoutDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomHPSliderLayoutDemo.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomHPSliderLayoutDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomHPSliderLayoutDemo.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomSkinDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomSkinDemo.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/CustomSkinDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/CustomSkinDemo.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/EditorStyleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/EditorStyleViewer.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/EditorStyleViewer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/EditorStyleViewer.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/RXLookingGlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/RXLookingGlass.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/RXLookingGlass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/RXLookingGlass.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/SceneMouseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/SceneMouseWindow.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/Editor/SceneMouseWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/Editor/SceneMouseWindow.cs.meta -------------------------------------------------------------------------------- /Demo/Assets/Scripts/FlashingButtonDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/FlashingButtonDemo.cs -------------------------------------------------------------------------------- /Demo/Assets/Scripts/FlashingButtonDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/Assets/Scripts/FlashingButtonDemo.cs.meta -------------------------------------------------------------------------------- /Demo/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Demo/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /Demo/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Demo/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Doc/Unity 编辑器.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/Doc/Unity 编辑器.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akof1314/UnityEditorLearn/HEAD/README.md --------------------------------------------------------------------------------