Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SE
Posts
1
Comments
960
Joined
2 yr. ago

  • Arguably Minecraft may be better/subjectively more interesting to hack, considering you'd have access to an insane amount of modding tools and libraries, as well as that the entire game has been so pulled apart that its may even surpass the documentation for mine test (can't say for sure though cause I've never looked at mine test's source code personally)

  • Minecraft 3x over, still hardly ever play any games to completion (ADHD) but Ive lost whole days to Minecraft.

    If I'm interpreting 'existing mods' as ALL existing mods, Jesus Christ imma 5 years isn't enough imma need at least 10

    THANK GOD I'd be free from the next 5 years of updates cause it'll be a cold day in hell before Microsoft goes that long without adding some type of micro transactions/ads to the game

  • Hey might wanna look at your reading comprehension then, hating China 'cause China' is racist - judging them for their race.

    Hating them for being competition is facist.

    Isn't there some concept of a free market or are you too much if a commie for that?

  • Like every other factory they've already pushed to cheap Chinese labour?

    The only difference now is the label says "made and designed in China" instead of the good ol patriotic "designed in California made in china"

  • Yeah maybe this would have made sense in... The 50's?

    Everyone has nukes nowadays. If even one of these EV's is half as dangerous as a Tesla, I'm sure the army of american racists will ban them to hell and back.

    And if things ever escalate, China loses their biggest golden goose, the american market, only hurting themselves in the process

  • Yeah the good ol China bad argument, very scientific.

    Ya know if you hate someone just cause their race, it does in fact make you racist - even of they're the 'bad guys'

    I just fuckin wish we had more competition earlier, the current US centric market for everything ever sucks

  • Usually modern shader displacement attempt to create a continuous mesh, to not have to deal with backfaces or unnatural vertex breaks, but this technique can also be used (funny enough much simpler) to break meshes apart.

    Linking a screenshot here I made for another comment in this post, this test project I used the shader code in the vertex shader

     
        
    VERTEX += NORMAL * (sin(TIME)+1.0) *0.1;
    
      

    (Should be noted the mesh breaks apart into squares not triangles because the normal of the two triangles in a square is equal)

  • The vertex shader is low enough level that it has no concept of shared vertices (nor really anything above triangles for the GPU), so this will work without individual meshes.

    Here's a quick test project I made using a single cube mesh and the shader code

     
        
    VERTEX += NORMAL * (sin(TIME)+1.0) *0.1;
    
      

  • I'd reccomend doing it in a vertex shader to not destroy performance by either always having that many meshes loaded or creating a lag spike on death (by having to create as many meshes as vertices). This is because Godot is fairly high level, so all of its inherit classes have some overhead, and when used (abused?) to this degree it becomes noticeable.

    You'd have to know some vector math to make it customisable, but for the flame one I'd take each vertex move it down x units each timestep, clamped to the floor's height

    Edit to include an exploding example I made elsewhere in the post

     
        
    void vertex(){
        VERTEX += NORMAL * (sin(TIME)+1.0) *0.1;
    }
    
      

  • Canada's kinda a joke tho, were just america cosplaying as europe cause it makes us feel good - but just gives us twice the drawbacks and the rich twice the benefits

    (I just want a fucking apartment without going in debt, is that too much to ask)

  • I skimmed over your entire comment minus the part about docker, so if you answered this somewhere and I'm a dumbass I already accept fault,

    that being said docker has taught me more about Linux than anything else, cause its like a micro Linux you can reliably bring up and take down on demand, without requiring risking breaking your GUI or something scary

  • Bacon tho

    Jump
  • I mean I don't see the correlation between different experiences with different senses.

    Like I love feeling shit come out of my ass, don't like hearing seeing smelling or tasting it and I don't think that's an intellectual 'gotcha'