Modules are not following their default values with the drop-down lists in Eden editor. Instead, every drop-down list is using the first item as the default value for the option.
Description
Description
Details
Details
- Legacy ID
- 1228030349
- Severity
- None
- Resolution
- Open
- Reproducibility
- Always
- Category
- Eden Editor
Steps To Reproduce
- Open the new 3D-editor
- Add for an example Misc/Friendly Fire -module
- Take a notice how "Apply to" is defaulted to "Synchronized objects only" (1st item), but in the old 2D-editor the initial value is "Groups of synchronized objects" (2nd item).
Additional Information
Config example.hpp:
class Arguments {
class example {
displayName = "Apply to"; description = "Just an example"; typeName = "NUMBER"; class Values { class ex0 { name = "Synchronized objects only"; value = 0; }; class ex1 { name = "Groups of synchronized objects"; value = 1; default = 1; // ex1 SHOULD BE THE DEFAULT VALUE, INSTEAD OF ex0. }; };
};
...