Search Unity

Simulation Another walking simulator

Discussion in 'Projects In Progress' started by CoastKid, Nov 3, 2022.

  1. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Hi folks!
    Just another nature walking simulator here.
    Do it for myself in my spare time to relax and wander around.
    I haven't even come up with a name yet.

    Screens:
    fl_Screenshot_02.png

    fl_Screenshot_01.png

    Video (quality is meh):
     
  2. Gawidev

    Gawidev

    Joined:
    Jan 28, 2021
    Posts:
    8
    Gorgeous! Out of curiosity, are you willing to give any info as to what resources you used for the elements of this scene?
    Either way, keep up the good work :)
     
    CoastKid likes this.
  3. PutridEx

    PutridEx

    Joined:
    Feb 3, 2021
    Posts:
    1,136
    How do you have sky occlusion? Are you using something like occlusion probes, similar to what unity created for the Forest HDRP demo? Also, what render pipeline? Looks very impressive!
    Honestly gives me kingdom come deliverance vibes, which is big considering that game has some of the nicest looking vegetation and lighting! This is one the best forest scenes I've seen in a game.

    Tell us all the secrets! :D
     
    Last edited: Nov 3, 2022
    JamesArndt and CoastKid like this.
  4. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Glad you like it guys!
    Some of grass textures are from "Realistic grass pack" from Unity Asset Store. Few textures from Quixel and CG Textures, the rest are homemade textures and models.

    For sky occlusion I made shadow-accumulative volumetric cascades, with 3-component directional data per voxel, it works as custom injection into Built-in RP.
     
    Neto_Kokku and mgear like this.
  5. AlejandroDaJ

    AlejandroDaJ

    Joined:
    May 30, 2014
    Posts:
    5
    Out of curiosity, how did you do the paths? Are they terrain textures painted on a very high resolution splatmap or splines?

    Anyway, this looks fantastic, it's one of the best and most natural scenes I've ever seen in Unity!
     
    CoastKid likes this.
  6. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Paths are 2D SDFs produced by shader code. Painted textures was not an option, resolution would be too high indeed.
     
    koirat and AlejandroDaJ like this.
  7. GentlemanCorpse

    GentlemanCorpse

    Joined:
    Dec 26, 2022
    Posts:
    1
    Oh dear, I wanted to make myself something like this and now I see it here in perfection.. :D I think I still try to do my version, but this looks really beautiful!
     
    CoastKid likes this.
  8. khos

    khos

    Joined:
    May 10, 2016
    Posts:
    1,490
    Would be cool to try this in a demo build or so! Looks fantastic, how did you achieve such quality and so on, wow!
     
    CoastKid likes this.
  9. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thanks a lot guys, it's very encouraging!
    I tried to get better quality by using custom written material shaders, and custom light pass.
    If there is anything specific you want to know, I can try to explain better.
    I hope that when I finish with the base set of planned features, I'll make a tech-demo build.
     
    khos likes this.
  10. Kreshi

    Kreshi

    Joined:
    Jan 12, 2015
    Posts:
    446
    are you evaluating 2D SDFs in your terrain rendering shader for deciding which texture to sample?
    You added a custom light pass to the build-in renderpipeline? Since the Build-in renderpipeline is not that flexible I guess you added some kind of voxel-based light/shadow accumulation to achieve the bright and dark areas within the forrest right? Whatever you did, it looks stunning! Keep up the good work this is simply amazing!
     
    CoastKid likes this.
  11. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thanks a lot, Kreshi!
    Yes, you are right about SDFs, I do exactly that.
    Regarding the render pipeline, I decided to use the built-in deferred pipeline because of its performance and feature set.
    It is indeed less flexible than URP or HDRP, but it is good enough for command buffer injections.
    It could be that I just didn't dig deep enough, but I always had troubles of different kinds with URP and HDRP.
    With built-in RP everything "just works" and is "fast."
    The voxel-based light and shadow accumulation guess is also right.
    I do also use multiple volumes to accumulate light data, so it's a kind of cascading solution to cover a bigger distance (approx. 7 km from the player position), and each volume updates in runtime when player position or sunlight angle deviation reach certain thresholds.
     
    Kreshi likes this.
  12. Kreshi

    Kreshi

    Joined:
    Jan 12, 2015
    Posts:
    446
    Thanks for the explanation!
    From a "getting things done" perspective, your approach of choosing the well documented build-in pipeline is absolutely understandable and valid :).
    Do you use trilinear interpolation for smoothing the voxel data or blur or do you use both?
     
    CoastKid likes this.
  13. khos

    khos

    Joined:
    May 10, 2016
    Posts:
    1,490
    I wonder if adding some life, eg animals, insects would be good, not much just some.
     
    CoastKid likes this.
  14. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Documentation is the key to ease pain, for sure:).
    Voxel data is sampled in the shader as a full-volume 3D texture with standard trilinear filtering.
    Light accumulation is processed for each texel in volume, so there is no need to have light probes since the whole space around is filled with light data.
    I was thinking about adding flying insects and flocks of birds. But I'm not sure about other animal types yet.
     
  15. khos

    khos

    Joined:
    May 10, 2016
    Posts:
    1,490
    Also, some flowing water/river, there are assets that can simulate a real flowing water/river. Or Rain/weather changes.
     
    CoastKid likes this.
  16. impheris

    impheris

    Joined:
    Dec 30, 2009
    Posts:
    1,667
    that is a good idea, but when i saw the video for me it felt like it was alive, now that i'm thinking about idk why was that, maybe the sun effect, the lighting and the wind, in fact i have to say i learn something watching your video
     
    CoastKid likes this.
  17. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Dynamic weather is something I plan to add together with day/night cycle.
    But river system is not part of short-term plans. Since world creation happens in runtime, building riverbeds on the fly would be a challenge, I have some ideas in mind but it would need more research.

    Thank you, impheris, that's nice to hear!
     
  18. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Decided to replace permanent 2D UI compass with an equipable3D compass.
    3dCompass.png
     
  19. Kasperrr

    Kasperrr

    Joined:
    Feb 23, 2019
    Posts:
    13
    Amazing job!, definitely would love to see some tech-details with all resources you were using to learn this
     
    CoastKid likes this.
  20. SammmZ

    SammmZ

    Joined:
    Aug 13, 2014
    Posts:
    174
    That's brilliant!
     
    CoastKid likes this.
  21. chingwa

    chingwa

    Joined:
    Dec 4, 2009
    Posts:
    3,790
    This is absolutely beautiful. I think it might be the best near/mid-field landscape I've seen in any game. The ambient lighting/occlusion solution you've developed really sells it. Keep going! :D
     
    CoastKid likes this.
  22. vintage-retro-indie_78

    vintage-retro-indie_78

    Joined:
    Mar 4, 2023
    Posts:
    285
    superb, splendid, also very amazing . . .

    it's a 10 / 10 video - game . . . .
     
    CoastKid likes this.
  23. vintage-retro-indie_78

    vintage-retro-indie_78

    Joined:
    Mar 4, 2023
    Posts:
    285
    have to say, this is almost a movie, or could be on also tv . . . .
     
    CoastKid likes this.
  24. unikum

    unikum

    Joined:
    Oct 14, 2009
    Posts:
    58
    Looks amazing. What is it that you do to have nice forests far away? The distance shadows etc, do you do custom things to make it look so good? Usually distant trees/forests looks pretty bad in Unity but you nailed it.
     
    CoastKid likes this.
  25. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thank you for your kind words,
    it is a custom sprite baking and rendering solution I made for my trees and other landscape objects.
    Sprites also have Z-Depth texture component, helps to achieve better-looking SSAO, screen space sun shadows and shadow maps on tree sprites.
     
  26. impheris

    impheris

    Joined:
    Dec 30, 2009
    Posts:
    1,667
    Wait... are you telling me those guys i put arrows on, are sprites?
     

    Attached Files:

    CoastKid likes this.
  27. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Yes, they are sprites.
     
  28. impheris

    impheris

    Joined:
    Dec 30, 2009
    Posts:
    1,667
    WTF! ok whatever you did, your custom things... is awesome
     
    CoastKid likes this.
  29. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Added dynamic day-night cycle and clear-overcast sky system
    Forest_Day_01.png Forest_Day_02.png Forest_Overcast_01.png Lake_Sunset_01.png Lake_Dusk_01.png
     
    Last edited: Oct 15, 2023
  30. chingwa

    chingwa

    Joined:
    Dec 4, 2009
    Posts:
    3,790
    It's beautiful.
     
    Kreshi, PutridEx and CoastKid like this.
  31. impheris

    impheris

    Joined:
    Dec 30, 2009
    Posts:
    1,667
    this is, maybe the best forest i've seen on unit, good work
     
    CoastKid likes this.
  32. AcidArrow

    AcidArrow

    Joined:
    May 20, 2010
    Posts:
    11,791
    Looks great, congrats.
     
    CoastKid likes this.
  33. spaceman8

    spaceman8

    Joined:
    Jan 6, 2017
    Posts:
    40
    just awesome!
     
    CoastKid likes this.
  34. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thanks for the support and encouragement, guys!
     
  35. CaptCanada

    CaptCanada

    Joined:
    Feb 3, 2013
    Posts:
    272
    Encouragement!
     
    CoastKid likes this.
  36. Kasperrr

    Kasperrr

    Joined:
    Feb 23, 2019
    Posts:
    13
    Amazing! Do you have any other socials to follow your work?
     
    CoastKid likes this.
  37. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thank you!
    I do not have any socials to follow, except silly YT channel with one video:D
    What platform would you use for such content?
     
  38. Kasperrr

    Kasperrr

    Joined:
    Feb 23, 2019
    Posts:
    13
    Twitter works best for me, probably posting this on Unity Forums on Reddit might work well too
     
    CoastKid likes this.
  39. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Did some landscape experiments:
    Karst test_01s.png
    Karst_test_02s.png
    Karst_test_03s.png
    Karst_test_04s.png
     
    sqallpl, mgear, chingwa and 5 others like this.
  40. zulo3d

    zulo3d

    Joined:
    Feb 18, 2023
    Posts:
    1,000
    "So far nothing remarkable."

    I'm guessing you have something planned!.

    I'd like to see some strange surreal props dotted around this beautiful landscape. And maybe add some moss and vines to them so they look settled. :)
     
    CoastKid likes this.
  41. runevision

    runevision

    Joined:
    Nov 28, 2007
    Posts:
    1,892
    This looks absolutely fantastic. Have you had any considerations of making your tech available for others (whether paid or not)?

    In my book, there's not any available demo projects (paid or free) for Unity that pulls off dense forest rendered far into the distance, let alone as beautifully done as this project here. (I wrote a thread about that here.)

    I'm working on my own procedural terrain and while I'm happy with having figured out how to procedurally plan paths in the terrain with switchbacks and everything, I'm struggling with the performance of the trees, and with the fact that there's no good proven demo projects to study and use as reference.

    Is your terrain manually designed at edit time? And if so, do they rely on that (e.g. for baking any data) or could everything be generated at runtime too?

    Edit: Oh, I see you said "Since world creation happens in runtime, building riverbeds on the fly would be a challenge, I have some ideas in mind but it would need more research." So it sounds like this is all procedurally generated too, that's even more impressive. I've been working on creating procedural water streams myself (see here, here) with some success. My art style is not as high fidelity, but if you if you think it might be of use to you, I'd be happy to be in touch and share details.
     
    Last edited: Dec 10, 2023
    CoastKid and artyom-zuev like this.
  42. artyom-zuev

    artyom-zuev

    Joined:
    Feb 15, 2018
    Posts:
    6
    I'd like to echo what everyone said, this is an absolutely stunning project. Never seen anything approaching this on Unity before. I'd love to know how this was put together and whether you have any plans to release this commercially. Keep up the great work!
     
    CoastKid likes this.
  43. CoastKid

    CoastKid

    Joined:
    Jan 8, 2013
    Posts:
    64
    Thanks a lot for the kind words guys, glad to hear you like it!
    There is no plans to put tech on Asset Store or public git, yet at least.
    Taking some brake from the project for now, feel very demotivated by recent Unity business decisions.
    Thinking on changing engine and find a way to finish it somehow.
     
  44. chingwa

    chingwa

    Joined:
    Dec 4, 2009
    Posts:
    3,790
    Yes, many of us do. It's very demotivating to put time and effort wrestling with a game engine to get it to do close to what you want only to have the floor fall out under your feet. I've been exploring Unigine the last few months, but it has it's strong and weak points just like any engine.
     
    CoastKid likes this.
  45. petercoleman

    petercoleman

    Joined:
    Feb 21, 2016
    Posts:
    477
    Yes.

    Stunning, Awesome, 10/10 :)

    Regards

    Peter
     
    CoastKid likes this.
  46. Agrophobe

    Agrophobe

    Joined:
    May 22, 2017
    Posts:
    1
    I'm hooked
     
    CoastKid likes this.
  47. khos

    khos

    Joined:
    May 10, 2016
    Posts:
    1,490
    I bet making this was like a walk in the park for you ha ha :) Only a silly joke, apologies
     
    CoastKid likes this.
  48. Enzo36t

    Enzo36t

    Joined:
    Aug 30, 2020
    Posts:
    63
    Amazing :)
     
    CoastKid likes this.