summaryrefslogtreecommitdiffstats
path: root/editor/plugins/particles_editor_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-09-04 11:30:04 +0200
committerRémi Verschelde <rverschelde@gmail.com>2018-09-04 11:32:56 +0200
commit5fe01d4cfc6a915d24bcb8cdc32ab371c01e94c6 (patch)
tree4dac370d3a60b5e94e06e8a555e176eb5443334c /editor/plugins/particles_editor_plugin.h
parent1ebfd918d4b56a53ff1223cdf1912aa89863bb8b (diff)
downloadredot-engine-5fe01d4cfc6a915d24bcb8cdc32ab371c01e94c6.tar.gz
Move ParticlesMaterial code to its own resource file
It's shared by both 2D and 3D particles (+ CPU ones), so it makes sense to have as a common resource. It also allowed to disable compilation of Particles (3D) when using 'disable_3d'. Also cleaned up includes in SpatialEditorGizmos and some other places, as well as dropped dead code in material_editor_plugin.cpp.
Diffstat (limited to 'editor/plugins/particles_editor_plugin.h')
-rw-r--r--editor/plugins/particles_editor_plugin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/particles_editor_plugin.h b/editor/plugins/particles_editor_plugin.h
index 622ce6e8a9..830d30d98f 100644
--- a/editor/plugins/particles_editor_plugin.h
+++ b/editor/plugins/particles_editor_plugin.h
@@ -43,6 +43,7 @@
class ParticlesEditorBase : public Control {
GDCLASS(ParticlesEditorBase, Control)
+
protected:
Spatial *base_node;
Panel *panel;