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

GameMaker [SOVLED] Sprite Depth: Stretching to Layers or to Objects

I need to draw a sprite at a specific depth in order to fit between layers, but I also need it stretched to double its current size.

Option 1: Create a second sprite which is double its size, move it to an object, and draw it at depth. There are many sprites and this seems horribly tedious.

Option 2: Stretch the sprite and then draw it to a layer which lives between the two layers that it needs to. How can I both stretch the sprite (draw_sprite_stretched) AND send it to a layer (layer_sprite_create) ?

Option 3: Stretch the sprite within the object and then use that with create_instance_depth. How can I form an object with a sprite which is stretched?

Any other options are welcome. Thanks!
 
image_xscale=2;
image_yscale=2;
depth=whatever_you_want;
This is solved. To clarify for any readers to stumble upon this, the solution used option 3. The text above falls in the draw command of the object and then the instance of the object is created. Thanks.
 
Top