Skip to content

Instantly share code, notes, and snippets.

@simoninithomas
Created September 16, 2021 09:13
Show Gist options
  • Save simoninithomas/b3b4c94516611a48900ea38d9741cf3b to your computer and use it in GitHub Desktop.
Save simoninithomas/b3b4c94516611a48900ea38d9741cf3b to your computer and use it in GitHub Desktop.
JammoBehavior_Tutorial Part 1
/// <summary>
/// Enum of the different possible states of our Robot
/// </summary>
private enum State
{
Idle,
Hello, // Say hello
Happy, // Be happy
Puzzled, // Be Puzzled
MoveTo, // Move to a pillar
BringObject, // Step one of bring object (move to it and grab it)
BringObjectToPlayer // Step two of bring object (move to player and drop the object)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment