comment-checkGeneral Tips

Extending the project

Most classes in the project are inheritance-friendly, exposing virtual and protected methods for easy extension and modification.

It is recommended to create new classes that inherit from existing ones and override their methods, rather than editing the originals directly.

The same is true for Scriptable files, Scenes, and Prefabs. Ideally, it's best to create your own files so that an update won't overwrite them.

This approach ensures your custom functionality remains intact when updating the template to newer versions.

Updating the project

It is strongly recommended to use a version control system (such as git) throughout development.

Before updating to a new version of the template, commit all your changes, then download the updated version. Carefully review and merge changes using your version control tool to identify and resolve any potential conflicts or compatibility issues.

Last updated