Posts from 2025-03-25 with #3dart

On this day: 1208 posts, 89 reposts, 2214 total likes.

Added a table and can place a game in a test console in my game shop simulator. #gamedev #gamedevelopment #gamedesign #indiedev #art #blender3D #3dart #opengl #customgameengine

Posted at: 2025-03-25 00:12:52 UTC

redid the volcano and now it smoothly matches the island, instead of just being a giant black cone coming out of the ground lol

#gamedev #IndieGameDev #indiegames #ue5 #itchio #gamedevelopment #indiegame #3Dart #b3d #gamedesign #solodev #gameart #horrorgames #unrealengine #blender

Posted at: 2025-03-25 03:02:49 UTC

Did a first pass of some of the initial props for this scene and it's coming together well! I created new trees, bushes, and rocks to fill up the level. Still needs a solid background & ground details, but I'm getting there 🥺 #gamedev #indiedev #indiegame #leveldesign #3dart

Posted at: 2025-03-25 04:25:40 UTC
A screenshot of the park level from Burden of Truth showing new 3D models of trees, bushes, and rocks placed into the scene.
Alt: A screenshot of the park level from Burden of Truth showing new 3D models of trees, bushes, and rocks placed into the scene.
@mysteriecat.games avatar
@mysteriecat.games (MysterieCat Games)

Co-Op Dungeon Crawler /w cat heroes seeks a talented #3dartist for paid, piecemeal work: creating art to replace placeholders, starting with player model. Long-term would like customization, level parts, & props too. Must rig & animate. Indie dev budget. DM if interested /w rates. #gamedev #indiedev

Posted at: 2025-03-25 04:39:51 UTC

JCB Telehandler, $29

Blender blendermarket.com/products/low...
Unity assetstore.unity.com/packages/3d/...
Fab fab.com/listings/46b...
CGTrader cgtrader.com/3d-models/ve...

#Blender #B3d #Unity #Unity3d #UnrealEngine #UE5 #UEFN #GodotEngine #3dsMax #C4d #GameDev #IndieDev #VFX #3dArt #3dCG #VRChat

Posted at: 2025-03-25 05:20:58 UTC

Here's a little sneak peek at what's coming soon. Sorry for the low-quality video. :)
#videogame #art #3Dart #animation #maya #3Dmax #makeagame #shortfilm #game #maybe_mini_series ;)
#indie #indiegame #itch.io #indieanimation #indieshortfilm #youtubeanimation #gamedev #youtubeseries #gamedeveloper

Posted at: 2025-03-25 05:43:32 UTC

Cerabugg
#3dart #gamedev #pixelart

Posted at: 2025-03-25 10:52:30 UTC
@alteredselfgames.bsky.social avatar
@alteredselfgames.bsky.social (Altered Self Games)

Learn how the underwater sausage is made 🌭 #scuttlegame #gamedev #underwaterworld #leveldesign #indiegame #indiedeveloper #3dart #RhythmPlatformer #crab
You can Wishlist Scuttle on Steam 🥹

Posted at: 2025-03-25 12:00:25 UTC

She's finally keeping her hair on her head !
#GameDev #UnrealEngine #UE5 #GameArt #3DArt #Wip

Posted at: 2025-03-25 13:56:00 UTC
@crimsonnebula7.bsky.social avatar
@crimsonnebula7.bsky.social (Crimson Nebula)

Here are some Behind-the-scenes images and a video clip. The art is taking some time but progress is going along smoothly. Enjoy!

#gamedevelopment #gamedev #gamedesign #unrealengine #unrealengi̇ne5 #indiedeveloper #3dart #3dartist #2dart #2dartist #behindthescene #stylized #scifiart #scifi #horror

Posted at: 2025-03-25 14:42:02 UTC
@crimsonnebula7.bsky.social avatar
@crimsonnebula7.bsky.social (Crimson Nebula)

Here's a video clip of some simple door interaction and scale.

#gamedevelopment #gamedev #gamedesign #unrealengine #unrealengi̇ne5 #indiedeveloper #3dart #3dartist #2dart #2dartist #behindthescene #stylized #scifiart #scifi #horror

Posted at: 2025-03-25 14:44:17 UTC

✨Shader Magic✨

