Skip to content

Cross Project Tools

Intro

There are many ways to share code and assets in between projects. Here I will share a few tricks I use.

System Junction links are ways to make a folder point to another folder path in your system.

You can set it up easily in the command line using this command:

1
mklink /J "C:\My\New\Path\Shared" "C:\My\Original\Path\Shared"

I use this to quickly set reference to my Shared folder with utility scripts when starting a project.

Unity Packages

You can create packages using the package exporter and then share the package somewhere.

I recommend writing an exporter script that keeps your package export versioned so you know what version you have in each project.

You can even host the package on something like UPM to share it with others