Merge pull request #91001 from lawnjelly/fix_editor_view_enum
[3.x] Fix `spatial_editor_plugin` enum
This commit is contained in:
commit
3f1caf6640
1 changed files with 5 additions and 1 deletions
|
@ -184,6 +184,10 @@ class SpatialEditorViewport : public Control {
|
|||
friend class SpatialEditor;
|
||||
friend class ViewportNavigationControl;
|
||||
friend class ViewportRotationControl;
|
||||
|
||||
// These values are serialized, so if adding new values
|
||||
// add to the bottom to preserve compatibility between
|
||||
// editor versions.
|
||||
enum {
|
||||
|
||||
VIEW_TOP,
|
||||
|
@ -204,7 +208,6 @@ class SpatialEditorViewport : public Control {
|
|||
VIEW_AUDIO_DOPPLER,
|
||||
VIEW_GIZMOS,
|
||||
VIEW_INFORMATION,
|
||||
VIEW_SELECTED_INFO,
|
||||
VIEW_FPS,
|
||||
VIEW_DISPLAY_NORMAL,
|
||||
VIEW_DISPLAY_WIREFRAME,
|
||||
|
@ -214,6 +217,7 @@ class SpatialEditorViewport : public Control {
|
|||
VIEW_CINEMATIC_PREVIEW,
|
||||
VIEW_AUTO_ORTHOGONAL,
|
||||
VIEW_PORTAL_CULLING,
|
||||
VIEW_SELECTED_INFO,
|
||||
};
|
||||
|
||||
enum ViewType {
|
||||
|
|
Loading…
Reference in a new issue