I Finally Upgrade my Unity Project

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 170

  • @Stereotypical_Cat
    @Stereotypical_Cat Рік тому +38

    one thing that nintendo often does to save on grass shading is simply to make the bottom texture of grass darker, eg "painting" in the shadows directly.

  • @jupit3r131
    @jupit3r131 Рік тому +32

    I recommend adding large boulders and rocks around the map as well as patches of flowers. Adding water plants like lily pads and diverse foliage can add a lot to your games visuals, I also recommend adding some sort of fog, be it volumetric or regular, just to add more depth. The games looking good!

    • @overphildev
      @overphildev  Рік тому +8

      Yep there is still lots of improvements I can make and I do plan on adding them at some point

  • @mazenabdelrahman5283
    @mazenabdelrahman5283 Рік тому +2

    keep up the amazing work man

  • @Salmontres
    @Salmontres Рік тому +2

    I had a much harder time upgrading my (approx 6 month project) to URP, and I really enjoyed this vid!

  • @Simqer
    @Simqer Рік тому +2

    Rather than popping the trees into view, why not fade them into view or fade out of view.
    When they are a certain distance away, you give them a low saturation and they are very opaque. As you get closer, they become less opaque and more vibrant. Of course, only for a distance of a few steps, after which they are 100% visible.
    You do the reverse when mobing away from the trees.
    You don't need many phases, like 5 should be enough.
    It will match well with the distance fog you have.

  • @hms.fortune5829
    @hms.fortune5829 Рік тому +2

    as someone who has been interested in game design for the past few months these videos are amazing, i have my own idea of a dream game i would like to make and i was worried about it being two separate genres stitched together but your project is an awesome proof of concept of that very idea, i look forward to seeing your next devlog

    • @overphildev
      @overphildev  Рік тому +1

      I love games that are a combination of 2 genres. Your game doesn't always have to fit perfectly into a category. Good luck with your development

    • @hms.fortune5829
      @hms.fortune5829 Рік тому +2

      @@overphildev thanks, that means a lot,even since yesterday I have gotten so many ideas as to exactly how to stitch them together in a cohesive manner, I’m making a fast paced original strategy game,until your next dev log, good luck to you aswell

  • @carmygames
    @carmygames Рік тому +5

    Aaaaaaw yeah, a cup of coffee is a main requirement for switching to URP
    ._.

  • @sealsharp
    @sealsharp Рік тому +3

    Welcome to the URP world, where new and different weirdnesses await.
    The shake of the trees could be done in a shader by moving the vertices the further they are away from the pivot point, which then should be at the root. Saw that somewhere once.
    For the tress in the distance, if you haven't done so, search for "imposters" which are 2D billboards of models which is used. That's how even commercial titles can achive a ton of objects in the distance.
    Have a good sunday!

    • @KomodoBitGames
      @KomodoBitGames Рік тому +1

      A lot of AAA games like far cry 6 don’t use flat images for distance anymore. They normally just have extremely simple models with 1 super simple texture on it that resembles the colors. Flat images are pretty noticeable and they still equal one draw call. Not to mention you would need to orient them towards the player on a tick.
      A lot of them also do mesh instancing with some like unreal using special assets that are even more efficient.

  • @fenrir0__059
    @fenrir0__059 Рік тому +37

    You could add a wrench to act as an upgrade tool. You could use it to upgrade your scarecrow. While you are holding the wrench and looking at the scarecrow it could show its range.

  • @ulicesisaia
    @ulicesisaia Рік тому +3

    Awesome changes and improvements bro!! but i have a question: When the bullet of the scarescrow hit an enemy i see a little jittering, that's because the bullets phisically travel and collides with the enemy's collider? or it's an animation of the enemy? cause if it's the first case i have something to tell you, I don't know if you know this but maybe for other people: whenever you work with projectiles, with fast and continuos projectiles (maybe cannion balls doesn't count here), normally you don't instantiate the bullet and make it travel or hit anything, you don't have to use the "OnCollision" method, what you do is cast a raycast and check if it't hit something and aplly the damage to that object, using "OnTrigger", since trigger colliders (from the enemy) doesn't affect the physiscs at all (you don't use resources to calculate it) but still gives you information, besides, when a collider travel fast maybe go through another collider, with raycast and triggers that doesn't happend, and if it's happen, you don't see it (cause there is no real phisic bullet) and doesn't affect anything of the environment. How you simulate the push abck of the enemy? apply a controlled force to the axis "-z". In this way you have absolute control on your phisics and don't waste resources, and for the visual of the bullet a line trail is a good option. And if you need or if you want to use real bullets, colliders travel through the map, even if that's the case, use "OnTriggerEnter/Stay/Exit" not "OnCollision" and when the enemy detects that, apply a force backwards or whatever you want, goodluck!

    • @overphildev
      @overphildev  Рік тому +1

      The shake effect is a hit animation, I might turn it off but I was thinking a shake effect on hit would make it easy to see it connected

  • @RealGoOhm
    @RealGoOhm Рік тому +1

    I recently watched Tom Weilands video he did making a new pirate ship for his game. He also had issues with standard shaders in URP causing the exact same bug with shadows when shadow cascades were turned on. Hopefully the community comes up with a workaround if they already haven't. Keep up the good work man awesome stuff!

  • @bigdaddyradable
    @bigdaddyradable Рік тому +8

    As far as the tree shake goes, lots of games that have resource gathering will shake the screen AND the tree a little with impact. This layers the effect and makes it feel more dynamic. Loving the updates, stay awesome!

  • @MyNameIsntKurt
    @MyNameIsntKurt Рік тому +3

    Next add a short fence that enemies can break but they will still stop to break it. The scarecrow should shoot over it as well.

  • @LiquidMark
    @LiquidMark Рік тому +1

    for the terrain you have to lerp between the colors, :D amazing devlog cant' wait for more!

  • @SpikeStudio
    @SpikeStudio Рік тому +1

    All the improvements look great! The planter connecting to each other is my favorite addition :)

  • @tonytk2
    @tonytk2 Рік тому +1

    Absolutely killin it dude love the progress

  • @AverageWTPilot
    @AverageWTPilot Рік тому +2

    Tom Weiland fixed the weird shadow ring in one of his vids

  • @piyushguptaji402
    @piyushguptaji402 Рік тому +15

    hey, just a tip, there are tons of lighting settings in urp, you can tweak them to make your game look much nicer... like changing color space from gamma to lienear. brackey has a whole tutorial on this. oh and postprocessing in urp is super easy

    • @overphildev
      @overphildev  Рік тому +3

      Yeah I'm excited for all the new things I have access too now. It'll take some time to finalize the graphics but I'll definitely be tweaking them a ton

  • @grimgarde
    @grimgarde Рік тому +1

    3:55 "We fire the whole bullet. That's 65% more bullet per bullet!"
    4:38 For the showing the range, first thing I think of is having a key like ALT show all ranges.

  • @matthewmathis62
    @matthewmathis62 Рік тому +1

    Watching you make your own game makes me feel like I could make one, too.
    Looks good!
    And I like your video editing. Good job!

  • @hackticdev
    @hackticdev Рік тому +1

    Wow this is a big upgrade, nice work!

  • @Sloppy_Sloppy
    @Sloppy_Sloppy Рік тому +2

    I just love your vids. Please keep on going and don't give up! Looking forward to playing it:)

  • @ZenReal
    @ZenReal Рік тому +1

    Sick video! if I were you I would turn up the ambient to keep the cartoony feel and add a gradient to the skybox so the fog doesn't look weird!

  • @RuffTechStudio
    @RuffTechStudio Рік тому +1

    You have free particular effect available you could combine the sparking one with the smoke so when the scarecrow dies it will spawn that one vfx.
    Good job on the game and Devlog

  • @tomkc516
    @tomkc516 Рік тому +1

    Progress looks great!

  • @NeilRoy
    @NeilRoy Рік тому +7

    For trees in the distance, you could always just switch them to flat quads (billboards) that always face the player rather than simply having them vanish. That's what most games do (the ones in your view anyhow).

    • @overphildev
      @overphildev  Рік тому +3

      Hmm good idea

    • @NeilRoy
      @NeilRoy Рік тому +3

      @@overphildev From what i have seen, a lot of 3D games will have several levels of detail. So trees up close will have the most, then as they get further away, it switches to a low poly model, and then eventually to a billboard (flat quad consisting of two polygons) at extreme range where you can't notice the difference.
      Never used Unity myself, but thought about it.

    • @remus-alexandrusimion3439
      @remus-alexandrusimion3439 Рік тому +1

      @@NeilRoy You can also use Impostors which are basically billboards at an angle with a picture of the object (at said angle). They can look better than a classic LOD and still need less geometry BUT you need several textures (1 per quad face) so there's a tradeoff, i suppose.

    • @NeilRoy
      @NeilRoy Рік тому

      @@overphildev I don't know how Unity works, but I would check for how you can use instancing which allows you to duplicate an object and reuse it multiple times without much of a performance loss as it is all the same object so it doesn't take up extra video memory etc. Not sure how the game engine handles this, I programmed them from scratch in C myself. I had over 10,000 asteroids in a little space demo I created, which were basically the same object (just resized, rotated) and there was barely a performance hit.
      I know in some software like DAZ Studio you can create instances of an object when creating a scene which is MUCH faster. Instances are perfect for things like trees. You can have a couple different types of trees then just instance them to create a forest, maybe resize and rotate if allowed.

  • @1Chitus
    @1Chitus Рік тому

    I think that a really cool thing for an upgrade for the plant plots would be a system where you can craft sprinklers and they automatically snap to the center of the plot. You should also make a thing like the health bar, but it is blue, and the crops only grow when it has water.

  • @Pvydrow
    @Pvydrow Рік тому +1

    you could set it up so when far enough away from a tree, it would replace the 3d model with a png of a tree (that looks more or less like the tree you used) that has a billboard effect so it's always staring at the camera, it saves in processing because there isnt a model that needs to be rendered and it looks better than just pop in and out of existence

  • @devkumo
    @devkumo Рік тому +1

    Wonderful work from a fellow dev to another, keep it up friend! 💙

  • @dontwanttobeknown3611
    @dontwanttobeknown3611 Рік тому +1

    Yo lil feedback to this episode:
    First of all: your specific video style is amazing and I absolutely love watching these episodes
    For the content: literally everything you‘ve changed was great. The small combat changes are great and the new bullets are looking sick. The tree shaking animation is a great upgrade too. I also really like the new farm changes, so for this episode everthing was great
    Keep the great work up looking forward to your next videos ❤❤

  • @brohamhd8644
    @brohamhd8644 Рік тому +1

    Bro you are like my new favret youtuber like you’ve motivated me so much to work on my own survival game :)😊

  • @adeel336
    @adeel336 Рік тому +1

    this tree shake effect is perfect

  • @ceylonpod
    @ceylonpod Рік тому +1

    Omg it looks so much better now

  • @nater4327
    @nater4327 Рік тому +1

    i’m very very excited for this to drop

  • @marvs3880
    @marvs3880 Рік тому +1

    Good decisions! Nice vid. Looking forward to more :)

  • @ziro7616
    @ziro7616 Рік тому +2

    Great vid as always!
    Perhaps for the scarecrow range, it only shows while placing structures, since those are what it's presumably there to protect. It also makes spacing out other scarecrows much easier when you have more than 2 scarecrows to deal with.
    Have a great day!

  • @an9l1c1sm6
    @an9l1c1sm6 Рік тому +10

    The tree shake with the rotation thing looks really good compared to the other options.
    When plotting down the scarecrow, perhaps make a small animation that slams it down from 0,5 meters height, and have the models mesh dynamically shrink in the y-axis? and extend back again, to simulate a cartoonish wobbly effect? I think you can use some curves for it.. Can't remember what they are called :P But if you combine that with some impact/dust particles then it would just look sooo cool and satisfying when plopping them down. :)

    • @overphildev
      @overphildev  Рік тому +1

      That's a good idea

    • @an9l1c1sm6
      @an9l1c1sm6 Рік тому +2

      @@overphildev Coming to think of it, it would probably look way cooler if you rigged it and animated the impact on the model itself instead of just shrinking and stretching, then you also have it rigged for other purposes ;)
      But hey good luck, I enjoyed watching it. It motivates me to get back to my project. ;)

  • @AKNightHawk
    @AKNightHawk Рік тому +1

    I feel like your game looked better with the standard pipeline honestly. And the seeing through your grass if you wasn't using a custom shader you could have changed it to either fade or cutout to fix that. The standard shader was prob set to transparent. But your game looks quite fun indeed. :) Also the pop in and out with the trees could be fixed with lods. You'd have to make lod levels for your trees but it would make your game run smoother. And could make them not pop in like that. Just some tips from a old level designer. :)

  • @Hyp3rFX
    @Hyp3rFX Рік тому +1

    Nice video! The grass looks better imo. I didn't notice that the whole cartridge or whatever its called doesn't shoot all together lol. Looks way better with the lines tho. Nice improvements this video.

  • @LocalTrashyt
    @LocalTrashyt Рік тому +11

    I think the pop effect should be the objects growing in size instead of them just appearing out of no where.

    • @AngryApple
      @AngryApple Рік тому +1

      or use the URP Dither method and Alpha Clip to fade them out like in alot of Nintendo games.
      Also the Dither Alpha Clip is a nice way to add transparency without using Alpha Blend calculations on the GPU

  • @barkmober
    @barkmober Рік тому +7

    This was actually a really good decision, you can take your game to the next level using shaders and stuff. It's also good for performence.

  • @z0mbies_add1ct
    @z0mbies_add1ct Рік тому +1

    The game looks much better!
    Your doing great👍

  • @becoldandjustforyou
    @becoldandjustforyou Рік тому +2

    Maybe you could add farming tools to melee with, and some npcs that you could interact with somehow

  • @ttweIve
    @ttweIve Рік тому +1

    I love all your videos!

  • @fakiAZer
    @fakiAZer Рік тому +3

    i suggest you to add a dirt normal map/height map to the crop plot dirt texture

  • @awesome.rats159
    @awesome.rats159 Рік тому +2

    I think the scarecrow range would look better if it was a green circle projected onto the terrain, kinda like the placement ghost but 2d

  • @iliveunderarock8070
    @iliveunderarock8070 Рік тому +3

    I think it would be cool for some sort of upgrade system where you could upgrade certain abilities, maybe it would work like there's some kind of upgrade station you have to go to.

    • @overphildev
      @overphildev  Рік тому +2

      I have an idea I think you'll like.. just gotta wait a little

  • @Vryformal
    @Vryformal Рік тому +2

    Yay I have some ideas for the graphics so maybe add some falling leaves in the day time and wind streaks and at night fireflys and maybe some rain cycles also some ambient occlusion could be nice but make it toggle able so ppl with slower computers can still play good luck

  • @JohnAmanar
    @JohnAmanar Рік тому +1

    Great video! :) I like the game.

  • @LemurG
    @LemurG Рік тому +2

    1:54 this could totally be your intro! It’s short and it’s coffee like in your icon and name!

    • @overphildev
      @overphildev  Рік тому +1

      That's interesting. I don't know if people would want to see that every time, but I will consider it

  • @crocfacePlaugueDoctor
    @crocfacePlaugueDoctor Рік тому

    I like the idea of a Deer Scare like object where it makes enemies less likely to come to the area.

  • @kolby4537
    @kolby4537 Рік тому +1

    It would be awesome if the water was transparent and fish were in there. I am sure you are planning on adding fishing in the future, but some rendered fish may help bring the world to life more.

    • @overphildev
      @overphildev  Рік тому

      Yeah the water shader needs an upgrade. I was looking at that for this update but didn't get to it

  • @mcbattery856
    @mcbattery856 Рік тому +1

    I'd love to see a grid like system for placing down objects

  • @Yasokiii
    @Yasokiii Рік тому +1

    If u still plan to have carrots I'd strongly recommend giving them a few leaves when their in the planter as irl the only real visible part of a growing one is just like a bunch of leaves

  • @zORg_alex
    @zORg_alex Рік тому +1

    Good work dude

  • @smiles9882
    @smiles9882 Рік тому +1

    Ooh love the shadowless grass

  • @failtolawl
    @failtolawl Рік тому

    the hard lines between the terrain textures looks good to me

  • @YungRagz
    @YungRagz Рік тому +1

    You should add a breaking effect to the trees. So when you chop trees with an axe a crack texture appears and gets bigger the closer the tree is to breaking.

  • @deadboi8989
    @deadboi8989 Рік тому +1

    Saw a comment about a wrench tool, the wrench could also move/rotate things that are already placed

    • @overphildev
      @overphildev  Рік тому +1

      I think I'm going to make that just a default thing you can do just for quality of life

    • @deadboi8989
      @deadboi8989 Рік тому +1

      @@overphildev I was thinking wrench would be default tool since you’re a robot it could like come out of your arm or something. Love the way the game is shaping up tho you have some pretty killer ideas and I’m confident in ur abilities!! :))

  • @ShadowRaptor42
    @ShadowRaptor42 Рік тому +1

    4:00 I think the turrets in portal also fire the whole bullet

  • @dot32
    @dot32 Рік тому +2

    i think shadowless grass actually looks so much better

  • @thereisnospace
    @thereisnospace Рік тому +2

    Unity didn't make shader writing complex on purpose it is something that happened because of support for newer direct X versions. if you don't want a game that looks like 2005 you have to do it. dx9 is that old.

  • @shortyboy9973
    @shortyboy9973 Рік тому +1

    great update its looking great

  • @KomodoBitGames
    @KomodoBitGames Рік тому

    The formula for polish is
    1. Multi layered sound design
    2. Camera shakes
    3.multi layered particle effects
    4. Multi layered decal/environment response
    5. Impact stuff
    6. Animations for each.
    Whenever I need to make something feel good I just run through that list and it always ends up feeling really good

  • @Bemiscript
    @Bemiscript Рік тому +2

    why dont you make it so it shows the scarecrows range with a button in the inventory

  • @sharp14x
    @sharp14x Рік тому +1

    Add a random offset to the position of each plot in the planter.

  • @Vryformal
    @Vryformal Рік тому +2

    Amazing!

  • @JovenDecarne
    @JovenDecarne Рік тому +1

    You should make the shader that shows the scarecrows attack area barely visible if you are close to it, and completely visible if you are looking directly at it.

  • @dundee7440
    @dundee7440 Рік тому +1

    change the bullet image on the scarecrow to three bullets so it doesnt look like a lock

  • @Gurem
    @Gurem Рік тому +6

    The rings appear because the grass on the terrain is too dense. Go to terrain settings and increase the detail slider(forgot the proper name but it's near the terrain size) it's the low value one with a value of 128/64/etc. It also controls how blocky your terrain is.

  • @Brosquini
    @Brosquini Рік тому +1

    mate you gotta change the colour palette for the grass, make it way more green and blue

  • @dogmanwalle5553
    @dogmanwalle5553 Рік тому

    I think would be cool if you could implement an upgrade feature for the scare crows. So like the range, damage, etc could increase.

  • @nacho37909
    @nacho37909 Рік тому +1

    Wow, the game has improved so much this episode. I can’t wait to see what is next in store.

  • @starplatinum3305
    @starplatinum3305 Рік тому +1

    The video is good (but its still short af 😑), the urp problem is the thing i may be learned from this video (thanks man), and do u use any material to the grass (or its just codes ?), If its material then its easy fix, and i think u should change the scarecrow a lil bit. The bullet contains 2 things (that i dont even remember their name) (call it "the tip" and the "shell" sorry), u shoot the tip, the gun will throw the shell out, yeah just do it to the scarecrow (sorry for my english)

  • @DarkGamerStudios
    @DarkGamerStudios Рік тому +1

    Later game it would be cool to automate things like farming with robotic functions.

  • @YungRagz
    @YungRagz Рік тому

    You should add a dead face to the scarecrow that indicates when the scarecrow has died. It could be a skull or x eyes or something

  • @KasperDevUnity
    @KasperDevUnity Рік тому +1

    If you want more performance try to add Occlusion.

  • @sabuthebadguy
    @sabuthebadguy Рік тому +1

    Waiting for a demo to try 😉

  • @CalebCaz
    @CalebCaz Рік тому

    Will there be dialogue in your new game and if so may we submit voiceover demos to you for future consideration?

  • @kingquarck
    @kingquarck Рік тому +1

    u should add a minimap it would be cool

  • @mrcactus5680
    @mrcactus5680 Рік тому +1

    Looks cool! It may be just me but isnt it a bit darker with URP i really did like the bright atmosphere, it may be just me

    • @overphildev
      @overphildev  Рік тому

      Yeah it does look darker now. I'm sure I'm going to continue tweaking it a ton

  • @ChazzBurger
    @ChazzBurger Рік тому +1

    This shadow ring error with the terrain
    i actually had this exact same thing about a month ago when converting my terrain shader to urp as well
    i havent found a fix for it but it you do find a fix would you please give us some helpful tips or include how you did when you do? (if you ever do)
    thanks :)

  • @GGOOSEO
    @GGOOSEO Рік тому +1

    go to da universal pipeline thingy and click add renderer feature or smth like that then click the second option i tink it will look better

    • @overphildev
      @overphildev  Рік тому

      Interesting I'll have to try it out

    • @GGOOSEO
      @GGOOSEO Рік тому

      @@overphildev you could also add post processing in manager or smth by searching "Volume" on the components tab & make sure its global and u have it enabled in camera

  • @azieg9ygeb
    @azieg9ygeb Рік тому +1

    I feel like your game needs to be a tad brighter. Other than that, it looks great!

  • @BNnnen
    @BNnnen Рік тому +1

    i really think you should get rid of the red hitbox thingy when you punch something. it just looks out of place

    • @overphildev
      @overphildev  Рік тому

      Yeah it's just a debugging thing for now, I'm not going to keep it like that

  • @brohamhd8644
    @brohamhd8644 Рік тому

    Can you make a tutorial on how to add a punching animation to unity third person controller starter assets cus im stuck and no one made a tutorial

  • @Kanookoochn
    @Kanookoochn Рік тому +1

    Well from my experience using urp in android(from template) make my game more laggy,so i still using legacy Pipeline,is there any tweaks for urp in mobile?

  • @bestgamedev
    @bestgamedev Рік тому +2

    Nice

  • @uaantonidiusss.7587
    @uaantonidiusss.7587 Рік тому +1

    Carrot looks like a corndog

  • @peileed
    @peileed Рік тому +1

    1:52 the amount of time bgolus saved my ass, I was really happy to see him here

    • @overphildev
      @overphildev  Рік тому

      He saved me on this one for sure. It was funny seeing him on every thread I went to

  • @ethanjohnston133
    @ethanjohnston133 Рік тому +1

    Hey, I've been following your devlog series since ep 1 and IIRC you used Sebastian Lague's random terrain generator tutorial right? If so you can fix that terrain blending issue you mentioned at 4:51 by blending between two textures by following this tutorial (ua-cam.com/video/uJSxqr3a0cA/v-deo.html) or at least it was the one I used since I used URP while following that series as well. Also like other people motioned I highly recommend using billboards instead of deleting the trees from view completely at a certain distance. Hope this helps!

  • @ttk519
    @ttk519 Рік тому +1

    I gave up momentarily of doing games on unity because I couldn't code an inventory system

  • @teaboy9614
    @teaboy9614 Рік тому +1

    Garden reminds me of ThinMatrix's farming game, maybe you can learn something useful there (if not already haha)

  • @operationfrogurt
    @operationfrogurt Рік тому +1

    What tool did you use to place the grass? I've tried a few but I can't seem to tune them to the density I liked

    • @overphildev
      @overphildev  Рік тому +2

      I used raycasts to randomly generate them across the terrain with an input for the number of objects to spawn

    • @operationfrogurt
      @operationfrogurt Рік тому +1

      @@overphildev Ahhh, thanks for the tip. I'll probably have to do something similar to get it just how I want. Nothing I tried gets it just quiiiiite the way I envision it

  • @jakeemmamaughan4474
    @jakeemmamaughan4474 Рік тому

    Hello, I remember a video of yours where you mentioned your full time job is programming. Well I would love to learn more about the professional practice, convention, and workflow in this field, and would love an opportunity to pay for it in work done for you; tedious refactoring, debugging, etc. Thank you in advance!

  • @warsin8641
    @warsin8641 Рік тому

    grass was such a rabbit hole for me

  • @uaantonidiusss.7587
    @uaantonidiusss.7587 Рік тому

    What is your estimated time of release? You could drown in an infinite "features"-loop

  • @Vthisgoat
    @Vthisgoat Рік тому +1

    You should add a ridable tractor, and if you want add some storage or weapons on it.

  • @stickguy9109
    @stickguy9109 Рік тому +1

    Surprising to see I have the same problems with someone. My grass also has that transparency weirdness where you can see silhouette of objects through it. Did you find out what's causing it?

    • @overphildev
      @overphildev  Рік тому

      It's something to do with the order things are rendered in the default renderer. Switching to urp fixed it for me. The forum post I showed at 1:48 has a few other solutions if you didn't want to do that though.

    • @stickguy9109
      @stickguy9109 Рік тому +1

      @@overphildev Well I am not gonna switch to urp just to fix a minor issue. If the other solution is easier I am gonna do that otherwise I'll just ignore it no one will probably notice this anyway.
      Also this video is very relatable. Writing shaders is very complicated in urp and there's basically no documentation to help. It's like they want us to use shader graph only and I had the same shader as you do (the Sebastian Lague terrain shader) and I couldn't get it working because no arrays in shader graph. I really wanna use urp cause it has cool features like vfx graph for example and it looks better overall but this one thing along with few other things keep me from using it. I prefer writing shaders more

  • @that_guy5341
    @that_guy5341 Рік тому +1

    the carrot looks like a pepper in the garden, and do u use LOD???(Level Of Detail)

    • @overphildev
      @overphildev  Рік тому

      Yeah I have lod set up for the trees and rocks right now. Should probably do it for more things too

    • @that_guy5341
      @that_guy5341 Рік тому

      @@overphildev good Idea