mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
15 lines
539 B
Plaintext
15 lines
539 B
Plaintext
/// 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();
|
|
}
|
|
}
|