UE5’s HLSL node is powerful, but inlining all the code gets messy, and standalone functions won’t work.

Structs organize logic into clean, reusable blocks, making shaders easier to manage.

Follow for more tips! 💚👀

#TechArt #GameDev #UnrealEngine #Shaders #3DArt #IndieDev

Posted at: 2025-03-25 15:00:07 UTC
// Blend color1 and color2 (50% blend), then blend the result with the average of all three colors
return lerp(lerp(color1, color2, 0.5), (color1 + color2 + color3) / 3.0, 0.5);
Alt: // Blend color1 and color2 (50% blend), then blend the result with the average of all three colors return lerp(lerp(color1, color2, 0.5), (color1 + color2 + color3) / 3.0, 0.5);
float3 Blend(float3 a, float3 b)
{
    return lerp(a, b, 0.5);
}

float3 Average(float3 a, float3 b, float3 c)
{
    return (a + b + c) / 3.0;
}

float3 Main(float3 a : COLOR1, float3 b : COLOR2, float3 c : COLOR3) : SV_Target0
{
    return lerp(Blend(a, b), Average(a, b, c), 0.5);
}

return Main(color1, color2, color3);
Alt: float3 Blend(float3 a, float3 b) { return lerp(a, b, 0.5); } float3 Average(float3 a, float3 b, float3 c) { return (a + b + c) / 3.0; } float3 Main(float3 a : COLOR1, float3 b : COLOR2, float3 c : COLOR3) : SV_Target0 { return lerp(Blend(a, b), Average(a, b, c), 0.5); } return Main(color1, color2, color3);
struct Functions
{
    float3 Blend(float3 a, float3 b)
    {
        return lerp(a, b, 0.5); // Blend 50% of each color
    }

    float3 Average(float3 a, float3 b, float3 c)
    {
        return (a + b + c) / 3.0; // Average of all three colors
    }

    float3 Main(float3 a : COLOR1, float3 b : COLOR2, float3 c : COLOR3) : SV_Target0
    {
        // Blend the result of Blend(a, b) and Average(a, b, c)
        return lerp(Blend(a, b), Average(a, b, c), 0.5);
    }
};

Functions f;
return f.Main(color1, color2, color3);
Alt: struct Functions { float3 Blend(float3 a, float3 b) { return lerp(a, b, 0.5); // Blend 50% of each color } float3 Average(float3 a, float3 b, float3 c) { return (a + b + c) / 3.0; // Average of all three colors } float3 Main(float3 a : COLOR1, float3 b : COLOR2, float3 c : COLOR3) : SV_Target0 { // Blend the result of Blend(a, b) and Average(a, b, c) return lerp(Blend(a, b), Average(a, b, c), 0.5); } }; Functions f; return f.Main(color1, color2, color3);

shadow hunter 👻

#psx #retro #3Dart #blender #gamedev #lowpoly #horror

Posted at: 2025-03-25 18:01:22 UTC
@unemployedchicken.bsky.social avatar
@unemployedchicken.bsky.social (Unemployed Chicken)

Steps I wish I took when #animating my horse lope the first time.  
1:  Identify key points in movement 
2: Put object in position at each key point
3: Spread keyframes out to correct timing 
4: Fill in animation  

#blender #gamedev #indiegamedev #gamedevelopment #digitalart #3dart #animation

Posted at: 2025-03-25 18:33:01 UTC
@markusenes.bsky.social avatar
@markusenes.bsky.social (Marcos Silva)

More advances in the project #3d cyberpunk cyborg character. I continue sketching with some additional assets and back parts. I will keek updating with more advances. . #modeling #gamedev #cyberpunk #fantasyart #3dartwork #3dartist #gameart #substancepainter #characterdesign

Posted at: 2025-03-25 18:47:23 UTC

Some of my old works, I did inspired by the Deus Ex game
#3dart #deusex #b3d #gamedev

Posted at: 2025-03-25 21:56:15 UTC
@paulzinc.bsky.social avatar
@paulzinc.bsky.social (Paul Cousin)

made pickable object + inventory system and placeholder UI
#godotengine | #gamedev | #indiedev | #3dart | #lowpoly | #gameart

Posted at: 2025-03-25 22:45:56 UTC