Skip to content

Commit

Permalink
Merge pull request #222 from ssciwr/fix_163_default_trial
Browse files Browse the repository at this point in the history
Update default trial
  • Loading branch information
lkeegan committed Jun 23, 2023
2 parents c37c276 + 401cd48 commit 82623de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/reference/trial-conditions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ the screen height (i.e. a line of length 1.0 in these units would extend from th
* Default: ``5.0``
* Delay between targets (secs)
* The delay before each outer target is displayed
* Default: ``1.0``
* Default: ``0.0``
* Distance to targets (screen height fraction)
* The distance from the centre of the screen to the outer targets
* Default: ``0.4``
Expand Down Expand Up @@ -94,10 +94,10 @@ the screen height (i.e. a line of length 1.0 in these units would extend from th
* Default: ``enabled``
* Automatically move cursor to center
* Enable to automatically move the cursor to the center after reaching an outer target
* Default: ``enabled``
* Default: ``disabled``
* Freeze cursor until target is displayed
* Enable to freeze the cursor until a target is displayed
* Default: ``enabled``
* Default: ``disabled``
* Cursor rotation (degrees)
* Rotate the cursor direction anticlockwise by this number of degrees
* Default: ``0.0``
Expand All @@ -109,7 +109,7 @@ the screen height (i.e. a line of length 1.0 in these units would extend from th
* Default: ``disabled``
* Delay after last trial (secs)
* How long to wait after the last trial with these trial conditions
* Default: ``0.0``
* Default: ``10.0``
* Display combined results after last trial
* Enable to display combined results for these trial conditions after the last trial
* Default: ``enabled``
Expand Down
2 changes: 1 addition & 1 deletion src/vstt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"__version__",
]

__version__ = "0.30.0"
__version__ = "0.31.0"
8 changes: 4 additions & 4 deletions src/vstt/trial.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def default_trial() -> Trial:
"fixed_target_intervals": False,
"target_duration": 5.0,
"central_target_duration": 5.0,
"inter_target_duration": 1.0,
"inter_target_duration": 0.0,
"target_distance": 0.4,
"target_size": 0.04,
"central_target_size": 0.02,
Expand All @@ -52,12 +52,12 @@ def default_trial() -> Trial:
"show_cursor": True,
"cursor_size": 0.02,
"show_cursor_path": True,
"automove_cursor_to_center": True,
"freeze_cursor_between_targets": True,
"automove_cursor_to_center": False,
"freeze_cursor_between_targets": False,
"cursor_rotation_degrees": 0.0,
"post_trial_delay": 0.0,
"post_trial_display_results": False,
"post_block_delay": 5.0,
"post_block_delay": 10.0,
"post_block_display_results": True,
"show_delay_countdown": True,
"enter_to_skip_delay": True,
Expand Down

0 comments on commit 82623de

Please sign in to comment.