Please ensure you have Unity version 2022.3.21f1 installed as well as an IDE of your choice.
Repro Steps:
- Start cube movement app
- Observe cube not moving
Repro Steps:
- Start cube movement app
- Observe cube beginning movement
- Observe cube stopping halfway through the full path circle
Repro Steps:
- Start cube movement app
- Observe cube moving along the full path circle
- Observe error logs every frame once cube reaches end of path
Repro Steps:
- Start cube movement app
- Observe invalid position assignment at start of app, even though cube continues moving
Problem:
- Current cube movement system is hardcoded to only handle data for one cube in a given data file.
Objective:
- Extend the cube movement system to allow for an arbitrary number of cubes to be moved by one data file.
Notes:
positionData_FourCubes.jsoncontains data for 4 different cubes associated with separate integer IDs.- Json flight data looks like this.
[
{
"object_id": "803",
"relative_timestamp": 0.0,
"relative_longitude": 2.9110509,
"relative_latitiude": 5.4351641,
"altitude": 10.0
}
]