- Home /
Looking for a good tutorial on extending the Unity Editor
I am searching for a nice tutorial explaining how to extend the editing capabilities of Unity. In short, I am trying to create a visual scripting extension similar to PlayMaker, and am looking for the right point to start with the editing GUI.
Answer by CodeMasterMike · Nov 07, 2012 at 06:44 AM
I found this site to be helpfull in the beginning when learning to use the Unity editor:
http://active.tutsplus.com/tutorials/workflow/how-to-add-your-own-tools-to-unitys-editor/
And make sure you use SerializedProperty variables in the editor script. They are little confusing in the beginning (at least it was for me), but they will make things easier for you in the long run.
Answer by AlucardJay · Nov 07, 2012 at 06:58 AM
This was my first introduction to Editor Scripting (to meshes at the same time!) : http://catlikecoding.com/unity/tutorials/star/
Then I saw this Unite video : http://video.unity3d.com/video/3699926/unite-11-intro-to-editor
Am sure you have the Unity link : http://docs.unity3d.com/Documentation/Components/gui-ExtendingEditor.html
CodeMasterMikes link looks good =]
Answer by Rickshao · Sep 14, 2016 at 12:32 PM
Unity Editor Extension Tutorial : http://anchan828.github.io/editor-manual/web/index.html
Your answer

Follow this Question
Related Questions
Is interraction between EditorWindow and php file possible? 1 Answer
Using Generic List with serializedProperty Inspector 3 Answers
Color in editor doesn't match up with image 0 Answers
Unity3D gibberish in menus 1 Answer
Editor encoding 0 Answers