• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

camera creation

  1. J

    GameMaker Camera Object not working

    I'm running into an issue where my camera object isn't acting the way it's supposed to. For some reason, the aspect ratio on my game is stretched upwards and the camera won't move, despite the camera object following the player. I know this because I attached a sprite to the camera object and it...
  2. Armored Dragon

    Smooth camera zoom-out.

    Right now i'm trying to make a Spore-like mini game to pratice some things and... i'm stuck. I need a câmera system that follows the player and zoom out each time player grows up. I have this: ------------------------------------------------------------------------...
  3. S

    How to drag the camera at high x_border value

    I use the following code: view_enabled = true; view_visible[0] = true; var width = 480, height = 270, scale = 2; var cam = camera_create_view(0,0,width,height, 0, object0, -1, -1, 430, height/2); view_set_camera(0, cam); window_set_size(width*scale, height*scale)...
  4. P

    Windows Creating a camera to the following specifications...

    Hello! The issue I bring you today is one that's been stumping me for weeks, so I thought I'd bring it to some individuals who perhaps know a bit more than I do. I'm trying to make a camera for my game that functions in an... unorthodox way. At its core, it's simple: it follows the player...
  5. J

    Trouble with camera_destroy()

    I'm currently writing some code that moves the camera/viewports around the room/window and I'd like to be able to add and remove cameras. Part of that is looking to see if a view_camera[n] has a camera attached but I'm having some trouble with it. Doing some experimenting outside my project it...
  6. R

    GML Create Camera in different rooms ?

    Hey Everyone, Right now i got an extra code for each room that manages the window..camera(view) and stuff. Now im Working on ONE Code that manages all of that. Using a For loop to calculate the ideal with.. and adjust it before i enter a room Probably when im in room 2 adjusting room 1 and 3 (...
Top