|
@@ -95,7 +95,7 @@ const Rect2 &RendererCanvasRender::Item::get_rect() const {
|
|
|
case Item::Command::TYPE_PARTICLES: {
|
|
|
const Item::CommandParticles *particles_cmd = static_cast<const Item::CommandParticles *>(c);
|
|
|
if (particles_cmd->particles.is_valid()) {
|
|
|
- AABB aabb = RendererRD::ParticlesStorage::get_singleton()->particles_get_aabb(particles_cmd->particles);
|
|
|
+ AABB aabb = RSG::particles_storage->particles_get_aabb(particles_cmd->particles);
|
|
|
r = Rect2(aabb.position.x, aabb.position.y, aabb.size.x, aabb.size.y);
|
|
|
}
|
|
|
|