• 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!

visible

  1. lddangon

    SOLVED Smooth disappearance of the layer

    Good afternoon. I want when the player enters the house triggered - the layer on which the roof tiles smoothly disappeared (became completely transparent). I know that you can turn off the visibility of the layer. There is also a very crooked thing - fx _filter_tintfilter. If you set the last...
  2. R

    SOLVED Draw GUI needs to draw

    Hello everyone, I need help solving a problem I encountered. Well, as it is in the title (sorry for the confusing title, I didn't know how to name this situation) I need GUI DRAW to draw some things on the screen, however, my OBJ has the visibility option in false. Why does my OBJ need to be...
  3. M

    I need help with this depth system.

    I'm using FriendlyCosmonaut's depth system, but none of my related objects draw. Apparently none fire their draw event when I use it on the (depthsorter) object "event_perform(ev_draw, 0)", I suspect it has something to do with the create event of the parent object (par_depthobject) being...
  4. Z

    Windows tileset layer not showing

    a tileset layer in my room is not showing, its visible, nothing is above it, its just not there. but in game it is visible. what culd the problem be?
  5. N

    Windows [SOLVED] Objects hidden by new empty layer

    Hello, This afternoon, I've been encountering a very weird issue, and I'm not sure if I did something wrong or if it's a bug. Basically, I added in my room a new layer "Blood" which is empty (and filled when killing an enemy) and it made my walls (from another layer) disappear. Walls were still...
  6. N

    Keyboard Check Pressed Moves through 2 Objects on Vk_Left

    Hello all, very new to game maker studio. I have an Action Select Obj that I want the player to be able to cycle through, I have a step event that where I check if the keyboard_check_pressed is vk_left then hide the first object and show the second. The problem is when I add a step event that...
  7. S

    Windows Assets not visible

    Why is only one asset not visible? o_player isn't visible, although its working. https://drive.google.com/file/d/1Knta1QqHdbmuciiwPE8VNABfDU4Jwag-/view?usp=sharing [SOLVED]
  8. S

    Windows Assets not visible

    The sprites of the objects are not visible, but the objects themselves exist. I'm sure I made their layers correct, and they are tagged visible. one of the examples- https://drive.google.com/open?id=1a9S5ZA2ezoutwpUJdCOHMhywCLZyv7bT
  9. M

    GameMaker Large amount of tiles need to disable tiles outside of view

    I can't find a way to do this. I quite literally make the entire static game room out of tiles and grid data. if I increase the size of this past 1024x1024 by anything more then around 400, my draw step goes up at least 80% cause massive lag. the only reasonable way to get both the larger...
  10. T

    Legacy GM Make object visible if "level" is completed

    Hi, I would like to make it that a button in a room is visible when an if statement completes successfully. I have tried to use the below within the if statement and declaring the object as not visible in the creation code, but the object appears the whole time. Creation code for room...
  11. B

    Legacy GM Collision Event Causing Sprite Flicker

    Hello everyone! I'm having a super annoying problem: I have it set up so that when the player is on a platform, it turns that platform visible, and all objects that are on that SPECIFIC platform are also turned to visible. The way I am doing this is thus: In the collision event of the...
  12. J

    Trouble with post-draw instance destroy

    I have coded for a hitbox to be created when the player is attacking like so: // Hitbox if (image_index >=0) && (image_index <1) { with(instance_create_depth(x,y,0,obj_hitbox)) { image_xscale = other.image_xscale; with...
  13. G

    GameMaker [Solved] Can I hide one object (invisible) in one of the views?

    Hi guys. I am making a local multiply shooter game, using split screens. I need a stuff like bush in LoL, where another player can't see you when you are inside and he is not. I would like to know if this is possible in GMS, and how to do that. Thanks!
  14. N

    Object not turning visible when button pressed

    I'm trying to make a computer version of Starfleet Battles, and I'm trying to implement the firing system. When you click the 'fire' button, the UI where you choose which weapon you want to fire appears. And when you press the button again, it dissapears; going back to movement mode. What's...
  15. A

    Quick question regarding "with all" function..

    So I'm working on a debug menu for my game, and I want it so that if the 'V' key is pressed, it will turn all of the invisible objects visible at an alpha value of 0.5. Next time the key is pressed, all of those objects will be made invisible once again. So far, I've tried testing for all the...
Top