Skip to content

Commit d4b718b

Browse files
committed
2 parents 4a38ad3 + 5100203 commit d4b718b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ A set of components which simplify human behaviour experiments developed in the
2626

2727
### Data collection
2828

29-
UXF automates the process of collecting behavioural and movement data. **Behavioural data** is collected with 1 row per `Trial`, and automatically records some values such as the timestamp of the start and end of the trial.
30-
**Movement data** is the position and rotation of any object in the scene, which is captured at whatever frame rate the application is running at (in the `Update()` loop) by adding a `Tracker` component to a GameObject. This can be used to track positions of user controlled objects (such as hands or head in a virtual reality application) or an arbitrary object in the scene (e.g. some kind of stimuli).
29+
UXF automates the process of collecting data.
30+
31+
**Behavioural data** is collected with 1 row per `Trial`, and automatically records some values such as the timestamp of the start and end of the trial.
32+
33+
**Continuous data** is data that is measured contunously over time during a trial. The main use case of this is to track the position and rotation of any object in the scene, which is captured at whatever frame rate the application is running at (in the `Update()` loop) by adding a `PositionRotationTracker` component to a GameObject. This can be used to track positions of user controlled objects (such as hands or head in a virtual reality application) or an arbitrary object in the scene (e.g. some kind of stimuli). However this system is generic and developers can create their own `Tracker` classes that perform measurements of any variable during trials.
34+
3135
Data is stored in CSV files with automatic handling of file & directory naming.
3236

3337
### Events
@@ -36,7 +40,7 @@ A `UnityEvent` is invoked on `Trial` begin and end, allowing you to easily trigg
3640

3741
### CSV Participant List
3842

39-
A participant list feature is used allowing experimenters to optionally pre-prepare participant information. Additionally, this participant list is shared between experiments, allowing cross comparison of observations within participants.
43+
A participant list feature is used allowing experimenters to optionally pre-prepare participant information. Additionally, this participant list is shared between experiments, allowing easy cross comparison of observations within participants.
4044

4145
### Settings system
4246

0 commit comments

Comments
 (0)