Posts from 2025-03-27 with #unrealengine

On this day: 1142 posts, 75 reposts, 1494 total likes.

@sergeyvol.bsky.social avatar
@sergeyvol.bsky.social (Sergey Balanin 🐝)

Well, today was productive! First, I untangled the spaghetti code I’d cooked up, fixed the inventory button’s styling, and slapped together a barebones menu! Now you can actually exit the game 😱

#UnrealEngine #UE5 #gamedev #indiedev

Posted at: 2025-03-27 00:04:42 UTC

Worked a bit on making my main menu better and worked on the logo.

(Halo 3 music falls under Microsoft's GCUR and is available for non-profit use I found out the other day).

Feedback of menu and logo appreciated.

#Sacrilege #Halo #gamedev #indiedev #gaming #games #UnrealEngine #indiegame #UE5 #UI

Posted at: 2025-03-27 00:48:19 UTC
@devenestration.bsky.social avatar
@devenestration.bsky.social (DEVenestration)

I went buck wild with set gravity direction and made a tutorial for wall running inspired by Spiderman. Includes several different options for control and rotation, transitions from one surface to another and camera fandangling to support 360 degree rotations.

#indiedev #gamedev #unrealengine

Posted at: 2025-03-27 01:38:51 UTC

#GameDev ready American Football Setup available now on our Fab

Fab fab.com/listings/40e...

#UnrealEngine #UnrealEngine5 #UE5 #UEFN #Unity3d #Unity #MadeWithUnity #GodotEngine #Blender #Blender3d #B3d #GameDevs #IndieDev #IndieGameDev #IndieGame #IndieGames #GameDesign #IndieDevs #VirtualReality

Posted at: 2025-03-27 05:37:34 UTC

Weapon is a placeholder while the rocket launcher is worked on (it is our rifle model) but we implemented rocket jumping. It is hard to see, but the rocket is at the bottom of the video when I look down to shoot it and propel me over the wall.

#indiedev #unrealengine #ue5 #gamedev #indie

Posted at: 2025-03-27 06:50:34 UTC

👀 We’re making The Signal, an open-world survival craft game about finding a lost loved one… on a planet that won’t let you leave.

Explore, scavenge, and survive in a world that wants to trap you.

Wishlist & join us!

#gamedev #indiedev #indiegame #unrealengine #openworld #survivalgaming #steam

Posted at: 2025-03-27 08:11:39 UTC
@gamerepublic.bsky.social avatar
@gamerepublic.bsky.social (Game Republic )

Excited for our sold out Unreal Engine Special today at the National Videogame Museum underway! Great presentations in store from Steel City Interactive, Red Kite Games, Tanglewood Games, Cooperative Innovations Ltd, Brickmouse and Epic Games and an expo

#gamedev #unrealengine #epic

Posted at: 2025-03-27 10:00:06 UTC

Learn to create a Procedural Stylized World in our Houdini Beginner Production Masterclass! Build stunning Unreal scenes & craft textures with Houdini’s new COPs toolset at #EPC2025!

Tickets: everythingprocedural.com

#everythingproc #ProcGen #Houdini #UnrealEngine5 #GameDev

Posted at: 2025-03-27 10:05:13 UTC
@felipedesigns.bsky.social avatar
@felipedesigns.bsky.social (Felipe Fleming)

Some more screenshots from the first act of my Portfolio Piece Tales of the Forgotten done here at The Game Assembly! 🤩

Hope you like it! 💫

#tga #indie #ue5 #unrealengine #gamedesign #leveldesign #narrativedesign #game #gamedev #portfolio #blockout #blocktober

Posted at: 2025-03-27 10:22:09 UTC
@felipedesigns.bsky.social avatar
@felipedesigns.bsky.social (Felipe Fleming)

Some more screenshots from the second act of my Portfolio Piece Tales of the Forgotten, done here at The Game Assembly! 🤩

Hope you like it! 💫

#indie #ue5 #unrealengine #gamedesign #leveldesign #narrativedesign #game #gamedev #portfolio #blockout #blocktober #gamedevelopment #indiedev

Posted at: 2025-03-27 10:47:08 UTC

forums.unrealengine.com/t/fab-develo...

More updates to the #FabStore for #UnrealEngine , #Unity and #Gamedev in general !

Posted at: 2025-03-27 12:05:27 UTC
@marcdwyz.bsky.social avatar
@marcdwyz.bsky.social (MarcDWyz [Working on #MegaManRS])

Slide Brake by reversing direction, like many Mega Man games, but also PRESS UP to Slide Brake without changing direction! #MegaManRS #gamedev #UnrealEngine5 #UnrealEngine #megaman

Posted at: 2025-03-27 12:14:54 UTC
@fetysenkogames.bsky.social avatar
@fetysenkogames.bsky.social (Fetysenko Games 🇺🇦)

Now you can find boxes with Military Bots to assist you.

What do you think about it?

You can try it in the Demo on Steam: store.steampowered.com/app/3297890/...

#gamedev #indiedev #UnrealEngine5 #UE5

Posted at: 2025-03-27 12:52:58 UTC
@stormhound.bsky.social avatar
@stormhound.bsky.social (Stormhound ✨VFX Artist)

I created this toon shader in unreal engine for future anime-style VFX projects ✨. I hope to add more features as needed.

#UnrealEngine5 #UE5Study #VFX #realtimeVFX #gamedev #ue5 #WIP

Posted at: 2025-03-27 14:12:13 UTC

✨Shader Magic✨

This shader creates a distorted triplanar weight mask with sine waves—perfect for when dithering fails or blending is too expensive, like with POM and Nanite displacement.

+23 instructions 🎨

Follow for more tips! 💚👀

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

Posted at: 2025-03-27 15:00:06 UTC
float adjustedNoiseStrength = NoiseStrength / NoiseScale;
float3 scaledUVW = UVW * NoiseScale;
float3 noiseAccumulation = float3(0, 0, 0);

for (int i = 0; i < NoiseIterations; ++i) {
    float loopNoiseScale = NoiseScale * pow(4, i);
    
    float noiseValue = scaledUVW.x * scaledUVW.y * scaledUVW.z * loopNoiseScale;
    noiseAccumulation += float3(sin(noiseValue), cos(noiseValue), 0) / loopNoiseScale;
}

noiseAccumulation /= NoiseIterations;
float3 transformedNormal = pow(abs((Normal) + noiseAccumulation * adjustedNoiseStrength), 100);
float3 normalizedNormal = transformedNormal / dot(transformedNormal, float3(1, 1, 1));
return step(float3(0.5, 0.5, 0.5), normalizedNormal);
Alt: float adjustedNoiseStrength = NoiseStrength / NoiseScale; float3 scaledUVW = UVW * NoiseScale; float3 noiseAccumulation = float3(0, 0, 0); for (int i = 0; i < NoiseIterations; ++i) { float loopNoiseScale = NoiseScale * pow(4, i); float noiseValue = scaledUVW.x * scaledUVW.y * scaledUVW.z * loopNoiseScale; noiseAccumulation += float3(sin(noiseValue), cos(noiseValue), 0) / loopNoiseScale; } noiseAccumulation /= NoiseIterations; float3 transformedNormal = pow(abs((Normal) + noiseAccumulation * adjustedNoiseStrength), 100); float3 normalizedNormal = transformedNormal / dot(transformedNormal, float3(1, 1, 1)); return step(float3(0.5, 0.5, 0.5), normalizedNormal);
@cryptimal.bsky.social avatar
@cryptimal.bsky.social (Cryptimal, The Lands of Gallha)

WIP. Testing the Cryptimals position and layout in combat, with a mockup for the menus. The player is free to move around before choosing what to do (for now), but the Cryptimals are not.

#gamedev #indiegames #IndieDevs #monstertaming #UnrealEngine #Cryptimal

Posted at: 2025-03-27 15:35:56 UTC

As we continue to finish up some stuff with blueprints in #Unreal, I am starting to look at the C++ side. Want to be able to work with both blueprints and C++, then start working on a game. Been fun so far!

#learningjourney #UnrealEngine #IndieGameDev #gamedev #UE5

Posted at: 2025-03-27 15:48:51 UTC

#UE5 Behind the scenes: I improved the post-process material for the “Advanced Vision” ability in my game.

It blends scene color, depth, and stencil data for visibility + adds scanlines and a night vision effect.

#gamedev #UnrealEngine5 #indiedev

Posted at: 2025-03-27 16:03:47 UTC
@trickyfatcat.bsky.social avatar
@trickyfatcat.bsky.social (Tricky Fat Cat)

And here's gameplay video of our @d2jam.com entry Space Express www.youtube.com/watch?v=lmP5...

#gamedev #gamedevelopment #UnrealEngine #madewithunreal #game

Posted at: 2025-03-27 16:40:39 UTC

Procedural Maze, I think it would be a dynamic challenge if players could enter the dungeon to solve. Higher level No mini-map and bigger, but better loot
#ue5 #unrealengine #blender #gamedev #indiegame #sologamedev #pcgame #pcgaming #medievalfantasy

Posted at: 2025-03-27 17:30:51 UTC
@alienmax.bsky.social avatar
@alienmax.bsky.social (Alien 👽 Max | gamedev 🇺🇦)

I started making a graybox scene where all the interactive objects would be. So I started with lights and led signs. At the beginning of March I wrote a game design document and there are 50+ objects from which a new game will be created #gamedev #indiedev #UnrealEngine

Posted at: 2025-03-27 17:31:03 UTC

This shader function rotates UVs while scaling them to always keep the 0-1 range visible. No more cropped or lost UV space. Perfect for procedural textures, triplanar mapping, or any effect where UV consistency matters! #gamedev #VFX #realtimeVFX #UnrealEngine #UnrealEngine5

Posted at: 2025-03-27 18:00:39 UTC
@theeternalthrone.bsky.social avatar
@theeternalthrone.bsky.social (The Eternal Throne)

Look how cool these are! Our head of studio/lead programmer humoured me with a test of scaled enemies for an early idea we had (now I just have to convince everyone to let me keep them)

-Caliburn

BTW our website is now up!

#gamedev #gaming #videogames #unrealengine #ue5 #indiegame

Posted at: 2025-03-27 19:02:43 UTC
@worldofleveldesign.bsky.social avatar
@worldofleveldesign.bsky.social (World Of Level Design)

Need some modular railings to block the player?

No problem. Here is a start of straight railings from Maya to #UE5.

Then it's on to few different railing variations that can be added to this for complete set.

#gameart #gamedev #3dmodeling #environmentdesign #unrealengine

Posted at: 2025-03-27 19:12:34 UTC
@wardenswill.bsky.social avatar
@wardenswill.bsky.social (Warden's Will)

Dasher is ready to OPEN THIS PIT UP!! 🤘

#gamedev #indiegame #steam #unrealengine #multiplayer

Posted at: 2025-03-27 19:20:55 UTC
@trickyfatcat.bsky.social avatar
@trickyfatcat.bsky.social (Tricky Fat Cat)

Continue working on new plugins for my prototyping collection. This time I completely rewrote TrickyGameMode. Early version I used in Space Express. github.com/TrickyFatCat...

#gamedev #gamedevelopment #UnrealEngine #UnrealEngine5 #madewithunreal

Posted at: 2025-03-27 19:55:43 UTC
@shane-gamedev.bsky.social avatar
@shane-gamedev.bsky.social (Shane Game Dev)

Armor Renders of MC for my game. Its the starter armor for now, and hopefully in the future have some other cool looking armor available to swap to. #solodev #indiedev #gamedev #blender #unrealengine #render #3d #characterdesign #knight #alchemist #medieval

Posted at: 2025-03-27 20:40:43 UTC
@b-tipul.bsky.social avatar
@b-tipul.bsky.social (Brett Tipul)

Added vent destruction from the grenades because, why not. I need to move onto something else or I'll find another thing to blow up but DAMN this if fun! #UnrealEngine5 #UE5 #Physics #Garage #Nakatomi #IndieDev #GameDev #Art #GameEngine #Grenade #Destruction

Posted at: 2025-03-27 20:50:07 UTC
@worldofleveldesign.bsky.social avatar
@worldofleveldesign.bsky.social (World Of Level Design)

What started off as few modular assets has expanded to 56 Static Mesh pieces.

Walls, floors, columns, railings, shapes and more.

Versatile and flexible to unique environment creation. Modeled in #Maya and to be used in #UE5!

#gameart #gamedev #3dmodeling #environmentdesign #unrealengine

Posted at: 2025-03-27 20:59:55 UTC
@mrmgames.bsky.social avatar
@mrmgames.bsky.social (MrMustache)

Voxel Jungle Animals Pack - Jaguar

Check: linktr.ee/mrmgames

🎁 Support: www.patreon.com/c/MrMGames

#voxel #voxelart #gamedev #gamedevelopment #indiedev #animals #Jaguar #unity3d #3dmodel #stylized #lowpoly #cartoon #solodev #3d #godot #unrealengine #creatures #isometric #stylized #voxels #game

Posted at: 2025-03-27 21:03:38 UTC
Voxel Jungle Animals Pack - Animated Jaguar 3d model
Alt: Voxel Jungle Animals Pack - Animated Jaguar 3d model

Oh neat, to get EnhancedInputAction events to work in parent user widget child one must have some dummy one or they will be compiled out. That would be useful to know few hours of debugging ago... ah #unrealengine, how could I hate you? #gamedev is annoying sometimes!

Posted at: 2025-03-27 21:57:14 UTC

prototyping...

#unrealengine #blender #blockbench #aseprite #gamedev #gamedevelopment #gaming #pfs #animation #realtime

Posted at: 2025-03-27 22:50:34 UTC

Playtest #4 is live.
Available on Steam.
Patchnotes:
Full controller and #steamdeck support. Dealdlier #zombies. Improved #pixelart visuals. Better #performance than ever.

Join the playtest now 🫵

#indiegame #gamedev #unrealengine

Posted at: 2025-03-27 23:08:06 UTC