...
- With get you always have to store the result in a variable (new_particle_friction).
- With set you do not need this construction, but you have to use another argument:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
("Particle friction", new_particle_friction) |
The first argument, “Particle friction”, is the affected parameter and “new_particle_friction” is the value the script should apply. The "Particle Fluid Interaction" window is updated with each frame and shows the new rounded value, the exact result is printed to the Messages window.
...