• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

SOLVED Object wont appear

Ervindark

Member
I have an object that just wont show in game.
  • I placed it on the top layer in the room
  • I've set it to "visible"
  • It has no draw events
  • It has a set sprite
This is the only code attached to it (create event):

GML:
randomize();

global.scale = .2;

window_set_cursor(cr_none);
instance_create_layer(x,y,"Instances",obj_mouse);
instance_create_layer(room_width/2,room_height/2,"Instances",obj_tile);
So what's up?
 
Top