Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Last active November 18, 2017 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flushpot1125/802c92f5b11eb221ce1be9a21124bae9 to your computer and use it in GitHub Desktop.
Save flushpot1125/802c92f5b11eb221ce1be9a21124bae9 to your computer and use it in GitHub Desktop.
//part of the script
public class GazeExampleScript : MetaBehaviour, IGazeStartEvent, IGazeEndEvent{
//省略
public void OnGazeStart()
{
_bIsGazing = true;
}
public void OnGazeEnd()
{
_bIsGazing = false;
}
//省略
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment