diff options
| author | Mariano Javier Suligoy <marianognu.easyrpg@gmail.com> | 2015-07-24 21:59:48 -0300 |
|---|---|---|
| committer | Mariano Javier Suligoy <marianognu.easyrpg@gmail.com> | 2015-07-24 21:59:48 -0300 |
| commit | bdde79a3f433dbff244e544b72ac8946d8d9b44b (patch) | |
| tree | 69737eec9a9448d2636631af6de6ad58e2fd2c00 /scene/gui/graph_edit.h | |
| parent | 2a43778793ba67c7edb7d96ab30c4c2a8c145c70 (diff) | |
| download | redot-engine-bdde79a3f433dbff244e544b72ac8946d8d9b44b.tar.gz | |
Box selection for GraphNodes
Diffstat (limited to 'scene/gui/graph_edit.h')
| -rw-r--r-- | scene/gui/graph_edit.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scene/gui/graph_edit.h b/scene/gui/graph_edit.h index 5ab0f3300e..44f5a369c2 100644 --- a/scene/gui/graph_edit.h +++ b/scene/gui/graph_edit.h @@ -53,6 +53,13 @@ private: bool just_selected; Vector2 drag_accum; + bool box_selecting; + bool box_selection_mode_aditive; + Point2 box_selecting_from; + Point2 box_selecting_to; + Rect2 box_selecting_rect; + List<GraphNode*> previus_selected; + bool right_disconnects; bool updating; List<Connection> connections; |
