Realistic 2D Lights & Shadows in Unity

Ғылым және технология

Hey! In this video, we will look at how to get realistic 2D lighting in the Unity engine. I will show you how to set up shadow masks to get results worthy of HDRP graphics!
This is kind of a unity tutorial, but also kind of me just playing around with stuff. If you'd like a video that would go into more details, make sure to let me know in the comments!
Don't forget to leave a like and subscribe :)
I do gamedev projects, devlogs, unity tutorials and much more!
Follow me on twitter : / willydev0
#gaming #games #videogames #mobilegames #gamedev #code #coding #unity #csharp #trending #subscribe #indiedev #solodev #tutorial #raytracing #hdrp #rendering #shaders
Unity
Unity tutorial
gamedev
devlog
Unity graphics
Unity URP
Unity HDRP
Raytracing
RTX

Пікірлер: 70

  • @CatchMeAlone
    @CatchMeAlone10 ай бұрын

    For anyone having problem with 2D Light, you have to change the material on the Sprite Renderer to URP's Sprite-Lit-Default material, so that the sprite is affected by lighting.

  • @megazord5696

    @megazord5696

    Ай бұрын

    Thank you!

  • @shauas4224
    @shauas42247 күн бұрын

    You are criminally underrated man. +1 sub

  • @Nirvana-yq2dm
    @Nirvana-yq2dm5 ай бұрын

    rly cool to see the changes through lightings! Thanks a lot for your tutorial

  • @eastpenguin
    @eastpenguin5 ай бұрын

    Great video it was the only video that I could find with this much detail❤I also liked and subscribed thanks for the information.

  • @Xenalith
    @Xenalith6 ай бұрын

    from 9:00 to 10:00 was so touching & human 🥺 The way your comments faded in and out of the sped-up process with that beautiful ass music was a joyride to experience, seriously, what a well made segment it caught me off guard lol

  • @Willy_Dev

    @Willy_Dev

    6 ай бұрын

    Thanks, I really appreciate that !

  • @dovacatmacferson8230
    @dovacatmacferson8230 Жыл бұрын

    Your video is awesome! Your explanations are concise and you really are giving us the right tools for creation Hope more people will watch this

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    Thanks, that means a lot !

  • @lafineequipe6655
    @lafineequipe6655 Жыл бұрын

    Your video is very nice, super nice to understand ! Thank a lot for that

  • @jakewood1942
    @jakewood1942 Жыл бұрын

    How the heck do you only have 352 subscribers? This is so well made. Made it 353 :)

  • @user-yx5bf7dp4s
    @user-yx5bf7dp4s10 ай бұрын

    Clear and good tutorial! Keep going!

  • @LtStxpendous
    @LtStxpendous Жыл бұрын

    such a well made video thank you so much for answering my unasked questions

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    Glad i could help !

  • @cozygamemaker
    @cozygamemaker2 ай бұрын

    This tutorial is sooo awesome! Thanks a lot

  • @hauntedcrowdev
    @hauntedcrowdev4 ай бұрын

    Awesome tutorial! Thanks!

  • @gudvinzis4479
    @gudvinzis4479Ай бұрын

    Thank you very much you said everything i needed!👍👍👍👍

  • @klutz6557
    @klutz655711 ай бұрын

    Thanks a lot this was very informative , Subscribed👍👍

  • @MrOmenMusic
    @MrOmenMusic9 ай бұрын

    thank you for the useful tutorial! :D

  • @Hajnex
    @Hajnex3 ай бұрын

    Awesome explanation 👌 Thx man

  • @Wellyngton-rm3bb
    @Wellyngton-rm3bb Жыл бұрын

    Great content!

  • @TheIronHeadRat
    @TheIronHeadRat11 ай бұрын

    Thanks for sharing 👍

  • @elib1421
    @elib1421 Жыл бұрын

    cool stuff!

  • @moonwatchereclipse5291
    @moonwatchereclipse529110 ай бұрын

    Thank you so much!

  • @thebestcelep6358
    @thebestcelep635810 ай бұрын

    Thank you ❤

  • @Stupid_Utube
    @Stupid_Utube Жыл бұрын

    Great

  • @styxrakash4639
    @styxrakash46394 ай бұрын

    Wow! Unity upped there game for 2D I don’t remember this being around years ago

  • @ourclarioncall
    @ourclarioncall3 ай бұрын

    Wow, love it Have you seen the game phantom fellows ? It’s got like really vibrant light , like neon . I wonder if they made it using what your showing

  • @Willy_Dev

    @Willy_Dev

    3 ай бұрын

    Hard to say what they made it with, but I like the look !

  • @WeirdGoat
    @WeirdGoat Жыл бұрын

    Great job! Could you go any deeper and take a look at the lights of octopath traveler, post processing + lights = pretty damn good.

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    Thank you, I will defenitely do a video on post processing in the future !

  • @WeirdGoat

    @WeirdGoat

    Жыл бұрын

    @@Willy_Dev Looking forward to it!

  • @danylo_master
    @danylo_master4 ай бұрын

    Thank you for this tutorial. But... What about shadows for animated 2D sprites with multiple corners and holes? )

  • @Willy_Dev

    @Willy_Dev

    4 ай бұрын

    That is a good question ! Since animated sprites are basically just multiple sprites, displayed in quick succession, i guess a sprite mask applied to every single frame could potentially achieve the desired effect. Don't take my word for it though, this is not something i've done before !

  • @nikolaitesla4267
    @nikolaitesla4267 Жыл бұрын

    Is there any way to cast a shadow from a global light and also have a shadow caused by that global light on a dynamic object (i.e. a character casting a shadow on the grass behind them as the sun is facing them, plus we can move the character so the shadow should move with them as well)??

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    As far as I know, tehre's no way to do that with a global light since global lights are not directional. It just lights up every single pixel of a scene. Since it has no direction, no shadow will be cast. If you really want to achieve this effect, what you could probably do is have a directional light setup to illuminate you whole scene. That way you'll be able to cast shadows. This is the first thing that comes to my mind, there are probably more effecient ways to go about it !

  • @MohamadNurjaman
    @MohamadNurjaman8 ай бұрын

    i didn use URP model when creating my project, when i can find the light menu ? cause in mine, the light menu is not working, also the memnus was different.

  • @Willy_Dev

    @Willy_Dev

    7 ай бұрын

    You will have to install it using the package manager

  • @scoop9551
    @scoop955110 ай бұрын

    I already have a bunch of scripts for moving/falling platforms, player climbing, etc. but they were attached to squares and stuff I created just to test. Yesterday, I started messing with tilemap and stuff for level design, but I don't see a way of attaching my scripts to some of the tiles, is it possible to do so ?

  • @Willy_Dev

    @Willy_Dev

    10 ай бұрын

    As far as i know it is not possible. You can however use a tilemap for most of your level design and then add your moving platforms on top of it as separate game ojects with your colliders and custom scripts !

  • @TamTruong-kg7yt
    @TamTruong-kg7yt7 ай бұрын

    I have problem that golbal light is not working

  • @oOBlackSun3912Oo
    @oOBlackSun3912Oo Жыл бұрын

    Could you also please create a Tutorial for shadows in a 2D top down game?

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    It's basically the same thing no matter the point of view of your game! Your assets are gonna change, but you,re gonna want to put shadow casters on your walls just the same

  • @oOBlackSun3912Oo

    @oOBlackSun3912Oo

    Жыл бұрын

    @@Willy_Dev nice i'll try that, thanks :)

  • @MVMborzoi
    @MVMborzoi4 ай бұрын

    I used the old version of adding URP to my 2022.03.20 version of Unity Project. And it didn't work even though I could put various 2D Lights option, they literally didn't work. As I followed your instructions, everything worked well in New file. Here's my question, if I want to make my own game that has light system, should I have to make file through 2D URP? instead of 2D?

  • @Willy_Dev

    @Willy_Dev

    4 ай бұрын

    It is possible to make your own light system in regular 2D. 2D URP however will have all the premade lights i showed in this video. Hope it helps !

  • @greciaosorio7108
    @greciaosorio71083 ай бұрын

    If my game has already been created in a normal template is there any way to import the URP? 😕

  • @Willy_Dev

    @Willy_Dev

    2 ай бұрын

    Yes ! you can go in Window > Rendering > Render Pipeline Converter in your project and upgrade to URP from there

  • @alexanderscarborough9472
    @alexanderscarborough947211 күн бұрын

    What was the second game you showed in the intro, with the animal character chopping the tree?!

  • @Willy_Dev

    @Willy_Dev

    10 күн бұрын

    It's called Cult of the lamb !

  • @brianmiller266
    @brianmiller266 Жыл бұрын

    How do normal masks combine with sprites to get realistic lighting?

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    A normal mask gives a depth map to a sprite, which is then calculated with lights to create shadows as if a sprite was 3D.

  • @lokosstratos7192
    @lokosstratos719211 ай бұрын

    Is there any options for this to work on built-in renderer?

  • @Willy_Dev

    @Willy_Dev

    11 ай бұрын

    Unfortunately I don't think it is. If the goal is to implement this in an existing project made with the standard renderer, you can download the URP in the package manager to upgrade your project. I'd suggest to watch a video before you do that as there are a couple steps to follow to ensure your project still works the same !

  • @lokosstratos7192

    @lokosstratos7192

    11 ай бұрын

    ​@@Willy_Dev Ty! i just noticed i had a tool from humble bundle that does all this in built-in renderer.

  • @MVMborzoi
    @MVMborzoi4 ай бұрын

    이것만 알았어도...

  • @mesaperr
    @mesaperr Жыл бұрын

    Is there an easy way for ShadowChaster2D

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    There are probably easier ways. You could make a script that applies this to the edge of every GameObject of a certain type in your scene!

  • @kapcapkapcap6104
    @kapcapkapcap61046 ай бұрын

    I don't have a Global Light 2D? How do you get one?

  • @Willy_Dev

    @Willy_Dev

    6 ай бұрын

    Make sure you created the project with the 2D URP preset, and not the regular 2d preset

  • @kapcapkapcap6104

    @kapcapkapcap6104

    6 ай бұрын

    @@Willy_Dev I created the project without the 2D URP preset, and already have a lot of progress in it

  • @Willy_Dev

    @Willy_Dev

    6 ай бұрын

    You can import the URP via the package manager I berlieve. A gogole search about upgrading your project to URP will point you in the right direction. It is something i have done in the past but i don't remember exactly how

  • @kapcapkapcap6104

    @kapcapkapcap6104

    6 ай бұрын

    Thank you!@@Willy_Dev

  • @nielspalmans6237
    @nielspalmans623711 ай бұрын

    my project doesnt have a global light by default?

  • @Willy_Dev

    @Willy_Dev

    11 ай бұрын

    Are you sure you created it using the Universal Render Pipeline? If you did, you can always just add the global light yourself !

  • @nielspalmans6237

    @nielspalmans6237

    11 ай бұрын

    @@Willy_Dev ooh shoot no i did not 😅 Well i know where to look now thanks!

  • @BlenderDestruction
    @BlenderDestruction Жыл бұрын

    I dont have 2D lights help!

  • @Willy_Dev

    @Willy_Dev

    Жыл бұрын

    Make sure you created the project using the URP template in Unity ! If you created it with the basic 2D template they won't show up.

  • @exice2878
    @exice2878 Жыл бұрын

    this channel is way too small for the quallity in this videos

  • @BunnyboyCarrot
    @BunnyboyCarrot7 ай бұрын

    Make sure you choose 2d light and not be a dumb dumb like me

Келесі