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
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class NumberSystem : MonoBehaviour { | |
public GameObject numbersPrefab; | |
public int startPositionLeft; | |
public int startPositionTop; |
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
using UnityEngine; | |
using System.Collections; | |
public class LinkObject { | |
public LinkObject prev = null; | |
public LinkObject next = null; | |
public GameObject data; | |
public LinkObject(GameObject link) { | |
data = link; |
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
using UnityEngine; | |
using System.Collections; | |
public class AudioManager : MonoBehaviour { | |
public GameObject audioChannelPrefab; | |
private AudioSource[] audioChannels = new AudioSource[12]; // 12 channels | |
void Start() { | |
for (int i = 0; i < audioChannels.Length; i++) { |
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
using UnityEngine; | |
using System.Collections; | |
// copied and modified from http://webstaff.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf | |
public class SimplexNoise { // Simplex noise in 2D, 3D and 4D | |
private static int[][] grad3 = new int[][] { | |
new int[] {1,1,0}, new int[] {-1,1,0}, new int[] {1,-1,0}, new int[] {-1,-1,0}, | |
new int[] {1,0,1}, new int[] {-1,0,1}, new int[] {1,0,-1}, new int[] {-1,0,-1}, | |
new int[] {0,1,1}, new int[] {0,-1,1}, new int[] {0,1,-1}, new int[] {0,-1,-1}}; |
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
public class simplexCarmody | |
{ | |
int[] T; | |
private static int i, j, k; | |
private static int[] A = new int[3]{0, 0, 0}; | |
private static float u, v, w, s; | |
private static float onethird = 0.333333333f; | |
private static float onesixth = 0.166666667f; | |
public simplexCarmody(Random randObj) |
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
Shader "Custom/Grey Texture" { | |
Properties { | |
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {} | |
} | |
SubShader { | |
Tags {"Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent"} | |
LOD 200 |
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
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
/** | |
Spits out a string based on gesture directions regardless of size or location. | |
Example: | |
TOP LEFT -> BOTTOM RIGHT SLASH = 13 | |
TOP RIGHT -> BOTTOM LEFT SLASH = 32 |
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
using UnityEngine; | |
using System.Collections; | |
public class GameConfig : MonoBehaviour { | |
public static bool isFourThreeAspect() { | |
int factor = gcd(Screen.width, Screen.height); | |
int wFactor = Screen.width / factor; | |
int hFactor = Screen.height / factor; | |
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
#!/usr/bin/env ruby | |
# From: http://www.austinriba.com/2011/02/copy-contents-of-one-s3-bucket-to-another/ | |
require 'right_aws' | |
S3ID = "Your AWS ID Here" | |
S3KEY = "Your AWS secret key" | |
SRCBUCKET = "Source Bucket" | |
DESTBUCKET = "Destination Bucket" |
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
using UnityEngine; | |
using System.Collections; | |
public class HexMesh : MonoBehaviour { | |
public Mesh testMesh; | |
void Awake() { | |
testMesh = Generate(3.0f); | |
} |