9 auto* layout =
new QFormLayout(
this);
11 m_showTrailsBox =
new QCheckBox();
12 m_trailTimeBox =
new QDoubleSpinBox();
13 m_trailTimeBox->setRange(0.1, 10e7);
14 m_trailTimeBox->setSingleStep(0.5);
16 m_showForcesBox =
new QCheckBox();
17 m_showCollidersBox =
new QCheckBox();
18 m_showObjectLabelsBox =
new QCheckBox();
21 m_showTrailsBox->setChecked(dbgGroup.showAllPathTrails);
22 m_trailTimeBox->setValue(dbgGroup.pathTrailTime);
23 m_showForcesBox->setChecked(dbgGroup.showForces);
24 m_showCollidersBox->setChecked(dbgGroup.showColliders);
25 m_showObjectLabelsBox->setChecked(dbgGroup.showObjectLabels);
27 layout->addRow(
"Show All Path Trails:", m_showTrailsBox);
28 layout->addRow(
"Path Trail Time (seconds):", m_trailTimeBox);
29 layout->addRow(
"Show Forces:", m_showForcesBox);
30 layout->addRow(
"Show Colliders:", m_showCollidersBox);
31 layout->addRow(
"Show Object Labels:", m_showObjectLabelsBox);