Pixel-Composer/scripts/fd_x/fd_x.gml
2023-02-14 08:48:33 +07:00

10 lines
260 B
Plaintext

/// fd_x(instance id, x)
function fd_x(argument0, argument1) {
// Returns the x coordinate on the fluid dynamics surface.
return ((argument1 - __view_get( e__VW.XView, argument0.fd_view_number )) / argument0.fd_wratio) + argument0.fd_edge_buffer_size;
}