
Godot 3D PixelArt Demo
A downloadable asset pack
Download NowName your own price
Godot - 3D PixelArt Demo project
This game asset includes a Godot Project that has the following:
- Configuration for pixelation of a 3D scene
- Post processing shader that detects edges on 3D meshes and draws outer and inner lines
Video tutorial
Status | Released |
Category | Assets |
Rating | Rated 5.0 out of 5 stars (13 total ratings) |
Author | PixelageGames |
Tags | 3D, Game engine, Godot, Pixel Art, Retro, Shaders, Tutorial |
Download
Download NowName your own price
Click download now to get access to the following files:
3DPixelArt_Tutorial.7z 69 kB
Comments
Log in with itch.io to leave a comment.
This is amazing thank you!
Very high quality tutorial and demo.
How you achieved the godrays?
This is genuinely so cool as someone who's getting started with godot, thank you for making this :)
good
for anyone having troubles with the edge detection shader in the demo this is because you are probably using a higher version of godot. The following has the code to change based on your version.
The project comes in 4.2 version even tho the vid shows 4.3+ version at 3:40 Godot 4.2: https://docs.godotengine.org/en/4.2/tutorials/shaders/advanced_postprocessing.ht...
void vertex() {
POSITION = vec4(VERTEX, 1.0);
}
Godot 4.3+: https://docs.godotengine.org/en/4.3/tutorials/shaders/advanced_postprocessing.ht...
void vertex() {
POSITION = vec4(VERTEX.xy, 1.0, 1.0);
}
If stops working/breaks again in future look at https://docs.godotengine.org/en/stable/tutorials/shaders/advanced_postprocessing... for insight
Thanks for the help
Thanks for the reply, it was a mistake on my end. Should be fixed now
i downloaded the demo file, i don't really know why the edge detection not working when i run it
The problem should be fixed now, I recommend downloading it again
🥰🥰🥰