- Extending Unity with Editor Scripting
- Angelo Tadres
- 258字
- 2021-07-16 19:59:19
Summary
In this chapter, we introduced you to the editor scripting API and also the project that we will use in this book.
With editor scripts, we were able to customize how Unity works and customize the workflow based on our specific requirements.
When you work with editor scripts, remember to use the UnityEditor
namespace and save the scripts inside a folder with the name Editor
.
If for some reason you must use the editor scripting API outside an Editor
folder, remember to use the directives #if
and #endif
with the UNITY_EDITOR
conditional compilation symbol to exclude that part of the code in the video game build.
If you plan to create a custom tool in your project, always consider these two things:
- When you design a tool, always consider the user for whom you are building the tool and involve them in the design and creation process. If your tool requires a custom GUI, creating mockups is always a good alternative to get an idea of the final result. Remember, there is nothing worse than a tool that is not easy to use and doesn't solve the specific problem.
- Always evaluate the cost of creating the tool and the time you want to invest in that. Ensure that the time and resources you spend creating the tool itself to save more time and resources later during development.
In the next chapter, we will continue working on the Level Creator, integrating the use of gizmos to display a grid meant to be used as guides in our tool.
- 大學計算機基礎(第二版)
- Learning Firefox OS Application Development
- Learning Unity 2D Game Development by Example
- Hands-On Full Stack Development with Go
- C語言程序設計上機指導與習題解答(第2版)
- The Professional ScrumMaster’s Handbook
- Kotlin Programming By Example
- Java EE 8 and Angular
- Mastering ASP.NET Core 2.0
- PostgreSQL Developer's Guide
- Professional JavaScript
- 讓Python遇上Office:從編程入門到自動化辦公實踐
- MySQL從入門到精通
- Mastering Swift 4(Fourth Edition)
- Test-Driven Java Development(Second Edition)