I Finally Upgrade my Unity Project

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 พ.ย. 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.

  • @carmygames
    @carmygames ปีที่แล้ว +5

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

  • @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.

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

  • @AverageWTPilot
    @AverageWTPilot ปีที่แล้ว +2

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

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

  • @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.

    • @activediamond7894
      @activediamond7894 ปีที่แล้ว +1

      Love the Buildcraft vibes with this one!

  • @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.

  • @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.

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

  • @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.

  • @SpikeStudio
    @SpikeStudio ปีที่แล้ว +1

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

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

  • @tonytk2
    @tonytk2 ปีที่แล้ว +1

    Absolutely killin it dude love the progress

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

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

  • @hackticdev
    @hackticdev ปีที่แล้ว +1

    Wow this is a big upgrade, nice work!

  • @devkumo
    @devkumo ปีที่แล้ว +1

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

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

  • @LiquidMark
    @LiquidMark ปีที่แล้ว +1

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

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

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

  • @tomkc516
    @tomkc516 ปีที่แล้ว +1

    Progress looks great!

  • @Sloppy_Sloppy
    @Sloppy_Sloppy ปีที่แล้ว +2

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

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

  • @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 :)😊

  • @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.

  • @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 ❤❤

  • @ruffedout4730
    @ruffedout4730 ปีที่แล้ว +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

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

  • @marvs3880
    @marvs3880 ปีที่แล้ว +1

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

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

  • @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. :)

  • @z0mbies_add1ct
    @z0mbies_add1ct ปีที่แล้ว +1

    The game looks much better!
    Your doing great👍

  • @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.

  • @ceylonpod
    @ceylonpod ปีที่แล้ว +1

    Omg it looks so much better now

  • @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.

  • @fakiAZer
    @fakiAZer ปีที่แล้ว +3

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

  • @adeel336
    @adeel336 ปีที่แล้ว +1

    this tree shake effect is perfect

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

  • @ttweIve
    @ttweIve ปีที่แล้ว +1

    I love all your videos!

  • @becoldandjustforyou
    @becoldandjustforyou ปีที่แล้ว +2

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

  • @nater4327
    @nater4327 ปีที่แล้ว +1

    i’m very very excited for this to drop

    • @nater4327
      @nater4327 ปีที่แล้ว

      i will be buying

    • @overphildev
      @overphildev  ปีที่แล้ว

      Hopefully I can get a demo out soon

  • @JohnAmanar
    @JohnAmanar ปีที่แล้ว +1

    Great video! :) I like the game.

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

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

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

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

  • @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.

  • @crocfacePlaugueDoctor
    @crocfacePlaugueDoctor ปีที่แล้ว

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

  • @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.

  • @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. ;)

  • @smiles9882
    @smiles9882 ปีที่แล้ว +1

    Ooh love the shadowless grass

  • @ShadowRaptor42
    @ShadowRaptor42 ปีที่แล้ว +1

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

  • @mcbattery856
    @mcbattery856 ปีที่แล้ว +1

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

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

  • @dot32
    @dot32 ปีที่แล้ว +2

    i think shadowless grass actually looks so much better

  • @shortyboy9973
    @shortyboy9973 ปีที่แล้ว +1

    great update its looking great

  • @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!! :))

  • @Vryformal
    @Vryformal ปีที่แล้ว +2

    Amazing!

  • @dundee7440
    @dundee7440 ปีที่แล้ว +1

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

  • @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.

  • @Brosquini
    @Brosquini ปีที่แล้ว +1

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

  • @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.

  • @sharp14x
    @sharp14x ปีที่แล้ว +1

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

  • @failtolawl
    @failtolawl ปีที่แล้ว

    the hard lines between the terrain textures looks good to me

  • @DarkGamerStudios
    @DarkGamerStudios ปีที่แล้ว +1

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

  • @bestgamedev
    @bestgamedev ปีที่แล้ว +2

    Nice

  • @KasperDevUnity
    @KasperDevUnity ปีที่แล้ว +1

    If you want more performance try to add Occlusion.

  • @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)

  • @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.

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

  • @uaantonidiusss.7587
    @uaantonidiusss.7587 ปีที่แล้ว +1

    Carrot looks like a corndog

  • @azieg9ygeb
    @azieg9ygeb ปีที่แล้ว +1

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

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

  • @kingquarck
    @kingquarck ปีที่แล้ว +1

    u should add a minimap it would be cool

  • @teaboy9614
    @teaboy9614 ปีที่แล้ว +1

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

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

  • @Bemiscript
    @Bemiscript ปีที่แล้ว +2

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

  • @Vthisgoat
    @Vthisgoat ปีที่แล้ว +1

    You should add a ridable tractor, and if you want add some storage or weapons on 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!

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

  • @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?

  • @CircuzFunPants
    @CircuzFunPants ปีที่แล้ว +1

    I suggest not caring about any comments about how the game looks. It's fine. Now make the game FUN. See if there is anything to your idea before you sink a hundred hours into making it look good.

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

  • @warsin8641
    @warsin8641 ปีที่แล้ว

    grass was such a rabbit hole for me

  • @ttk519
    @ttk519 ปีที่แล้ว +1

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

    • @overphildev
      @overphildev  ปีที่แล้ว

      Yeah inventory systems are rough

  • @foreignsleet
    @foreignsleet ปีที่แล้ว

    that carrot lookin interesting ;)

  • @EnchantedComputers
    @EnchantedComputers ปีที่แล้ว

    "I don't know about it yet, but it's GROWING on me." 😐

  • @staplerproductions7293
    @staplerproductions7293 ปีที่แล้ว +1

    are you considering beta testers because,
    *slowly raises hand*
    I'm here if you need one-

  • @AlexLusth
    @AlexLusth ปีที่แล้ว +5

    you should really add a blue tint to the distance fog so it matches the sky, unless your going for a foggy vibe intentionally of course.

    • @overphildev
      @overphildev  ปีที่แล้ว

      Good point that's an easy fix

  • @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?

  • @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 :)

  • @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 (th-cam.com/video/uJSxqr3a0cA/w-d-xo.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!

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