All pastes #2074223 Raw Edit

Something

public text v1 · immutable
#2074223 ·published 2011-06-03 18:37 UTC
rendered paste body

		
		switch (PlayerState) {
			case "IDLE":
				if (direction == 4) {
                    PlayerState = "RUNNING"; 
                    transform.Translate(-.1, 0, 0);
                };
				if (direction == 8) {
                    PlayerState = "RUNNING"; 
                    transform.Translate(.1, 0, 0);
                };
				break;
			case "RUNNING":
				break;
		}