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
| /* | |
| * Unity VSCode Support | |
| * | |
| * REPO NOW AT: https://github.com/dotBunny/VSCode/ | |
| */ |
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
| # Import Libraries | |
| import os | |
| import sys | |
| import time | |
| import getpass | |
| def create(productName, fileSystemName, namespace, URI, GUID, projectPath, solutionFile): | |
| # Setup Some Basic Things | |
| username = getpass.getuser() |
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
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Collections; | |
| public class HailMary { | |
| public static string injection = "UnityEngine.Debug.Log(\".:Hail Mary:.\");"; | |
| [MenuItem("Assets/The \"Hail Mary\" Play/Enable Project Wide")] |