Created
September 16, 2021 09:13
-
-
Save simoninithomas/b3b4c94516611a48900ea38d9741cf3b to your computer and use it in GitHub Desktop.
JammoBehavior_Tutorial Part 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
/// <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