Book Image

Extending Unity with Editor Scripting

Book Image

Extending Unity with Editor Scripting

Overview of this book

Table of Contents (18 chapters)
Extending Unity with Editor Scripting
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Overview


How you share or distribute tools across projects or teams is an important part of your development workflow. If you have invested time and resources solving a particular problem in a project using a custom tool, it makes sense to use it again in other projects too.

The challenge appears when you try to find the best way to do this distribution and also keep the tool updated. On the other hand, you need to know what happens if you decide to focus on the development of tools instead of video games and you want to distribute your tools, making money in the process.

In this chapter, you will learn how to use packages and Git submodules for custom tools distribution that are more suitable for sharing inside a team, and how to sell content in the Asset Store.

Defining the chapter goals

In this chapter, we will focus on tool distribution using the AppBuilder tool we created in the previous chapter as an example.

The goals here are:

  • Creating and using a Unity Package

  • Creating and using a Git...