Using Verse and child classes if I create a selection for a gameplay_camera_device{} I get a pop-up that let’s me select what type of gameplay_camera, like orbit, first person etc, as they all share the same parent.
However when selecting them it (the editable field) completely disappears from the editor selection.
I tried making a new parent class, inside my parent class I have
@editable
Camera: ?gameplay_camera_device = false
In my child class I have overriden this falue
@edtiable
Camera<override> : ?gameplay_camera_device = option{gameplay_camera_orbit_device{}}
Which in the editor won’t show up at all!
If you try to use the specific child class verse will give you a linting error
Overriding an @editable member with a different type is not supported (editable-type: ?gameplay_camera_device, overriding-type: ?gameplay_camera_orbit_device).(3604)```
The editor Logs show Class will not be shown in ClassViewer-
[2025.07.14-12.44.30:967][603]LogEditorClassViewer: Warning: Class /Script/EditorScriptableToolsFramework.EditorScriptableSingleClickTool has parent /Script/ScriptableToolsFramework.ScriptableSingleClickTool, but this parent is not found. The Class will not be shown in ClassViewer.
[2025.07.14-12.44.30:967][603]LogEditorClassViewer: Warning: Class /VerseCamera/_Verse/VNI/VerseCamera.VerseCamera_camera_component has parent /EntityFramework/_Verse/VNI/Component.basic_camera_component, but this parent is not found. The Class will not be shown in ClassViewer.
[2025.07.14-12.44.30:967][603]LogEditorClassViewer: Warning: Class /VerseCamera/_Verse/VNI/VerseCamera.VerseCamera_camera_mode_blend_linear has parent /VerseCamera/_Verse/VNI/VerseCamera.VerseCamera_camera_mode_blend, but this parent is not found. The Class will not be shown in ClassViewer.```