How to set particles gravity via gdscript?
I'm trying to make something like this, (of course it doesn't works):
get_node("Particles").process_material(get_particles_material).set_gravity(Vector3(9.8,0,0))
or this
get_node("Particles").set_gravity(Vector3(9.8,0,0))
All I want is to change the gravity property of Particles using GDscript.
Thank you in advance.