Skip to content

Instantly share code, notes, and snippets.

View boj's full-sized avatar

Brian Jones boj

  • Eagle River, Alaska
View GitHub Profile
@boj
boj / NumberSystem.cs
Created November 10, 2011 22:46
Unity3d Number Updater
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class NumberSystem : MonoBehaviour {
public GameObject numbersPrefab;
public int startPositionLeft;
public int startPositionTop;
@boj
boj / GameObjectQueue.cs
Created February 5, 2012 13:46
Unity3d Object Recycle System
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;
@boj
boj / AudioManager.cs
Created February 6, 2012 07:37
Audio Management
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++) {
@boj
boj / SimplexNoise.cs
Created February 7, 2012 14:14
Stefan Gustavson's "Simplex noise demystified" in C# + Unity3d Mathf methods.
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}};
@boj
boj / simplexC.cs
Created February 8, 2012 03:21 — forked from qpfiffer/simplexC.cs
Carmody's implementation of Simplex noise in C#
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)
@boj
boj / Shader.shader
Created February 11, 2012 07:31
Grayscale Shader
Shader "Custom/Grey Texture" {
Properties {
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {}
}
SubShader {
Tags {"Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent"}
LOD 200
@boj
boj / GestureTracker.cs
Created April 2, 2012 07:29
Unity3d Touch Tracking
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
@boj
boj / AspectCheck.cs
Created August 4, 2012 00:37
Unity3d Aspect Ratio Check
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;
@boj
boj / aws_copy.rb
Created September 10, 2012 07:10
AWS Bucket Copy
#!/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"
@boj
boj / HexMesh.cs
Created September 11, 2012 06:40
Unity3d Hex Mesh Generator
using UnityEngine;
using System.Collections;
public class HexMesh : MonoBehaviour {
public Mesh testMesh;
void Awake() {
testMesh = Generate(3.0f);
}