• 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!

how can i load a sprite i created with save_sprite?

M

Maxikit2803

Guest
i tried sprite_add but instead of loading what i want it loads a random picture from my game and its always the same.
 
Last edited by a moderator:

Rob

Member
I haven't used that function before but it looks like it's just to add the sprite as a resource, not to actually draw it in the game, below your code use:

Code:
draw_sprite(custom, 0, 224, 168);
 
Top