Returns the x position (left side) of the current viewport.
Example, called from article1_update.gml:
// destroys articles out of the left view side:
if (x < view_get_xview()) {
instance_destroy();
}
Returns the x position (left side) of the current viewport.
Example, called from article1_update.gml:
// destroys articles out of the left view side:
if (x < view_get_xview()) {
instance_destroy();
}