From eaae4b6408361eb34363adcb22a08046f43147f4 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 26 Mar 2020 18:49:16 -0300 Subject: Renamed 2D and 3D nodes to make their types explicit Fixes #30736. --- editor/plugins/particles_editor_plugin.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'editor/plugins/particles_editor_plugin.h') diff --git a/editor/plugins/particles_editor_plugin.h b/editor/plugins/particles_editor_plugin.h index fb5ce17560..773f305a2b 100644 --- a/editor/plugins/particles_editor_plugin.h +++ b/editor/plugins/particles_editor_plugin.h @@ -33,7 +33,7 @@ #include "editor/editor_node.h" #include "editor/editor_plugin.h" -#include "scene/3d/particles.h" +#include "scene/3d/gpu_particles_3d.h" #include "scene/gui/spin_box.h" class ParticlesEditorBase : public Control { @@ -41,7 +41,7 @@ class ParticlesEditorBase : public Control { GDCLASS(ParticlesEditorBase, Control); protected: - Spatial *base_node; + Node3D *base_node; Panel *panel; MenuButton *options; HBoxContainer *particles_editor_hb; @@ -70,7 +70,7 @@ class ParticlesEditor : public ParticlesEditorBase { ConfirmationDialog *generate_aabb; SpinBox *generate_seconds; - Particles *node; + GPUParticles3D *node; enum Menu { @@ -96,7 +96,7 @@ protected: static void _bind_methods(); public: - void edit(Particles *p_particles); + void edit(GPUParticles3D *p_particles); ParticlesEditor(); }; -- cgit v1.2.3