Skip to content

Instantly share code, notes, and snippets.

View End3r6's full-sized avatar
๐Ÿ˜
Doin Stuff...

End3r6 End3r6

๐Ÿ˜
Doin Stuff...
  • Somewhere Between Hyrule and Inkopolis
View GitHub Profile
@End3r6
End3r6 / UnityProjectJunctionTool.cs
Created May 9, 2022 23:39 — forked from CreatureSurvive/UnityProjectJunctionTool.cs
Unity editor tool to create dummy Unity projects to allow a single project to be open in multiple editor instances (Windows, Mac, Linux)
// NOTE:
// This is a modified version of https://gist.github.com/IronWarrior/005f649e443bf51b656729231d0b8af4
// This version adds support for Mac OS and Linux systems
//
// PURPOSE:
// Unity does not permit a project to be open in two different editor instances.
// This can be frustrating when building projects with multiplayer networking,
// as it would require you to create a build every time you wish you test your netcode.
// A workaround would be to duplicate the project, but this would require the duplicated
// project to be updated each time a change is made.