Gamemaker studio 2 - Simple Lighting Technique

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 36

  • @offthebooksmusic
    @offthebooksmusic Год назад +1

    man thank you for this. i've been putting the finishing touches on my first game and i wanted to add a basic lighting system but didn't want to have to go back and change every bit of how things interacted for a more complex light system with shadows and whatnot.. this is perfect for what i want. simple but effective.

  • @misterr3083
    @misterr3083 4 года назад +1

    Excellent lighting tutorial! Thanks so much. Super useful.

  • @SGTIvan921
    @SGTIvan921 11 месяцев назад +2

    Timestamps for reference:
    1:29 Create the object oLighting (set the events and variables needed) ***ERROR FIX AT 12:31 timestamp below
    4:15 What the glow effect looks
    6:56 What will glow, and setup in the draw event
    8:53 Add a variable "darkness" to oLighting to manage the darkness of the room. Set it to 0.5.
    10:12 Demo 1
    10:39 Darken the room (In the draw event of oLighting)
    12:31 Fixing an error (surface_set_target(light_surf) and draw_clear(c_black) in draw event)
    13:30 Demo 2
    13:42 Subtracting from the darkness where the light is
    15:08 Demo 3
    15:59 Apply the glow for the shrine
    16:54 Final Demo
    18:05 Managing the darkness, Bonus Demo

  • @bubilabop
    @bubilabop 6 месяцев назад

    You are King!!!,Thank you so much.

  • @DitheryStudios
    @DitheryStudios 2 года назад

    Thank you!! Just added a day night cycle, by having a time variable change the darkness, and making the alpha of the light be the darkness -0.5

  • @joLicata91
    @joLicata91 2 года назад

    Hi my friend! can you make a tutorial on how to handle resolution and camera? your game looks very good and sharp

  • @t1ww
    @t1ww 2 года назад +1

    at 4:06
    can also be written as
    /// ! //work as a “not” term
    if !surface_exists(light_surf) {
    light_surf = surface_create(room_width, room_height);
    }

  • @ht-spreadlove2182
    @ht-spreadlove2182 7 месяцев назад

    Great video, thank you.

  • @generalkiki4662
    @generalkiki4662 8 месяцев назад

    you save me so much time thx a lot !!!

  • @makeitsogames
    @makeitsogames Год назад

    thanks, this tutorial was very useful!

  • @e.maleki9927
    @e.maleki9927 4 года назад +5

    This is so cool! Can you please do a tutorial on manipulating the shape of the surface?
    Btw you got a sub and a like :)

    • @NorthGameStudio
      @NorthGameStudio  4 года назад

      Woah the shape? What do you mean?! 😮

    • @e.maleki9927
      @e.maleki9927 4 года назад +1

      @@NorthGameStudio I'm not that familiar with surfaces. Isn't there a way to change the shape of a surface?

  • @wesleyaraujo5455
    @wesleyaraujo5455 4 года назад

    great material, congratulations, I don't like the variable definition window, but anyway, nothing to complain about, continue with your videos,
    Thank you

  • @Antided
    @Antided 3 года назад

    Thank you very much! This is exactly what I was looking for

  • @eik492
    @eik492 2 года назад

    Awesome tutorial dude!
    There is only one thing I cant figure out how to do with this system, if it is even possible ofcourse.
    Basically I want a lighting system like this in my game, but I want to make is so that things further away on the depth will have a lower amount of light displayed on them, and lets say for example the sky at the highest depth will not have any light on it at all.
    Do you know how I could make something like this?

  • @siennas254
    @siennas254 3 месяца назад

    I've got everything working in this just fine except for the blending where the shape of the light is subtracted from the dark surface. Doing this renders all things drawn below the light source to be completely enveloped in black, I assume their shape is being deleted as well. Unsure as to how I can have my light exist at a depth where it is properly affecting all the sprites I want it to without it also just erasing them if I add the subtraction.

  • @masterjohn3126
    @masterjohn3126 Год назад +4

    This is one of the rare good gms2 tutorials, unfortunately still drawn out to 20 minutes

    • @NorthGameStudio
      @NorthGameStudio  Год назад +1

      Thanks I appreciate that and I think you’re right, I need to make these shorter lol

  • @fierorecensione5828
    @fierorecensione5828 11 месяцев назад

    TOP!

  • @iamrm1011
    @iamrm1011 Год назад

    how to make different layers unaffected by light

    • @FlowSwitchMusic
      @FlowSwitchMusic Год назад +1

      Put the depth of your lighting layer below the depth of the layer you don't want effected by it.

  • @TripleKenshi
    @TripleKenshi Год назад +1

    hey i need help my code isnt working eventho i copied youre code
    if (surface_exists(light_surf))
    {
    surface_set_target(light_surf)
    draw_set_color(c_black)

    with (Player)
    {
    gpu_set_blendmode(bm_normal)
    draw_sprite_ext(sLight,0,x,y,1,1,0,c_white,0.5)
    }

    gpu_set_blendmode(bm_normal)
    surface_reset_target()
    draw_surface_ext(light_surf,0,0,1,1,0,c_white,1) "its 1 Because i thought darkness was the Prob"
    }
    else
    {
    light_surf = surface_create(room_width,room_height)
    }
    Edit:SOAB it was DRAW CLEAR BLACK

  • @spacepirate_
    @spacepirate_ 4 месяца назад

    When minimizing the game or alt-tabbing, most of the screen goes black with only the glowing parts remaining. Has anyone else encountered this issue and knows how to fix it?

  • @yungefendi6480
    @yungefendi6480 3 года назад +1

    where can i get this theme?

  • @banish4cost
    @banish4cost 3 года назад

    some objects that use DRAW GUI no longer display their draw events after adding a surface.
    any help?

    • @NorthGameStudio
      @NorthGameStudio  3 года назад +1

      hhhmmm. you may want to include draw_self() at the very top of the draw events on objects that are not appearing.

  • @Borgello
    @Borgello 2 года назад

    what is sGlow? Y ou havent specified what I am supposed to do and now I am getting error, because small glow can not be found

    • @NorthGameStudio
      @NorthGameStudio  2 года назад +1

      Hey there. sGlow is the name I gave my sprite. You can name your sprite anything you like. Just make sure to replace sGlow with the name of your sprite. Hope that helps. 😬