Pixel Art of a Crow Nest with Chicks
A cute picture of some crow chicks in their nest.
Tool:Making Tiles with Chaos
I've made a new tool!
Using the POWER OF CHAOS (rolling a random number between 1-4, then applying the rules set) it will generate a 16x16 tile and show it in the background.
You can then save the preview out at the bottom of the page as an image.
It's held together by string, so don't expect the sliders to work fully.
You can play with the tool here: 16x16 Pixel Chaos Generator.
Godot Tip 「Tile Collision With Tilemap and a Physics Body」
This is how you can detect what tiles you are colliding with when using a Physics Body.
Information from BipBop (Godot Engine Forms, December 13 , 2023)
Godot Weird Problem:Viewport Texture Error with Model
In Godot, if you set a ViewPort Texture directly on a Material Albedo you will receive a warning when running your game from the editor. This error appears to be harmless in game but it is annoying.
To work around it, you can set it in code:
- Grab a reference to the mesh
- Grab a reference to the viewport/subviewport
- In the _ready() callback, set the texture.
This is not likely to be fixed anytime soon, it's been open since 2022...
Information from MamaDespik (Reddit, April 29, 2024)
Godot Tip 「Game-Isometric Camera」
Using Node: Camera3D
- Projection: Orthogonal
- Rotation: -30, 45, 0 (XYZ)
- Size: 8M-10M (Based on Pixel Size)
- Far: 200M (Fixes issues with Orthogonal Shadows) [Calinou, Godot Issue 58332, Feb 19, 2022]
Quick Code Note for Camera (You may have to rotate input):