-
Notifications
You must be signed in to change notification settings - Fork 48
Common issues
If you find a bug or something you think is not supposed to happen please check the Issues page for info, if it isn't listed, create a new issue!
This is due to the locale of your PC. PCs with European culture settings may output data in this way. As of UXF 2.3.6, this setting, accessed by configuring the File Saver Data Handler (enabled by default) will force CSV files to output with ,
as a separator and .
as a decimal point.
This error usually occurs in a few circumstances:
- Perhaps you are trying to run the first trial before generating your blocks and trials. Make sure you have written a method which generates your blocks and trials, and then add it to the
On Session Start
event. It is important to note the items listed in these events run in order, so it is important to make sure that you are not trying to run a trial before they have been generated. You can reorder the items by dragging. See this issue for more info. - Perhaps you have some logic which tries to start the next trial immediately after ending one. This is problematic because when you are at the end of the trial list, there is no further trial to start. To avoid this, you can use
session.BeginNextTrialSafe()
, which only starts the next trial if one exists, otherwise does nothing.
See this issue. To fix, you must change some settings in Unity. The UXF Wizard can check and fix this for you (see General compatibility below).
Open UXF Wizard and press Fix
on any issues that appear.
You can use the UXF Session Debugger to verify that your trial, blocks and settings are being generated correctly. To access it, use click the UXF menu at the top, and select UXF Session Debugger. It only works after you have started the session.
You can try this suggestion: https://github.community/t/github-pages-referenceerror-unityframework/150646/2
(Enable Decompression Fallback in Project Settings โ Player)
๐ง Core topics
- ๐ Background
- โจ UXF 2.0
- โ๏ธ Compatibility
- ๐ถ๏ธ Oculus Quest Setup
- ๐ญ Concepts
- ๐ ๏ธ Get started
- ๐ Examples
- ๐ฅ๏ธ Built-in UI
- ๐ Session generation
- โฐ Events
- ๐ Data collection
- โ๏ธ Collect custom data
- ๐ Custom Data Handler
- ๐ Remote Data Collection
- ๐๏ธ WebGL DynamoDB setup
- ๐ Processing DynamoDB CSVs
- ๐ซ HTTP Post Setup
- ๐ง Settings system
- ๐๐ฝ Tracker system
- ๐ Logging system
โ ๏ธ Common issues- ๐ผ๏ธ Multi-scene experiments
- ๐บ Videos
- ๐จโ๐ Full written tutorial
- ๐ฆ Asset links
- ๐จโ๐ซ Unity tutorial links
- ๐ Useful code snippets
- ๐ก Programming ideas
- ๐งฎ Example R processing