Warning, /education/gcompris/src/activities/comparator/resource/7/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2022 Johnny Jazeix <jazeix@gmail.com>
0004 *
0005 * Authors:
0006 * Johnny Jazeix <jazeix@gmail.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010
0011 import GCompris 1.0
0012
0013 Data {
0014 objective: qsTr("1 decimal place between 0 and 9.9, same integer part.")
0015 difficulty: 4
0016
0017 data: [
0018 {
0019 random: true,
0020 sameInteger: true,
0021 numberOfSublevels: 5,
0022 maxDistanceBetweenNumbers: 0.1,
0023 precision: 0.1,
0024 minValue: 0.0,
0025 maxValue: 9.9,
0026 numberOfEquations: 5
0027 }
0028 ]
0029 }
0030