Pixel-Composer/scripts/fd_rectangle_destroy/fd_rectangle_destroy.gml

15 lines
539 B
Plaintext
Raw Normal View History

2023-02-14 02:48:33 +01:00
/// fd_rectangle_destroy(instance id);
function fd_rectangle_destroy(domain) {
// Destroys a fluid dynamics rectangle.
// instance id: The fluid dynamics rectangle to destroy.
with (domain) {
surface_free(sf_pressure); surface_free(sf_pressure_temporary);
surface_free(sf_velocity); surface_free(sf_velocity_temporary);
surface_free(sf_material_0); surface_free(sf_material_0_temporary);
surface_free(sf_material_1); surface_free(sf_material_1_temporary);
surface_free(sf_world);
instance_destroy();
}
}