This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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. |