Skip to content

Instantly share code, notes, and snippets.

View PhalanxHead's full-sized avatar

Lydia Luka Hedt PhalanxHead

View GitHub Profile
@PhalanxHead
PhalanxHead / BuildScript.cs
Last active March 9, 2021 12:04
A Full Example of a Unity BuildScript offering builds in Windows (x86 and x64) and Linux, and a corresponding FAKE script.
using System;
using System.IO;
using System.Linq;
using UnityEditor;
using UnityEngine;
public class BuildScript
{
// Change this variable to match your project name
private const string _projectName = "Karter";