WOMP -- New SDF 3D Modelling App

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

WOMP is a new SDF or signed distance field based 3d modeling application that makes creating 3d models incredibly easy. Currently running in the Chrome browser, Womp enables you to create models by adding and subtracting objects from each other, much like traditional polygon boolean modeling. In alpha, Womp is currently free to use.
Links
gamefromscratch.com/womp-3d-m...
-----------------------------------------------------------------------------------------------------------
Support GFS on Patreon : / gamefromscratch
GameDev News : gamefromscratch.com
GameDev Tutorials : devga.me
Join us On Discord : / discord
Twitter : / gamefromscratch
-----------------------------------------------------------------------------------------------------------

Пікірлер: 58

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

    Links gamefromscratch.com/womp-3d-modelling-app/ ----------------------------------------------------------------------------------------------------------- *Support GFS on Patreon* : www.patreon.com/gamefromscratch *GameDev News* : gamefromscratch.com *GameDev Tutorials* : devga.me *Join us On Discord* : discord.com/invite/R7tUVbD *Twitter* : twitter.com/gamefromscratch -----------------------------------------------------------------------------------------------------------

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

    Blender should have the Boolean function like this. I’ve always dreamed of a modeling software like that, so cool.

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

    7:07 dat sonic caught me off-guard 🤣

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

    I just fell in love with gooping. Now i want to goop everything

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

    Yeah, In Blender it's simply: SHIFT+A > Metaball, for more control : Edit Mode, Properties Panel > Active Element > Negative (+radius, stiffness, etc ...) on each mesh composing the Metaball compound

  • @thejagman22

    @thejagman22

    Жыл бұрын

    Metaballs are similar, yeah, but for noobs, the amount of variables you can add in Womp in a snap is honestly pretty good. In literally a click you can add metallic, plastic or even glassy textures of varying colors, another click changes the world hdri. Joining shapes together to make more complex shapes is really intuitive, so even kids can come up with full color sculpts pretty quickly. Think about the amount of learning you'd have to put in on Blender to do something similar. Don't get me wrong - I love Blender - Womp has some pretty massive and obvious limitations, but I think it's a nice attempt at making 3D more accessible to everyone.

  • @pm1234

    @pm1234

    Жыл бұрын

    @@thejagman22 I agree with your point. We need more tools like this. Especially for kids. I'm not a Blender-only guy. I learned it but I enjoy other tools :)

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

    0:29 you can usually remove any unwanted ui element with most adblockers

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

    I love your channel because it has shown me some great tools

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

    Thank you for letting us know about all these software, maybe we won't need them now, but maybe in the future we could use them.😀

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

    That's a really interesting approach to modelling, love the goopiness! I guess I'm always concerned how long these tools last and if they remain supported/free, but anyway it looks promising.

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

    I might have got lucky but I created a shape with a few cubes and a sphere. Then I exported to obj and imported all the files in the zip directly into unity urp testing project and it actually looks nice. Usually these kinda things either get screwed up on import or materials don't show up etc.. at least for me.

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

    I do wish more 3D modeling softwares had goop in them...

  • @RenderingUser

    @RenderingUser

    Жыл бұрын

    Pretty sure blender has something like that

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

    My first experience with rendering packages was also based on bolean modelling Real3D on the Amiga

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

    It's like tinkercad on steroids!!! I'm going to give this a shot, I'm designing a Slingshot for yard plinking.

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

    On browser based programs like this, be sure to save often!!

  • @thejagman22

    @thejagman22

    Жыл бұрын

    It's basically constantly autosaving to your account, can't see you losing much tbh

  • @gt5855-r6x

    @gt5855-r6x

    Жыл бұрын

    No need to safe! it's all autosaved to the cloud, since its also streaming from the cloud :)

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

    "rounded cube":===Apple cube. 🙂

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

    Again a cool app I just can't use if my internet provider has problems. Guys what i wrong with you all and those useless browser apps?

  • @JH-pe3ro
    @JH-pe3ro Жыл бұрын

    Blender has the functionality, but the UX is a mess, because it's a mishmash of object and edit mode where you have to select the object, then select an (unnamed) metaball as if it were a poly. When you get the concept, you can work with it, but it doesn't put everything in the outline like this.

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

    lol why bother making a browser-based tool if it requires you to download a specific browser?

  • @robertkerans

    @robertkerans

    Жыл бұрын

    Normally w/r/t compute-heavy graphics stuff it's because Chrome currently has better browser support for some worker thread stuff (some key JS APIs aren't fully implemented or are behind a flag on Firefox for example, eg OffscreenCanvas)

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

    What kinds of exports can I expect from A csg modeler like WOMP? Can it mesh things then export them the traditional way? Or maybe it exports as some form of shading code like GLSL?

  • @gamefromscratch

    @gamefromscratch

    Жыл бұрын

    It exports a tessellated (triangular) mesh.

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

    I have a question for those who are expert in SDF engines. How do you optimize large numbers of objects ? For example, if i have 1 million sphere, the shader will calculate one million distances() function in a single fragment. An obviously optimization that comes in my mind is to not calculate a sphere if the fragment doesn't see it, but I'm interested in knowing if there is a better more involved optimization than that.

  • @JustMog

    @JustMog

    Жыл бұрын

    i'm no expert but i believe the basic idea is, since when raymarching you're only interested in the minimum of all distances to objects in the scene, you can wrap a bunch of objects in a bounding volume and skip evaluating any of the objects themselves if the distance to the volume is greater than the current minimum.

  • @xinaesthetic

    @xinaesthetic

    Жыл бұрын

    It depends... Something cool about this approach is that if you have a million spheres in a grid (not independently moving objects in a scene), you could evaluate with one distance comparison that involves a modulo... As for whether this tool lets you edit stuff like that I'm not so sure.

  • @theoathman8188

    @theoathman8188

    Жыл бұрын

    @@xinaesthetic You are referring to fractured UV. That's perfect for certain effects and you can loop through the neighbouring cells to do cool cheap effects that appears to be moving independently as well, such as stars or water droplets on a rainy window, but I don't think it's a viable option for an SDF engine such as Dream on playstation or MagicaCSG.

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

    It needs more tools, but it has RTR(real-time rendering). It has the potential to surpass Blender when it comes to 3D modeling. Initially, it seems more user-friendly than Vectary or other Browser based alternatives.

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

    MagicaCsG supports reference images in the scene so I prefer that one

  • @gt5855-r6x

    @gt5855-r6x

    Жыл бұрын

    Womp supports reference images too!

  • @trachinusdraco

    @trachinusdraco

    Жыл бұрын

    @@gt5855-r6x Not inside the scene ("world") like Magica or Blender tho.

  • @gt5855-r6x

    @gt5855-r6x

    Жыл бұрын

    @@trachinusdraco Oh i seee you importing 2D images into 3D space. Working on it!

  • @ricardopitta8272

    @ricardopitta8272

    Жыл бұрын

    Well, for now, MagicaCsG is behind Patreon's paywall and womp is free, so this is something to take into account. Also, womp3d exported meshes are smaller so it's a plus.

  • @trachinusdraco

    @trachinusdraco

    Жыл бұрын

    @@ricardopitta8272 I'm sure it will be free eventually aswell. He really listens for suggestions and works hard so 5€ for his efforts isn't too much to ask this early in the development. IMO

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

    WOMP, WOMP, WOMP.

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

    I want to take photos or draw sketches on paper and have Unity Automagically convert it to a 3D Level.

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

    there's a new asset humble bundle, aren't you gonna make a vid?

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

    for what it's worth I just used WOMP in Brave browser on Win 10, no big issues so far. might be a bit slower.

  • @ISKLEMMI

    @ISKLEMMI

    Жыл бұрын

    👍Both Chrome and Brave are Chromium-based browsers, so there's very little difference between them.

  • @disruptive_innovator

    @disruptive_innovator

    Жыл бұрын

    @@ISKLEMMI but some times there is. so I checked.

  • @ISKLEMMI

    @ISKLEMMI

    Жыл бұрын

    @@disruptive_innovator Totally fair and true

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

    Paint 3D should have been this

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

    womp womp

  • @RyudoFanel

    @RyudoFanel

    Жыл бұрын

    Womp womp

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

    Cool app, but kinda feel bad that most otherwise really powerful tools are held back by being browser-only Also, someone already pointed this out but this is also implemented on the Dreams PS4 game, and that's how i learned how it works! Really fun and unique way to do 3D

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

    Looks like MagicaCSG

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

    Too bad it only runs in Chrome. As a security-conscious Firefox user who takes his privacy seriously, Chrome is an absolute no-go for me. Especially now that they keep nerfing adblockers.

  • @JM-dq7xn

    @JM-dq7xn

    Жыл бұрын

    I wonder if it would run in ChromeOS in VirtualBox.. hm...

  • @gt5855-r6x

    @gt5855-r6x

    Жыл бұрын

    It's experimental for firefox and other browsers!

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

    I will only take this seriously if it had a desktop version that I can get for free or pay for. I will never use a browser based tool that could easily be a desktop app. Developer might wake up one morning and add some subscription bs.

  • @thejagman22

    @thejagman22

    Жыл бұрын

    Which would NEEEVER happen with a desktop software... 🤨

  • @Z-add
    @Z-add Жыл бұрын

    A kitchen requires hard surface modelling. That goppyness is useless.

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

    Kinda hate it

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

    Great stuff! Strangely enough, this video left me with 𝅘𝅥𝅮 "WOMP, there it is!" 𝅘𝅥𝅮 in my head. Ugh!

Келесі