game maker studio 2

  1. D

    GameMaker [solved]How can I get the player sprite to rotate to face the direction the player is moving

    So I've got the movement code for the player: step: if(keyboard_check(ord("W"))) y = y -4 if(keyboard_check(ord("S"))) y = y + 4 if(keyboard_check(ord("D"))) x = x + 4 if(keyboard_check(ord("A"))) x = x -4 It's a top down game and I wan't the sprite to rotate to the direction the player is...
  2. J

    Android [SOLVED] HELP! In-App Purchases Not Working :(

    Hello Community :) This is JCGam3z, a well-known app developer I'm having trouble getting in-app purchases to work in my store! Any assistance would be greatly appreciated. I've been at this for 5 DAYS now and it's getting really frustrating :( Here is my code... ***Create Event*** var...
  3. C

    Camera and Aspect Ratio Issues When in Full Screen

    In my game, I want my camera to follow around the player character. It successfully follows the character, but I'm having issues having the aspect ratio stay correct now that I've made it into full screen. My code is included below. Also, after attempting to fix the values, my window is now...
  4. P

    Question - IDE GMS2 export dont work on other PC than mine

    hello, i just finished a geme and i build standalone exe, i passed to some friends but they toldme they cannot run the game, is not showig anything, i ask them to install DirectX11 at least or .NET but im with the same issue, i can run and play they game and i dont know what to do. here is the...
  5. S

    GameMaker Multiple collisions with collision line[SOLVED]

    I'm having trouble with multiple collisions using perfect collisions. The problem that occurs with: //Single collision but only performs the damage state once var cc = collision_line(x, y, kx, ky, obj_elifeparent, false, true); if (cc && can_hit == true){ cc.hp -=damage...
  6. S

    Windows Boot-up of Game Maker 2 won't work while Online.

    So, I have this very interesting problem. Game Maker Studio 2 won't boot correctly while my computer is connected to the internet. I just get a blank white window that I can't do anything to/with, and have to close with the Task Manager. However, when my computer is not connected to the...
  7. M

    Question - General What Extension/Asset would you like?

    Hey, I was wondering what extension or asset you guys would like to see in the marketplace, one (or more) for each of the following categories: 1: Free assets or extensions 2: Paid assets or extensions a. $0.99 assets/extensions b. $2.00 assets/extensions, and c. $5 or...
  8. H

    How to freeze everything?

    I want to make a game over screen, so when the player falls into a pit, a game over screen will appear, only i have a small issue. See, i already have the block that triggers the gameover screen, but the player still can move and falls right through it, so my question is: how do you freeze...
  9. B

    Mac OSX Control Key Not Mapped Properly on Mac OS

    When I switched from a mac keyboard to a windows keyboard, I changed my modifier keys (Including command key) into a more comfortable position. For the rest of the os, the re-mapped command key works fine, but on GMS 2 it changed to the ALT key on the right side of my keyboard, however, saving...
  10. T

    3D GMS2 - Why does my camera mirror itself?

    //Create //3D camera camera = camera_create() gpu_set_zwriteenable(true) gpu_set_ztestenable(true) projection_matrix = matrix_build_projection_perspective_fov(-60, -view_get_wport(0)/view_get_hport(0), 32, 32000) camera_set_proj_mat(camera, projection_matrix) view_set_camera(0, camera)...
  11. C

    Windows HELP - Game Maker Studio 2 Not Downloading Correctly

    I have been using game maker studio 2 since the day it was released, and have been very happy with it. I installed the latest update just like any other and accepted the prompt to uninstall the previous version. For some reason, this time instead of uninstalling it just exists the installer and...
  12. A

    GameMaker DirectInput Controller Issues (Mac IDE)

    I'm currently trying to programme a game on Game Maker Studio 2 and have run into some issues with trying to add support for controllers. I am pretty sure that this is an issue with the Mac IDE because I've looked at multiple tutorials and none of them have issues. I am using a DirectInput...
  13. Aver005

    GameMaker How to open EXE file in game?

    Hello the people sitting at forums :). I address you as I don't know, what should I do. I am a fan of Game Maker. I use it from version 8.0. And I have a question :confused:: how to launch the EXE file in a game? Earlier in versions 8.0-8.1 there was an EXECUTE_SHELL command, in Studio version 2...
  14. DyadGames

    Question - IDE Best way to merge two GMS2 projects??

    For the life of me I can't figure out the best way to merge two GMS2 Projects. Importing a project only creates a new project. Extensions no longer have "export resources" tab when you create an extension as they did in GMS1. I can right click add existing resources, but as far as I know I'd...
  15. W

    Windows Installer Not Working in GMS2

    I just finished my game Melting Point for PC but the [Package as Installer] doesn't work right. I've tried it on different PC and the same issues pop up. The game installs just fine, but it doesn't produce a Desktop Link to the correct file and the Icon doesn't show. Then you click on the...
  16. M

    Discussion I purchased Game Maker Studio 2, but did not receive a license key.

    By all accounts, I should be fine. My Game Maker Studio 2 has unlocked the extra features, i have access to 1.4 professional, and so on. But for whatever reason, the license key was never generated. If I try to recover the key, the website tells me that there are no licenses to be recovered.
  17. sercan

    Android Facebook login and leaderboards.

    Hi, I see in many games that you can login with your facebook account and see what score your facebook friends have. And in some of them if you are just on your friends high score point in game, a sign is appearing with your friends' profile picture that shows you are just beating it. How can...
  18. Pawel

     [feature request] Easier object panel moving

    I would like to request a feature for Game Maker Studio 2. The thing I am thinking is the ability to move the entire object panel in the workspace not only by dragging its bar on the top but also by dragging bars of the opened events/scripts. Currently the only way we could move something like...
  19. R

    GameMaker Parent system GMS2

    Hi guys, I'm writting this because I need help with a project I'm currently working on with GMS 2. I created an object (I call it vehicle) and a turret that i placed on it. Then, in the object editor i set the vehicle as the turret's parent, so when i move the first with arrows the second moves...
  20. R

    iOS Error Testing on iOS

    Hello, I just got my iOS license key for GMS2 and have been trying to test a game on my iPhone. I went through this entire guide (https://help.yoyogames.com/hc/en-us/articles/115001368747-Setting-Up-For-iOS), and feel I've done the steps correctly to set up for iOS. I also believe all my Apple...
Top