This file contains 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 groovy.json.JsonOutput | |
import java.io.BufferedWriter | |
import java.io.OutputStreamWriter | |
import java.net.URL | |
import java.util.Scanner | |
def url = new URL("https://${github}/api/v3/repos/${org}/${repo}/git/refs") | |
def urlConnection = url.openConnection() | |
urlConnection.setDoOutput(true) |
This file contains 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
/* This needs to live in a folder named "Editor", or it won't work. Doesn't have to be named | |
"BobTheBuilder", though. Name it whatever you want! */ | |
using System; | |
using UnityEditor; | |
using UnityEngine; | |
public class BobTheBuilder | |
{ | |
/* List of scenes to include in the build */ |