• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

layer_sequence_exists doesn't seem to work

kapaqw

Member
I just made a sequence named playerfalling_seq and put it in my room, named the asset layer "seq_assets" and made an object to check for sequences being in a room.
objects step event:
GML:
if layer_sequence_exists("seq_assets", playerfalling_seq){
    show_message("works")
}
whenever I run the program, it gives me nothing. I tested this in another project and it worked. I have no idea what I did wrong, I checked the documentation for the function, etc. Is my file corrupted?
 
Top