Page MenuHomeFeedback Tracker

Default values not used for modules' drop-down lists
New, WishlistPublic

Description

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.

Details

Legacy ID
1228030349
Severity
None
Resolution
Open
Reproducibility
Always
Category
Eden Editor
Steps To Reproduce
  1. Open the new 3D-editor
  2. Add for an example Misc/Friendly Fire -module
  3. 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.
			};
		};

};
...

Event Timeline

Raunhofer edited Additional Information. (Show Details)
Raunhofer set Category to Eden Editor.
Raunhofer set Reproducibility to Always.
Raunhofer set Severity to None.
Raunhofer set Resolution to Open.
Raunhofer set Legacy ID to 1228030349.May 8 2016, 12:47 PM