Warning, /education/gcompris/src/activities/learn_decimals_additions/resource/3/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2021 Mariam Fahmy <mariamfahmy66@gmail.com>
0004  *
0005  * Authors:
0006  *   Mariam Fahmy <mariamfahmy66@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     objective: qsTr("Add decimal numbers up to 5.")
0014     difficulty: 5
0015     data: [
0016         // maxValue represents the maximum addition result.
0017         {
0018             "numberOfSubLevels": 1,
0019             "minValue" : 0.6,
0020             "maxValue" : 2.5
0021         },
0022         {
0023             "numberOfSubLevels": 1,
0024             "minValue" : 0.1,
0025             "maxValue" : 3
0026         },
0027         {
0028             "numberOfSubLevels": 1,
0029             "minValue" : 1,
0030             "maxValue" : 3.5
0031         },
0032         {
0033             "numberOfSubLevels": 1,
0034             "minValue" : 0.1,
0035             "maxValue" : 4
0036         },
0037         {
0038             "numberOfSubLevels": 1,
0039             "minValue" : 2,
0040             "maxValue" : 4.5
0041         }
0042     ]
0043 }