GWater - Filling the entire bigcity canal with water

Поділитися
Вставка
  • Опубліковано 14 січ 2022
  • Particle radius is 100, which is much more than the default maximum, it still works I guess
    oh yeah I updated the particle material too, its circular instead of square now
    should update ~feb 1st

КОМЕНТАРІ • 358

  • @militaristica
    @militaristica 2 роки тому +1899

    this looks really good, all this really needs is a small amount of opaqueness added to the water so, if stacked up on eachother, it progressively gets harder and harder to see through

    • @FlooferLand
      @FlooferLand 2 роки тому +201

      Agreed, and also making some form of system to dry out water particles that are in small groups (so the tiny bits of water that overflowed from the canal onto the ground wouldn't just stay there)

    • @Shot666
      @Shot666 2 роки тому +45

      @@FlooferLand Those are actually a pretty good point and feedback!. hope the creator see ths

    • @Meetric1
      @Meetric1  2 роки тому +510

      refract shader sadly doesnt have opaqueness, although an evaporation system does sound like a good idea and might be possible

    • @Shot666
      @Shot666 2 роки тому +29

      @@Meetric1 It will maybe save som framerate too

    • @FiksIIanzO
      @FiksIIanzO 2 роки тому +4

      @@Meetric1 Can't you stack multiple shaders?

  • @TheRealUnholyCat
    @TheRealUnholyCat 2 роки тому +1289

    "dude why am i lagging?"
    meanwhile my friend:

    • @0turi
      @0turi 2 роки тому +7

      lmao true

    • @JustAnAverageGuy5731
      @JustAnAverageGuy5731 2 роки тому +6

      TRUUUE

    • @JustMemzz
      @JustMemzz 2 роки тому +38

      "Ur pc is trash because you hosting this server"

    • @stevy2
      @stevy2 2 роки тому +9

      A tale as old as Gmod.

  • @nothacu4154
    @nothacu4154 2 роки тому +247

    one day we will have enough processing power to render water in a 10+ year old game

  • @mrcomp1971
    @mrcomp1971 2 роки тому +245

    The water is coming back to gm_bigcity. Nature is healing.

  • @samuels1123
    @samuels1123 2 роки тому +606

    tried this, unfortunately there are significant leak issues at the geometry near those 'tunnel' things in the canals

    • @Chipmunkboy
      @Chipmunkboy 2 роки тому +27

      Not sure fir the tunnels are made of this, but this mod currently doesn't support Displacements. (Used to easily create smooth terrain/smooth texture transitions.)

  • @savchilla2464
    @savchilla2464 2 роки тому +9

    0:38
    -Hey! No full-auto in building!
    -It's not full-auto.
    -It's not full-auto?
    -No, this is: 0:41
    -Damn bro, Alright..

  • @hongkongatron
    @hongkongatron 2 роки тому +3

    this is literally everything ive ever wanted from gmod, its so gorgeous and well done

  • @seamus9232
    @seamus9232 2 роки тому +112

    To fix the underwater particle glitching.
    Check if the number of particles around the headbone is above a certain constant, if it is, then the player's head is most likely underwater.
    Stop drawing the water, and instead just draw the underwater overlay and allow swimming.

    • @redi4ka951
      @redi4ka951 2 роки тому +4

      Problem is that there's different sizes of water particles.

    • @nymphia21
      @nymphia21 2 роки тому

      @@redi4ka951 make the amount needed depend on the size of the particles

    • @redi4ka951
      @redi4ka951 2 роки тому +1

      @@nymphia21 what if there is 2 or more differently sized particles in close proximity? How do you calculate that?

    • @JacobKinsley
      @JacobKinsley 2 роки тому

      What if the player has a different size?

    • @zzzowoey
      @zzzowoey 2 роки тому

      @@redi4ka951 in the likely scenario that the particle size is a cvar this should presumably never be the case, but that depends on whether or not the particle size for existing particles is updated when the setting is updated

  • @foxzo9356
    @foxzo9356 2 роки тому +132

    using a single mesh for water and having vertices have water physics might be a more realistic and efficient way to do water physics (assuming gmod supports dynamic mesh tweaks)
    if you spawned a cube of water and had it split down the middle you'd be able to split the mesh into two new water puddles
    this is all assuming gmod even allows you to do dynamic mesh modifications like this

    • @girlmeat-beth
      @girlmeat-beth 2 роки тому +1

      maybe source 2 will? who knows, but i'd marry whoever can implement placeable water

    • @majapaja_
      @majapaja_ 2 роки тому +1

      @@girlmeat-beth Source 2 doesn't even have static water atm

    • @technoo4891
      @technoo4891 2 роки тому

      You can't use meshes for water physics, only rendering.

    • @foxzo9356
      @foxzo9356 2 роки тому

      @@technoo4891 i wouldn't expect it to be, i mean running physics externally using the individual vertices as references of locations in 3d space relative to the center of the water mesh

  • @Minersteev
    @Minersteev 2 роки тому +7

    somehow swimming in it did not cross my mind as something that would be implemented in it but i love that you can swim in it

  • @KelBShobra
    @KelBShobra 2 роки тому +3

    This is awesome , glad people are still making mods for Gmod

  • @jaedonwallace6434
    @jaedonwallace6434 2 роки тому +196

    Do you "compress" the water somehow? For example if you have 16 particles in close proximity, do you replace them with a single larger particle?

    • @Meetric1
      @Meetric1  2 роки тому +233

      no, because..
      calculations:
      lets say I have 10 particles...
      particle 1 needs to check with particle 2, 3, 4, 5, 6, 7, 8, 9 and 10
      particle 2 needs to check with particle 1, 3, 4, 5, 6, 7, 8, 9, and 10
      particle 3 needs to check with particle 1, 2, 4, 5, 6, 7, 8, 9, and 10
      particle 4 needs to check with particle 1, 2, 3, 5, 6, 7, 8, 9, and 10
      particle 5 needs to check with particle 1, 2, 3, 4, 6, 7, 8, 9, and 10
      particle 6 needs to check with particle 1, 2, 3, 4, 5, 7, 8, 9, and 10
      particle 7 needs to check with particle 1, 2, 3, 4, 5, 6, 8, 9, and 10
      particle 8 needs to check with particle 1, 2, 3, 4, 5, 6, 7, 9, and 10
      particle 9 needs to check with particle 1, 2, 3, 4, 5, 6, 7, 8, and 10
      particle 10 needs to check with particle 1, 3, 4, 5, 6, 7, 8, and 9
      now imagine that, but we have 65,000 particles...
      you need to iterate over particles roughly 65,000^2 times
      this means you have to do 4225000000 distance checks
      lets say it takes 1/10000th of a millisecond to do 1 distance check
      4225000000 * (0.001 / 10000) = 422.5
      422.5 / 60 = 7.4 seconds
      7.4 seconds per frame
      (this may not be accurate) but this means you would get an fps of about 0.0086.

    • @jaedonwallace6434
      @jaedonwallace6434 2 роки тому +49

      Oh 😳

    • @the.true.A
      @the.true.A 2 роки тому +4

      @@Meetric1 no you

    • @JustAnAverageGuy5731
      @JustAnAverageGuy5731 2 роки тому +30

      @@Meetric1 then shit addon

    • @dadutchboy2
      @dadutchboy2 2 роки тому

      @Dr. Wy Thlong Face then theres more water

  • @thekittyshow487
    @thekittyshow487 2 роки тому +1

    gwater is actually really good. looks like real water sim from far away

  • @regicider3505
    @regicider3505 2 роки тому +1

    I'm just chilling on a new server, utterly clueless. Then the moderator whose computer apparently runs on a nuclear reactor logs on.

  • @popcornondemand
    @popcornondemand 2 роки тому +1

    Either you have the best computer in the world or youre unbelievably good at optimizing this mod and either way it’s insanely impressive

  • @j8ycie
    @j8ycie 2 роки тому +23

    maybe try a smaller area and smaller particles and you could also simulate a flow, because i noticed that these bigger ones were not really flowing apart from that love the vid!

  • @nachorodrigueze9197
    @nachorodrigueze9197 2 роки тому +1

    thats one way of building a campfire

  • @Miastodb
    @Miastodb 2 роки тому

    I really needed this. Thank you

  • @mr.jamtastick6055
    @mr.jamtastick6055 2 роки тому

    This is so cool and impressive!

  • @genesisreaper2113
    @genesisreaper2113 2 роки тому +117

    do you by chance run this on a nasa computer?? either that or this is suprisingly efficient, rendering all those particles-
    either way im impressed

    • @the.true.A
      @the.true.A 2 роки тому +21

      I mean they're at particle radius 100, meaning the particles are big af, so there's way less particles than it what it appears to be, still it should lag a bit in the average pc

    • @tdoyr2119
      @tdoyr2119 2 роки тому +2

      @@the.true.A I would consider a modern iMac to be “average” and I can guarantee that this would crash so fast. Unless by average, you mean an on-par computer (likely with at least a 2080ti, Intel i7, etc.), which would probably be mostly fine

    • @the.true.A
      @the.true.A 2 роки тому +8

      @@tdoyr2119 I mean avarage as in a normal-good gaming computer, weaker than what you mentioned but stronger than an Imac, something with a gtx 1080 and a Ryzen 5-7 something, which isn't exactly "average" but isn't necessarily a NASA computer

    • @tdoyr2119
      @tdoyr2119 2 роки тому

      @@the.true.A that’s what I was thinking, because your standard iMac usually has an i5 and a Radeon pro 555

    • @Pinkooru
      @Pinkooru 2 роки тому +10

      @@tdoyr2119 Macs are not gaming computers by the way.

  • @mint1578
    @mint1578 2 роки тому +7

    You gotta have a strong PC to do this.
    Props to you dude 👍

  • @dewrito2325
    @dewrito2325 2 роки тому

    My jaw has dropped multiple times when I watched these videos. I wish I knew about this channel sooner

  • @sirechumbucket2348
    @sirechumbucket2348 2 роки тому

    My jaw hit the floor when i saw this, really freakin impressive!

  • @redi5674
    @redi5674 2 роки тому

    as soon as i found this vid before even clicking i was praying for this man's computer

  • @tomboysupremacist
    @tomboysupremacist 2 роки тому +1

    filling the canal with *JELLY*

  • @abyss4164
    @abyss4164 2 роки тому

    looks amazing man!

  • @Povilaz
    @Povilaz 2 роки тому

    Now that looks very cool.

  • @Anbrad
    @Anbrad 2 роки тому

    this is really cool to see

  • @TetraKael
    @TetraKael 2 роки тому

    Bigcity feels alive for once.

  • @naber_xD
    @naber_xD 2 роки тому +1

    not the hero we deserved but the hero we needed

  • @I-LOG
    @I-LOG 2 роки тому

    Finally, after all these years...

  • @equalibrius8691
    @equalibrius8691 2 роки тому

    this looks sick!

  • @wilhelmhinrik7815
    @wilhelmhinrik7815 2 роки тому

    1:50 "hello I'm under the water, please help me."

  • @notfish
    @notfish 2 роки тому

    this might be the most important video on the internet

  • @astolfo3403
    @astolfo3403 2 роки тому

    I always wanted this as a kid

  • @bunslinger
    @bunslinger 2 роки тому

    a lot more performance friendly than i thought it'd be

  • @spencer206
    @spencer206 2 роки тому +16

    did you improve preformance becuase you actully have suprisingly good fps

    • @coolpans7417
      @coolpans7417 2 роки тому

      yes he did

    • @zep-excpoint
      @zep-excpoint 2 роки тому +2

      looks like he just made the particle size really big

  • @aguyonyoutube9093
    @aguyonyoutube9093 2 роки тому

    My man’s makin’ videos on a NASA super computer

  • @RagbagMcShag
    @RagbagMcShag 2 роки тому

    gmod was centuries ahead of its time

  • @DrHotelMario
    @DrHotelMario 2 роки тому +1

    absolutely cursed
    10/10 keep it up

  • @ThePokechester
    @ThePokechester 2 роки тому +6

    Restoration Project

  • @jerichosamurai
    @jerichosamurai 2 роки тому

    Alternative title: "I make my CPU shit bricks as it begs me to stop"

  • @darkryder4698
    @darkryder4698 2 роки тому +1

    Now i want a bigcity with the canals at full capacity of water, it just seems upsetting that we don't have one like that (from what i can tell anyways)

  • @braskuza
    @braskuza 2 роки тому

    my computer would crash if I spawned two of those big ones

  • @SuperGoldfish96
    @SuperGoldfish96 2 роки тому

    This is very impressive

  • @wolfcl0ck
    @wolfcl0ck 2 роки тому

    Alright, I'll bite, this is getting impressive.

  • @choom
    @choom 2 роки тому

    life could be a dream, life could be a dream.

  • @marblewolf4522
    @marblewolf4522 2 роки тому

    kinda reminds me of Creeper World.
    Tower Defence game where your command center builds resource miners and towers to attack the blue creep from spreading or attack the nucleus

  • @eugenethemonkey7409
    @eugenethemonkey7409 2 роки тому

    ok so this is how the oceans were made

  • @barterhat_9830
    @barterhat_9830 2 роки тому

    that butterfly click though

  • @mcdanielsslaughterground7920
    @mcdanielsslaughterground7920 2 роки тому

    some modded map in pavlov gives that creator gun to each player and allows them to choose from a menu of items to randomly place in the map, you can imagine how your fps drops when people try to splash the entire map with every item everywhere

  • @JoseSantos-qo9eg
    @JoseSantos-qo9eg 2 роки тому

    I imagine my phone hypothesiseing that a flood is going happen and I would be like: *ya think*

  • @fatstrategist
    @fatstrategist 2 роки тому

    Breaking News: GMod man reinvents Orbies

  • @SANDVlCH
    @SANDVlCH 2 роки тому

    You need to have your normals for the spheres as double-sided, so they don't go invisible when you're inside one and let you see the floor

  • @rangerfluffyboi.
    @rangerfluffyboi. 2 роки тому

    its been done he has done it we shall praise you as our lord.

  • @Corzappy
    @Corzappy 2 роки тому +3

    The only thing this badly needs is for the water to turn a deeper blue color as they stack on top of eachother.

  • @PatroitSongChannel
    @PatroitSongChannel 2 роки тому

    finally we can solve world hunger now

  • @kozakpolv
    @kozakpolv 2 роки тому

    you could make watere particles tend to stick to bigger groups of water/particles - really simplified version waters
    surface tension property
    that may be cool and simple way to make it way more realistic

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

    Performance is *_G O N E_*

  • @Xayumcl
    @Xayumcl 2 роки тому

    man if big city had more people in it you can expect the they are going to dive in to that water in summer

  • @RustCollector
    @RustCollector 2 роки тому

    Doing gods work

  • @heartheart7187
    @heartheart7187 2 роки тому

    This is awesome

  • @LehySnek
    @LehySnek 2 роки тому

    That canal must suffer of Dysphagia, because that's a lot of Thick Water.

  • @alexjames4621
    @alexjames4621 2 роки тому

    Runs remarkably well! Is this done on the GPU?

  • @loganwheeler7128
    @loganwheeler7128 4 місяці тому

    This should be remade in gwater 2 when it is finished

  • @Epicteabagger
    @Epicteabagger 2 роки тому

    As Aunt May Once Said, 'With Great Power, Comes With Great Responsibility'

  • @tall_prince
    @tall_prince 2 роки тому

    hearing the toolgun respond to jitterclicking is just music to my ears

  • @duxtorm
    @duxtorm 2 роки тому

    I still don't understand how this doesn't slow down the game noticably

  • @Ralzone
    @Ralzone 2 роки тому +1

    next video: GWater: filling the ocean with water

  • @lolziz
    @lolziz 2 роки тому +2

    Reminds me of that one old Minecraft video

  • @missingno2401
    @missingno2401 2 роки тому

    my pc is screaming watching this video and im not even the one playing the game

  • @PlawPaw
    @PlawPaw 2 роки тому

    why was this video reccomended to me? like, it got into my notification..

  • @lncoming
    @lncoming 2 роки тому

    0:36 HEY NO FULL AUTO IN THE BUILDING!
    "That's not full auto"
    "It's not?"
    "No, this is." BRRRRRT

  • @RedRanger-ll7hx
    @RedRanger-ll7hx 2 роки тому +5

    Is it also graphically intensive or just processor intensive?

    • @TOx1CC
      @TOx1CC 2 роки тому +7

      processor ofc

  • @catfree
    @catfree 2 роки тому

    Funny how all this cool stuff is coming out for Garry's Mod when S&Box is about to release

  • @Wapako
    @Wapako 2 роки тому +1

    Funny how the algo likes you ahah
    Keep up the good works !

  • @itryen7632
    @itryen7632 2 роки тому +1

    sick... ;w;❤️

  • @Colt0311
    @Colt0311 2 роки тому

    This man’s PC runs on plutonium

  • @normalicious9734
    @normalicious9734 2 роки тому

    I'd love to see this with the canals in Half Life 2

  • @TravisRyley
    @TravisRyley 2 роки тому

    bro's got a nasa computer

  • @areallyboredindividual8766
    @areallyboredindividual8766 2 роки тому

    This is insane, holy shit

  • @cakecake1677
    @cakecake1677 2 роки тому

    amazing

  • @agustinfabrizio5093
    @agustinfabrizio5093 2 роки тому

    nice addon bro, i´ll sub to it

  • @anotheryoset2060
    @anotheryoset2060 2 роки тому

    POV: You're God creating the world

  • @mprotos9192
    @mprotos9192 2 роки тому +1

    with water(orbeez balls)

  • @ScratchedDVDhelp
    @ScratchedDVDhelp 2 роки тому

    he gave the pc an amazing gaming chair1!11!

  • @AlienosAreReal
    @AlienosAreReal 2 роки тому

    Next time: FILL THE ENTIRE GM_BIGCITY YEAAAAAH

  • @npc_citizen9276
    @npc_citizen9276 2 роки тому

    *HUMANITY RESTORED*

  • @vidjenko8349
    @vidjenko8349 2 роки тому

    it appears my computer has burst into flames

  • @Toasterloaf
    @Toasterloaf 2 роки тому +1

    This is great! This could add so much more functionality to the game!

  • @gamescape7900
    @gamescape7900 2 роки тому +1

    21 gun salute for our fallen gpu and cpu's

  • @amigo7672
    @amigo7672 2 роки тому

    the most powerful this here is his computer

  • @patrlim
    @patrlim 2 роки тому

    my only criticism with this amazing mod is the particles interact weird with props and its hard to see depth, maybe using 2 depth buffers without particles and with only particles and no geometry could be a way to implement this?

  • @dabroom
    @dabroom 2 роки тому +1

    Cool

  • @FishX13
    @FishX13 2 роки тому +1

    Me : puts only 2 shaped sphere(10)
    Game : hl2.exe has stopped working
    My PC : Oh my god this is too much "realism" welp time to explode.

  • @kartonbaba
    @kartonbaba 2 роки тому

    Filling the entire bigcity canal with jello

  • @realflopper
    @realflopper 2 роки тому

    this dude has a nasa PC

  • @Pixel9897
    @Pixel9897 2 роки тому

    And it only dips to 30fps? That's awesome stuff yo

  • @napppann3486
    @napppann3486 2 роки тому +1

    Oh hey we have the same player model

  • @user-yq8tg2lv7t
    @user-yq8tg2lv7t 2 роки тому +2

    i have two questions, the first question is: how could you increase the particle size limit (I enter a command, but it does not work); second question: why do you have more fps, i have rtx 3060 and low fps.

    • @burgeridiot
      @burgeridiot 2 роки тому +4

      i could be wrong, but isnt source cpu-intensive?

    • @DeltaPlays27
      @DeltaPlays27 2 роки тому +3

      mans has a 3090 but still has an Intel 4004

    • @user-yq8tg2lv7t
      @user-yq8tg2lv7t 2 роки тому

      @@DeltaPlays27 no, I have i7-10700kf at 4.6 Ghz, the author has i7 400 series and gtx 900 series

    • @Meetric1
      @Meetric1  2 роки тому

      if you used gwater 1.1 then performance would be worse than this video (1.2) cuz I improved it a bit, also the particle radius is 10x bigger than default

    • @user-yq8tg2lv7t
      @user-yq8tg2lv7t 2 роки тому

      @@Meetric1 thanks for the reply i set the particle radius to 140 and the performance is around 60fps