hi there! i am a bit of a newbie to gamemaker and programming in general. i have a cutscene system going right now and am trying to make a simple function that flips an object's sprite. i must be doing something wrong, because this doesn't seem to have any effect.
with(obj_id){
image_xscale = -image_xscale
}
cutscene_end_action()
}```
to be clear, im giving it the object's id as the argument there, in this case the name of the object in game maker's asset view. when i call this, it calls my cutscene_end_action function fine, but doesn't have any effect on the object itself.