gamemaker2

  1. G

    Question - IDE (SOLVED)GMS2 is Freezing And Crashing constantly

    When I say constantly I mean that I am completely unable to work on my project(s). As a long time user of GameMaker Studio I just want to say that I'm seriously disappointed in YoYo Games and GamerMaker Studio 2. Not only was I forced to purchase and port to GMS2 from GMS1.4 (a product I was...
  2. M

    Collisions not working

    Hello, I have a problem with objects using a data_map for variables using any collision in code... In the create event I have something like this monsters[0] = ds_map_create(); //Misc ds_map_add(variable[0],"variable",-1); scr_caller(0); the script looks something like var m_map...
  3. T

    GameMaker Render Engine only working in one direction

    Hello. Iv recently made a render engine to deactivate things that aren't in the visible area of the player. when first spawning in the game has good fps. but when going right through the map the fps starts to lower. When I go back left away back to the spawn the fps starts to go back up. I'm...
  4. M

    GameMaker How to Structure Room Layers for a larger game in GM2

    Hi Game Makers, I'm having issues with the new layer system and room. I just don't know what the best way to go about organizing my rooms and layers. I want to have every room have a default set of layers, but I if I use the Parent/Child system, I can't organize them inside folders (Per...
  5. M

    GML problem with save feature[Solved]

    I am trying to make save what saves players room, players x and y coordinates. but when I run this code nothing happens. it does not save anything. any help. my code: ini_open("save.sav"); savedroom = room; saved_x = obj_player.x; saved_y = obj_player.y...
  6. D

    How do I change an objects depth in GameMaker 2?

    I'm making an isometric game and I can't seem to figure out how to change the depth so the player can not be see behind an object but can be seen when standing in front of it. I use to do this in GameMaker 1 by just changing the depth of the player to -10 but I figure out where to even change...
  7. M

    GML How to make healtbar to stay in right corner? [solved]

    Hey, I would like to code the hp bar to stay at the top right but I don't know how to make it work. Any help. My code is: draw_sprite(healtbar_empty,1,obj_player.x-380,obj_player.y - 170); draw_sprite_ext(healtbat_full,1,obj_player.x-380,obj_player.y - 170,obj_player.hp/25,1,0,c_white,1)...
  8. T

    Help with HTML5 scaling

    Hey everyone! I recently did a post asking how to scale HTML5 games for mobile browsers but then though well I don't even know how to scale for desktop browsers size, so maybe starting there would be good and then move to figuring out how to scale for mobile. Problem is I am having a hard time...
  9. Z

    Question - IDE GM2 Conversion > TimeLines and unknown functions

    Background: I have a finished, released game in GM 1.4 that compiles fine in the GM 1.4 IDE. I imported the project into GM2. Conversion ran. Problem: When I try to run the new GM2 project, I get a bunch of compile errors that all are related to functions not being found if they are called by...
Top