mirror of
https://github.com/godotengine/godot.git
synced 2025-02-11 22:35:15 +08:00
Fix uninitialized bool. Breaks translation in release_debug target.
This commit is contained in:
parent
4c000a05f6
commit
9a4f6d6689
@ -1255,7 +1255,6 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
|
||||
Vector3 motion_mask;
|
||||
Plane plane;
|
||||
bool plane_mv;
|
||||
|
||||
switch (_edit.plane) {
|
||||
case TRANSFORM_VIEW:
|
||||
@ -1376,7 +1375,7 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
|
||||
Vector3 motion_mask;
|
||||
Plane plane;
|
||||
bool plane_mv;
|
||||
bool plane_mv = false;
|
||||
|
||||
switch (_edit.plane) {
|
||||
case TRANSFORM_VIEW:
|
||||
|
Loading…
Reference in New Issue
Block a user