Merge pull request #51761 from RevoluPowered/fix-undefined-behaviour-editor-grid

Fix editor grid perspective undefined behaviour
This commit is contained in:
Rémi Verschelde 2021-08-17 14:04:47 +02:00 committed by GitHub
commit 1c737fe7b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ private:
bool grid_enable[3]; //should be always visible if true
bool grid_enabled;
bool grid_init_draw = false;
Camera3D::Projection grid_camera_last_update_perspective;
Camera3D::Projection grid_camera_last_update_perspective = Camera3D::PROJECTION_PERSPECTIVE;
Vector3 grid_camera_last_update_position = Vector3();
Ref<ArrayMesh> move_gizmo[3], move_plane_gizmo[3], rotate_gizmo[4], scale_gizmo[3], scale_plane_gizmo[3];