View RenderGUIToTexture.cs
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; | |
[RequireComponent (typeof (Renderer))] | |
public class RenderGUIToTexture : MonoBehaviour | |
{ | |
public RenderTexture texture; | |
public Texture2D background; | |
View GameManager.cs
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 enum GameStatus | |
{ | |
Setup, | |
Initializing, | |
ReInitializing, | |
AwaitingMasterServer, |
View Player.cs
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; | |
[RequireComponent (typeof (NetworkView))] | |
[RequireComponent (typeof (Rigidbody))] | |
[RequireComponent (typeof (AnimationController))] | |
public class Player : MonoBehaviour, System.IComparable | |
{ | |
public Transform graphicsPrefab; |
View Connection.cs
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 float GetCost (Agent agent) | |
{ | |
return (To.Position - From.Position).Magnitude * | |
Weight * | |
(customWeightHandler == null ? 1.0f : customWeightHandler (agent, this)); | |
} |
View MyAgent.cs
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 Behave.Runtime; | |
using Tree = Behave.Runtime.Tree; | |
public class MyAgent : IAgent | |
{ | |
private Tree myTree; | |
View ExplicitProperty.txt
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: | |
public Rigidbody target; | |
void FixedUpdate () | |
{ | |
target.AddForce (transform.forward * 1.0f); | |
} |
View MyStateMachine.cs
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.Generic; | |
public class MyStateMachine : MonoBehaviour | |
{ | |
public delegate void StateHandlerDelegate (); | |
public enum MyStateType |
View DelayedInitialization.cs
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
private static int newID = 0; | |
private int id; | |
private bool initialized = false; | |
IEnumerator Start () | |
{ | |
id = newID++; | |
for (int i = 0; i < id; i++) | |
{ |
View build.pl
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
#!/bin/usr/perl | |
use strict; | |
use File::Basename; | |
chdir (File::Spec->rel2abs (dirname($0)."/..")); # Modify for location of perl script | |
my $monoPath = "External/Mono/builds/monodistribution"; | |
my @sourceDirs = ( | |
"Path/To/Source/*.cs", | |
"Path/To/More/Source/*.cs" |
View InteractionExample.cs
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; | |
public class InteractionExample : MonoBehaviour | |
{ | |
public string interactionKey = "i"; | |
public float interactionRadius = 2.0f, interactionViewCone = 60.0f; | |
void Update () |
OlderNewer