diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-04-08 22:38:11 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-04-08 22:40:06 -0300 |
commit | 4286aef69313e048fa91710c35456c08a252fd3c (patch) | |
tree | 866ecba1e556f587aed886166afea79a47487248 /editor/plugins/particles_editor_plugin.h | |
parent | 6075dfe511728ab3fb59915a18ca99e5b8789d8b (diff) | |
download | redot-engine-4286aef69313e048fa91710c35456c08a252fd3c.tar.gz |
Particle system is complete. Rejoice!
Diffstat (limited to 'editor/plugins/particles_editor_plugin.h')
-rw-r--r-- | editor/plugins/particles_editor_plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/plugins/particles_editor_plugin.h b/editor/plugins/particles_editor_plugin.h index 15881fe6a1..e9f9f43468 100644 --- a/editor/plugins/particles_editor_plugin.h +++ b/editor/plugins/particles_editor_plugin.h @@ -57,6 +57,9 @@ class ParticlesEditor : public Control { SpinBox *emission_amount; OptionButton *emission_fill; + ConfirmationDialog *generate_aabb; + SpinBox *generate_seconds; + enum Menu { MENU_OPTION_GENERATE_AABB, @@ -68,6 +71,7 @@ class ParticlesEditor : public Control { PoolVector<Face3> geometry; + void _generate_aabb(); void _generate_emission_points(); void _resource_seleted(const String &p_res); void _node_selected(const NodePath &p_path); |