1.0.0 • Published 8 years ago

unity-asset-sync v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

#Unity Asset sync

Allows safe, effective sharing of code between Unity projects.

Install it

npm install unity-asset-sync

Use it

var sync = require("unity-asset-sync");
sync.allFiles("sourceDir", "targetDir");

Creates a symlink in the targetDir for each file in the sourceDir. Skips all folders, and README.md files.

I made this so I could share scripts from my home-grown framework between projects. I've only used it on OSX.