VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
bool AVR.Core.AVR_TrialExperiment.can_proceed ( )
inline

This function returns true once after the can_proceed function has been called. Use this within the trial Coroutine like so: yield return new WaitUntil(can_proceed()). Then call the proceed() function on certain events, such as button presses.

Definition at line 42 of file AVR_TrialExperiment.cs.

42  {
43  if (_p)
44  {
45  _p = false;
46  return true;
47  }
48  return false;
49  }