Pixel-Composer/scripts/fd_rectangle_update/fd_rectangle_update.gml

9 lines
319 B
Plaintext
Raw Normal View History

2023-02-14 02:48:33 +01:00
/// fd_rectangle_update(instance id)
function fd_rectangle_update(domain) {
// Updates the fluid dynamics rectangle, proceeding the simulation one step further.
// instance id: The instance id of the fluid dynamics rectangle to update.
fd_rectangle_update_velocity(domain);
fd_rectangle_update_material(domain);
}