...
(Note: Existing behavior of the player will be continuing as it is for the warning indicator)
Editor Changes:We will remove the
Warning timer will be removed from editor
...
form and editor will not save the warning time value in timeLimits.
min time will be stored inside timeLimits as
timeLimits.questionset.min
There will not be any field for taking user input for min time, editor will store the min time as 0 by default
...
.
The new timeLimts for the questionset will be stored in below format:
Code Block |
---|
timeLimits: { "description": "Time limits for the complete set and/or for each question in the question set.", questionset: { min: number, max: number } } |
Example:-
For storing max time( max
) as 5 minutes. It will be stored in below format.
5 minutes is to be converted to seconds to store the value.
5 minutes = 5 * 60 seconds = 300 seconds.
The default value of min time ( min
) will be stored as 0
Code Block |
---|
timeLimits: { questionset: { min: 0, max: 300 // for 05 min - (05*60 sec = 300 sec) } } |
maxScore
For question:
Currently, maxScore
property is getting stamped in two places at the question metadata level.
...