mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-24 12:47:12 +01:00
Renamed AFTER_GUI_INPUT_DESELECT to AFTER_GUI_INPUT_NO_DESELECT.
This commit is contained in:
parent
a21352637e
commit
bafd6d1d8d
@ -7037,8 +7037,8 @@ EditorPlugin::AfterGUIInput EditorPluginList::forward_spatial_gui_input(Camera *
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_STOP;
|
||||
}
|
||||
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_STOP && current_after == EditorPlugin::AFTER_GUI_INPUT_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_DESELECT;
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_STOP && current_after == EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -947,7 +947,7 @@ void EditorPlugin::_bind_methods() {
|
||||
|
||||
BIND_ENUM_CONSTANT(AFTER_GUI_INPUT_PASS);
|
||||
BIND_ENUM_CONSTANT(AFTER_GUI_INPUT_STOP);
|
||||
BIND_ENUM_CONSTANT(AFTER_GUI_INPUT_DESELECT);
|
||||
BIND_ENUM_CONSTANT(AFTER_GUI_INPUT_NO_DESELECT);
|
||||
}
|
||||
|
||||
EditorPlugin::EditorPlugin() :
|
||||
|
@ -194,7 +194,7 @@ public:
|
||||
enum AfterGUIInput {
|
||||
AFTER_GUI_INPUT_PASS,
|
||||
AFTER_GUI_INPUT_STOP,
|
||||
AFTER_GUI_INPUT_DESELECT
|
||||
AFTER_GUI_INPUT_NO_DESELECT
|
||||
};
|
||||
|
||||
//TODO: send a resource for editing to the editor node?
|
||||
|
@ -1376,8 +1376,8 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (discard == EditorPlugin::AFTER_GUI_INPUT_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_DESELECT;
|
||||
if (discard == EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1391,8 +1391,8 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (discard == EditorPlugin::AFTER_GUI_INPUT_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_DESELECT;
|
||||
if (discard == EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT) {
|
||||
after = EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1673,7 +1673,7 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_DESELECT) {
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT) {
|
||||
clicked = _select_ray(b->get_position());
|
||||
|
||||
//TODO is this needed?
|
||||
@ -1699,7 +1699,7 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_DESELECT) {
|
||||
if (after != EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT) {
|
||||
if (clicked) {
|
||||
_select_clicked(false);
|
||||
}
|
||||
|
@ -1277,7 +1277,7 @@ EditorPlugin::AfterGUIInput SkeletonEditorPlugin::forward_spatial_gui_input(Came
|
||||
se->update_bone_original();
|
||||
}
|
||||
}
|
||||
return EditorPlugin::AFTER_GUI_INPUT_DESELECT;
|
||||
return EditorPlugin::AFTER_GUI_INPUT_NO_DESELECT;
|
||||
}
|
||||
return EditorPlugin::AFTER_GUI_INPUT_PASS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user