With the recent Jets update, it appears the Simple Object checkbox in an object's "Attributes > Special States" menu has been changed to only objects configured in a special pre-defined list. This is a major problem as many mods will not or cannot assign their objects with this special designation, preventing many objects in the game from being made simple objects and improving system performance in missions. Please replace this new system with the old system where all objects could be made into simple objects!
Description
Description
Details
Details
- Severity
- Feature
- Resolution
- Open
- Reproducibility
- Always
- Operating System
- Windows 7
- Category
- Editor
Steps To Reproduce
Place and object in the editor, open it's attributes menu, open the special states menu, and no simple object check box will appear.
Event Timeline
Comment Actions
To expand, the objectIsSimple attribute also cannot be set from script commands.
After selecting an object and running
_obj = get3DENSelected "object" select 0; _isSimpleBefore = _obj get3DENAttribute "objectIsSimple"; //false _obj set3DENAttribute ["objectIsSimple", true]; _isSimpleAfter = _obj get3DENAttribute "objectIsSimple"; //still false