Questions tagged [game-maker]

GameMaker is a Windows and Mac OS IDE which allows users to easily develop computer games without the requirement of prior computer programming experience.

Game maker

GameMaker is designed to allow its users to easily develop video games without having to learn a complex programming language such as C++ or Java through its proprietary drag and drop system. These icons represent actions that would occur in a game, such as movement, basic drawing, and simple control structures. It is also possible to create custom "action libraries" using the Library Maker.


Graphics

GameMaker primarily runs games that use 2D graphics, allowing the use of limited 3D graphics. It supports the ability to create particle effects such as rain, snow and clouds, however not natively in 3D except through use of Dynamic Link Library.


GML

Game Maker Language (GML) is the primary interpreted scripting language used in GameMaker, which is usually significantly slower than compiled languages such as C++ or Delphi. It is used to further enhance and control the design of a game through more conventional programming, as opposed to the drag and drop system.


Platforms

GameMaker accommodates redistribution on multiple platforms. The program builds for these platforms: Windows, Windows 8, Mac OS X, Ubuntu, HTML5, Android, iOS, Windows Phone 8, Tizen, Xbox One, and Playstation.


Source: Wikipedia

449 questions
2
votes
2 answers

How to freeze sprite animation on last frame?

I want to make a sprite in game maker that contains 5 sub images to stop when it reaches the last one how can I do this using code?
shrouk
  • 43
  • 1
  • 1
  • 10
2
votes
1 answer

How to tell if an object has been touch by the player in gml code

Hey am going to give an example of what am trying to do imagine that i have 5 circle sprites and in my gml code i want to do something like this if cirlce_1 was touch then you can touch circle_2 and if circle_2 was touch then you can touch cirlce_3.…
2
votes
1 answer

GML sprite direction facing issue?

Okay, I'm having problems with my sprites facing direction, I have so that: If i press the D key, the sprite will play the walking sprite and when i release it, it faces in the direction i was walking, HOWEVER when i'm walking left(A key), it plays…
Pitu
  • 97
  • 1
  • 1
  • 7
2
votes
1 answer

Use image_xscale to slow down speed GameMaker Studio

Using the image_xscale that increases every time an object collides with a certain object, how can I make its speed go down using the increasing image_xscale? An example would be in agar.io, where circles slow down as they get bigger. What equation…
jdejde
  • 45
  • 6
2
votes
2 answers

How do I generate a waypoint map in a 2D platformer without expensive jump simulations?

I'm working on a game (using Game Maker: Studio Professional v1.99.355) that needs to have both user-modifiable level geometry and AI pathfinding based on platformer physics. Because of this, I need a way to dynamically figure out which platforms…
2
votes
1 answer

UDP Broadcasting via Hamachi - Is it possible in Windows?

I'm using Game Maker: Studio and already got the UDP broadcasting to work, but only for people using the internet in the same router. But, I want to broadcast via Hamachi too, so there's no need to enter the IP manually. This is the function I can…
2
votes
1 answer

Move an object in a direction

I have to work in Game Maker for this project and I want to move a object towards another object. This is what I have got so far. Does anyone know what I am doing wrong? The enemy is now spinning around the…
anonymous-dev
  • 2,897
  • 9
  • 48
  • 112
2
votes
1 answer

Reading Facebook Score Graph (Maps, lists)

I'm using game maker to develop the game. In the Graph API Explorer, on facebook, it shows me the map like this (when I call a graph app/scores: { "data": [ { "score": 9, "user": { "id": "100001473840881", "name":…
2
votes
3 answers

Game Maker code error

Now I'm making an endless runner where objects are spawned in front on me randomly. I was told to make a spawnController and globalController object, so I did. Then this code should be put in the controller under step event if(tick = 32) { tick =…
user1947331
  • 47
  • 2
  • 7
2
votes
2 answers

Algorithm for Block-Matching Game Placement

So I'm working on a game that's similar in mechanics to Bejeweled--you know the type, where you swap adjacent tiles in a grid to match groups of same-type tiles together. So here's my question: if I have an MxM grid of tiles, and there are N…
Daniel Burnett
  • 69
  • 1
  • 1
  • 10
2
votes
6 answers

Fast projectiles don't always hit

So for my game, a have a fast moving Bullet object, with a sprite that's 5x5 (roughly). Moving at about a speed of 30, it needs to impact a relatively thin Enemy object with a thickness of only about 5 pixels. At certain regular intervals of…
Daniel
  • 2,435
  • 5
  • 26
  • 40
2
votes
8 answers

Game Maker Language new line

I am writing a GML script and wanted to know how to make a message appear on the next line: ex. show_message("Hello" + *something* + "World") outputs: Hello World
2
votes
5 answers

How do I put Java into GameMaker Studio?

I'm playing around with GameMaker Studio and plan to use it for my next Android project. Yet I am not sure, how can I add java libraries ( jar files ) into it? For example, if I want to implement LeadBolt's SDK into it... or if I have my own library…
Roger Travis
  • 8,402
  • 18
  • 67
  • 94
2
votes
3 answers

From Game Maker to Python

I use Game Maker for creating simple (and not simple) 2D games for Windows. I really love it. It's easy to use, it's powerfull and it allows me to create games very fast. But now I know about Python. Python is my new love. I would like to create…
imkost
  • 8,033
  • 7
  • 29
  • 47
1
vote
1 answer

Make 2d edge faded clouds

Hi and sorry If I misunderstood about asking this question here. I'm working with game maker and recently I hit something that I couldn't solve. I have a piece of cloud sprite and I have several cliffs which player walks on them. I want to show the…
MahanGM
  • 2,352
  • 5
  • 32
  • 45
1 2
3
29 30