Questions tagged [game-maker-studio-2]

Game Maker Studio 2 is the latest major iteration of the cross-platform game creation tool made by YoYo Games, mostly used to develop 2D video games.

Game Maker Studio 2 is a cross-platform game development software focusing on ease of use and fast coding. It supports deployment to desktop and web platforms, consoles, and mobile devices.

It consists of a simple, integrated game engine and a built-in IDE that allows users to code via Drag and Drop visual programming or the GameMaker Language (GML) code scripting. Support for third-party extensions is also available to add even more functionality and tools.

30 questions
1
vote
1 answer

How to share a game created with the free version of Game Maker Studio 2?

I've recently downloaded Game Maker studio for free and made my first game. Now, I'd like to share it with others. I tried to use the "Export" button and it only creates a duplicate project. If I click the "Create executable" button, it says…
Spring
  • 33
  • 1
  • 7
0
votes
0 answers

Help on how to make a FNAF like camera system in game maker studio 2

I'm trying to program a Five Nights at Freddy's type camera system. I already made the flip-up animation by clicking the button at the bottom of the screen but I have problems making it go over to the camera system where the camera buttons will be.…
Louis
  • 1
0
votes
0 answers

coppy ds_list item to variable in GameMaker

function foo(_bar) constructor { bar = _bar; } __foo = ds_list_create(); ds_list_add(__foo, new foo(5)); __bar = __foo[| 0]; __bar.bar++; show_debug_message(string(__foo[| 0].bar)); show_debug_message(string(__bar.bar)); And I have in…
0
votes
2 answers

How to move X and Y position of sprite in GameMaker Studio 2?

In the tutorial it told me to add the sprite to the object and then add an event to the object called Step. I did this and then added the sprite to the room. The GML code I used in the Step event is x = x + 4; to move to the right but when I run the…
MM1Content
  • 5
  • 1
  • 6