mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
10 lines
260 B
Plaintext
10 lines
260 B
Plaintext
/// fd_y(instance id, y)
|
|
function fd_y(argument0, argument1) {
|
|
// Returns the y coordinate on the fluid dynamics surface.
|
|
|
|
return ((argument1 - __view_get( e__VW.YView, argument0.fd_view_number )) / argument0.fd_hratio) + argument0.fd_edge_buffer_size;
|
|
|
|
|
|
|
|
}
|