Davit Masia - GameDev & PixelArt
@davitmasia.bsky.social
ℹ️ PixelArt & Gamedev / Indiedev account
⚙️ Engines :: Construct 3 & Unreal Engine 5
-
📦 GameDev Bundle :: https://itch.io/s/86346/
🖼️ 8bit conversion tool :: http://kronbits.itch.io/pixatool
🕹️ Unreal Racing :: http://kronbits.itch.io/unreal-racing
⚙️ Engines :: Construct 3 & Unreal Engine 5
-
📦 GameDev Bundle :: https://itch.io/s/86346/
🖼️ 8bit conversion tool :: http://kronbits.itch.io/pixatool
🕹️ Unreal Racing :: http://kronbits.itch.io/unreal-racing
Pinned
Its possible, sometimes, UnrealEngine not compiles correctly from living coding that makes game work in some way like if some values are not what should do? #UnrealEngine #Programming
But, then, when you realize that, if you remove binaries/intermediate from project and plugin and recompile is ok?
But, then, when you realize that, if you remove binaries/intermediate from project and plugin and recompile is ok?
November 7, 2025 at 7:55 PM
Its possible, sometimes, UnrealEngine not compiles correctly from living coding that makes game work in some way like if some values are not what should do? #UnrealEngine #Programming
But, then, when you realize that, if you remove binaries/intermediate from project and plugin and recompile is ok?
But, then, when you realize that, if you remove binaries/intermediate from project and plugin and recompile is ok?
OH MY! So cool! Same as me, loved Wipeout art but that physics/driving nope, maybe more like Fzero, with less "bouncing" (up/down) will be great.
Jumping! I want the driving to feel smooth and arcadey like a Sega Rally. I was never a big fan of Wipeout's physics, but I love the graphics obviously :)
November 5, 2025 at 9:14 AM
OH MY! So cool! Same as me, loved Wipeout art but that physics/driving nope, maybe more like Fzero, with less "bouncing" (up/down) will be great.
So clean and readable, love it! Congratulations!
The new godot UI theme has been merged and is on its way to be the new default!
I consider godot to be one of the most important software projects of our time and it's a huge privilege to be able to contribute to it. Happy to see it grow and be used for increasingly ambitious games and apps ❤️
I consider godot to be one of the most important software projects of our time and it's a huge privilege to be able to contribute to it. Happy to see it grow and be used for increasingly ambitious games and apps ❤️
November 5, 2025 at 8:43 AM
So clean and readable, love it! Congratulations!
Reposted by Davit Masia - GameDev & PixelArt
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
November 3, 2025 at 11:18 AM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
November 3, 2025 at 11:18 AM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3204
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
For vehicle physics in Unreal Engine, should use always atan2 instead of atan? #UnrealEngine #Programming #Gamedev
This:
mSlipAngle = FMath::Atan2(mLocalVelocity.Y, absForwardVelocity)
Instead of:
mSlipAngle = FMath::Atan(mLocalVelocity.Y / (absForwardVelocity + FGearUtility::epsilon));
This:
mSlipAngle = FMath::Atan2(mLocalVelocity.Y, absForwardVelocity)
Instead of:
mSlipAngle = FMath::Atan(mLocalVelocity.Y / (absForwardVelocity + FGearUtility::epsilon));
October 31, 2025 at 7:37 PM
For vehicle physics in Unreal Engine, should use always atan2 instead of atan? #UnrealEngine #Programming #Gamedev
This:
mSlipAngle = FMath::Atan2(mLocalVelocity.Y, absForwardVelocity)
Instead of:
mSlipAngle = FMath::Atan(mLocalVelocity.Y / (absForwardVelocity + FGearUtility::epsilon));
This:
mSlipAngle = FMath::Atan2(mLocalVelocity.Y, absForwardVelocity)
Instead of:
mSlipAngle = FMath::Atan(mLocalVelocity.Y / (absForwardVelocity + FGearUtility::epsilon));
Reposted by Davit Masia - GameDev & PixelArt
I've been working on recreating Super Mario Galaxy from scratch in Godot 4.5 for the past few days for one of my classes! Really happy with how this is looking!
#godot #indiedev #mario #mariogalaxy #gamedev
#godot #indiedev #mario #mariogalaxy #gamedev
October 21, 2025 at 7:27 PM
I've been working on recreating Super Mario Galaxy from scratch in Godot 4.5 for the past few days for one of my classes! Really happy with how this is looking!
#godot #indiedev #mario #mariogalaxy #gamedev
#godot #indiedev #mario #mariogalaxy #gamedev
Well, that looks so good to be screen space!
October 21, 2025 at 2:50 PM
Well, that looks so good to be screen space!
Reposted by Davit Masia - GameDev & PixelArt
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
October 1, 2025 at 9:48 AM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
I hope it includes RallyCross too 🤞
Assetto Corsa Rally announced for PC
Publisher 505 Games and developers KUNOS Simulazioni and Supernova have announced rally racing game Assetto Corsa Rally. It will launch in Early Access for PC via Steam on November 13.
Publisher 505 Games and developers KUNOS Simulazioni and Supernova have announced rally racing game Assetto Corsa Rally. It will launch in Early Access for PC via Steam on November 13.
Assetto Corsa Rally announced for PC
Publisher 505 Games and developers KUNOS Simulazioni and Supernova have announced rally racing game Assetto Corsa Rally. It will launch in Early Access for PC via Steam on November 13.
www.gematsu.com
October 19, 2025 at 9:09 PM
I hope it includes RallyCross too 🤞
Reposted by Davit Masia - GameDev & PixelArt
Seems like a good time for a new intro post. Hii (•ᴗ•)╯ I'm an artist and indie game dev. I worked on Cadence of Hyrule, Crypt of the NecroDancer + Amplified, and I made a cozy simulation game called Pixel Fireplace. Working on a new game, and looking forward to sharing more when I can! #gamedev
October 18, 2024 at 7:01 PM
Seems like a good time for a new intro post. Hii (•ᴗ•)╯ I'm an artist and indie game dev. I worked on Cadence of Hyrule, Crypt of the NecroDancer + Amplified, and I made a cozy simulation game called Pixel Fireplace. Working on a new game, and looking forward to sharing more when I can! #gamedev
Reposted by Davit Masia - GameDev & PixelArt
The awesome #GodotEngine powered, #opensource procedural 2D/3D texture creation software Material Maker just released v1.4 and it's a massive upgrade.
If you are looking for a free Substance Designer alt, look no further!
gamefromscratch.com/material-mak...
#gamedev #indiedev
If you are looking for a free Substance Designer alt, look no further!
gamefromscratch.com/material-mak...
#gamedev #indiedev
Material Maker 1.4 Released – GameFromScratch.com
Material Maker 1.4 procedural texture creation software was just released, porting to Godot 4.x with a new shader system, tons of new nodes
gamefromscratch.com
October 7, 2025 at 5:33 PM
The awesome #GodotEngine powered, #opensource procedural 2D/3D texture creation software Material Maker just released v1.4 and it's a massive upgrade.
If you are looking for a free Substance Designer alt, look no further!
gamefromscratch.com/material-mak...
#gamedev #indiedev
If you are looking for a free Substance Designer alt, look no further!
gamefromscratch.com/material-mak...
#gamedev #indiedev
@vehiclephysics.bsky.social Hi, im doing a racing game in Unreal, using MF61 and looking somebody to solve questions related with coefs.
If i understood well, buying vehiclephysics, gets one year support, and due my doubts are MF61 related, wonder if i buy a license can opt to that?
If i understood well, buying vehiclephysics, gets one year support, and due my doubts are MF61 related, wonder if i buy a license can opt to that?
October 9, 2025 at 10:36 AM
@vehiclephysics.bsky.social Hi, im doing a racing game in Unreal, using MF61 and looking somebody to solve questions related with coefs.
If i understood well, buying vehiclephysics, gets one year support, and due my doubts are MF61 related, wonder if i buy a license can opt to that?
If i understood well, buying vehiclephysics, gets one year support, and due my doubts are MF61 related, wonder if i buy a license can opt to that?
Reposted by Davit Masia - GameDev & PixelArt
It's that time of the month... free #GameDev assets from Unreal Engine time!
Get 3 FREE #UnrealEngine assets on Fab from Oct 7th - 21st (can be exported to other engines like #GodotEngine we demo). Yours free forever once claimed.
gamefromscratch.com/unreal-engin...
Get 3 FREE #UnrealEngine assets on Fab from Oct 7th - 21st (can be exported to other engines like #GodotEngine we demo). Yours free forever once claimed.
gamefromscratch.com/unreal-engin...
Unreal Engine Fab October 2025 Asset Giveaway [Oct 7th-21st] – GameFromScratch.com
The Unreal Engine Fab Marketplace Free GameDev Assets for October 2025 are here, get 3 free gamedev assets from Oct 7th - 21st
gamefromscratch.com
October 7, 2025 at 2:06 PM
It's that time of the month... free #GameDev assets from Unreal Engine time!
Get 3 FREE #UnrealEngine assets on Fab from Oct 7th - 21st (can be exported to other engines like #GodotEngine we demo). Yours free forever once claimed.
gamefromscratch.com/unreal-engin...
Get 3 FREE #UnrealEngine assets on Fab from Oct 7th - 21st (can be exported to other engines like #GodotEngine we demo). Yours free forever once claimed.
gamefromscratch.com/unreal-engin...
Any expert on Pacejka MF61? There are over 100 params to edit in 8 categories to manage the tire behaviour. Wonder if there are any advice/tips about how to config.
October 5, 2025 at 2:50 PM
Any expert on Pacejka MF61? There are over 100 params to edit in 8 categories to manage the tire behaviour. Wonder if there are any advice/tips about how to config.
Reposted by Davit Masia - GameDev & PixelArt
In the greatest fusion since Goku and Vegeta, today we have the #gamedev equivalent...
Raylib and UnrealEngine team up, thanks to RaylibUE. Use Raylib inside UE!
gamefromscratch.com/raylib-x-unr...
#UnrealEngine #Raylib #indiedev
Raylib and UnrealEngine team up, thanks to RaylibUE. Use Raylib inside UE!
gamefromscratch.com/raylib-x-unr...
#UnrealEngine #Raylib #indiedev
Raylib x Unreal Engine with RaylibUE – GameFromScratch.com
Bring the opens source C game development framework Raylib to Unreal Engine using the open source plugin RaylibUE
gamefromscratch.com
September 30, 2025 at 3:08 PM
In the greatest fusion since Goku and Vegeta, today we have the #gamedev equivalent...
Raylib and UnrealEngine team up, thanks to RaylibUE. Use Raylib inside UE!
gamefromscratch.com/raylib-x-unr...
#UnrealEngine #Raylib #indiedev
Raylib and UnrealEngine team up, thanks to RaylibUE. Use Raylib inside UE!
gamefromscratch.com/raylib-x-unr...
#UnrealEngine #Raylib #indiedev
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
October 1, 2025 at 9:48 AM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3203
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social ‼️
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Reposted by Davit Masia - GameDev & PixelArt
In need of a new job! I'm a Tech Artist who loves pushing visual side of things in real time, with 13 years of #UnrealEngine, Tech Art, Lighting, Lookdev, Env, Cinematics, HLSL, BP, PCG, Niagara, Python as well as a Houdini & Substance skillset
Avaliable mid Dec
#GameDev #VFX #FX #GameArt
Avaliable mid Dec
#GameDev #VFX #FX #GameArt
October 1, 2025 at 1:27 AM
In need of a new job! I'm a Tech Artist who loves pushing visual side of things in real time, with 13 years of #UnrealEngine, Tech Art, Lighting, Lookdev, Env, Cinematics, HLSL, BP, PCG, Niagara, Python as well as a Houdini & Substance skillset
Avaliable mid Dec
#GameDev #VFX #FX #GameArt
Avaliable mid Dec
#GameDev #VFX #FX #GameArt
Reposted by Davit Masia - GameDev & PixelArt
quick intro to smart materials in ucupaint
Smart materials in ucupaint
I recently added a button to ucupaint to make it possible to copy layers from an ucupaint material from blender asset library into the current ucupaint material:
Previously to do that you’d need to dr...
passivestar.xyz
September 8, 2025 at 5:29 PM
quick intro to smart materials in ucupaint
The third one looks so good!
misc screenshots from various texture tests and experiments in Quake
September 23, 2025 at 8:50 PM
The third one looks so good!
Reposted by Davit Masia - GameDev & PixelArt
wip procedural lens flares like in cyberpunk
August 22, 2025 at 3:59 PM
wip procedural lens flares like in cyberpunk
Reposted by Davit Masia - GameDev & PixelArt
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
September 2, 2025 at 12:38 PM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
September 2, 2025 at 12:38 PM
GameDev MEGA Bundle ⚡️ 32 Items ⚡️ 90% OFF !!
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Get here > itch.io/b/3202
Now includes a 5000 Retro SFX pack
and SpriteMancer by @codemanu.bsky.social
DRM FREE & UP to 4 Steam Keys.
32 items: Games, Tools, SFX, Textures...
#GameAssets #Gamedev #Indiedev
Reposted by Davit Masia - GameDev & PixelArt
"From Rust to Ash" is out! Roguelike Auto-battler made in #pico8. Go check it out at lokistriker.itch.io/rust
#gamedev #indiedev #pixelart
#gamedev #indiedev #pixelart
August 26, 2025 at 10:28 PM
"From Rust to Ash" is out! Roguelike Auto-battler made in #pico8. Go check it out at lokistriker.itch.io/rust
#gamedev #indiedev #pixelart
#gamedev #indiedev #pixelart