mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Settings - Utilize 'sliderSettings' (#5756)
This commit is contained in:
parent
0a0c43eff0
commit
31aa478f28
@ -70,6 +70,7 @@ class ACE_Settings {
|
||||
description = CSTRING(simulationInterval_Description);
|
||||
typeName = "SCALAR";
|
||||
value = 0.05;
|
||||
sliderSettings[] = {0, 0.2, 0.05, 1};
|
||||
};
|
||||
class GVAR(simulationRadius) {
|
||||
category = CSTRING(DisplayName);
|
||||
@ -77,5 +78,6 @@ class ACE_Settings {
|
||||
description = CSTRING(simulationRadius_Description);
|
||||
typeName = "SCALAR";
|
||||
value = 3000;
|
||||
sliderSettings[] = {0, 3000, 3000, 0};
|
||||
};
|
||||
};
|
||||
|
@ -16,11 +16,13 @@ class ACE_Settings {
|
||||
description = CSTRING(simulationInterval_Description);
|
||||
typeName = "SCALAR";
|
||||
value = 0.05;
|
||||
sliderSettings[] = {0, 0.2, 0.05, 1};
|
||||
};
|
||||
class GVAR(simulationRadius) {
|
||||
displayName = CSTRING(simulationRadius_DisplayName);
|
||||
description = CSTRING(simulationRadius_Description);
|
||||
typeName = "SCALAR";
|
||||
value = 3000;
|
||||
sliderSettings[] = {0, 3000, 3000, 0};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user