Heya!
As the title implies, after updating to 2.3.1 today and starting to modify my code, I noticed that my auto-fill suggestions were getting shown multiple times
I can assume this could be a bug/glitch of the new update/conversion to the new version, cause this behavior was not documented...
Hi! I've been working on a fan game for Undertale, and for some reason my collisions aren't working. I keep phasing through the wall. I'm relatively new at GameMaker, so any kind of help would be great. For my character sprite, my code is:
left_key=keyboard_check(vk_left)...
Hello,
I was programming when I encountered a recurring, but still relatively 'surprising', effect: I have a 2-subimages sprite and whenever I ask GameMaker2 for the subimage '2' (the 3rd one), it shows me number '0' (the 1st one). Is this regular behavior, or should I clamp manually the...
I need to hire a programmer who can create an engine for me, based on Super Smash Land:
http://www.supersmashland.com/
(Link to test the game and understand the concept)
It would not be to replicate a complex system like that of an official smash bros, but it would be played with 2 buttons...
Hello everyone! ^^
Guys, lately something very strange is happening in my apk I don't know if it's something from google or if something is wrong.
Come on, I correctly printed all the steps following the official yoyo tutorial. I have the latest version of GMS2 and I have everything updated by...
Hi.
I have a strange problem. This happen only in one of my projects so I think it's a bug. When I use goto_room, the topmost object on the object list in Game Maker Studio 2 gets destroyed. It doesn't matter which object it is. This isn't on a big problem and can easily be fixed by adding an...
I have been working on an action platformer game but my movements do not behave as I want them to. When move the cursor the object mousechecker moves with it and with that being checked my charachter's image_xscale gets set. However when the image_xscale gets changed character moves 5 to 10...
I thought It'd be a good idea to start this thread before any major updates. I'll be posting ONLY the most notable updates from Twitter.
About
This game is a 2D Platformer game focused on quick combat and movement to combo with the things around you. It'd prefer for it to be on the...
I was messing around with paths for now i just have a path that goes back anf foward.
//create event
spd = 2;
path_start(path0,spd,path_action_reverse,false);
These are the only 2 lines of code i use for now.
So let us say i create a path that is 320 pixels long (i don't know exactly how long...
Hello. Im currently trying to build a gravitational model of planets in Gamemaker2. So far gravity and everything is working great except one problem, Every like second or few the objects just randomly stop and basically the physics has to reset so all momentum and stuff is gone. Any Help? Code...
Hello. I need to make a DS list of all the "obj_object" objects currently in my room so that I can reference them all individually in my code. How would I go about doing this? This is so that they can reference each other. Also when the object dies it also needs to get off the list. Is this...
Hello, I'm currently trying out a few things for a physics class and want to try to replicate basic orbital mechanics in gamemaker 2. This requires some advanced math though that gamemaker would not support by default. I want to be able to run this equation in game maker
But this formula...
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...
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...
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...
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...
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...
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...
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)...