Makes it easy to use an alternate form of window scaling that better preserves the apparent pixel sizing.Includes a bilinear filtering shader and a scene that uses it for window scaling. This prevents variations in pixel sizes at resolutions that can't be divided perfectly, while keeping pixels well defined. Especially useful for pixel art games.
Simple Doom clone I made in this tutorial: https://www.youtube.com/watch?v=LbyyjmOji0M
Simple platformer made in this tutorial: https://www.youtube.com/watch?v=NScngW8vxK8
Emulator-style pixel upscaling algorithm. Ported from the SameBoy to Godot 3+. Works similarly to hqx at arbitrary precision.
A small addon that generates 3d mazes using a depth-first search algorithm. It can exclude user-defined zones from generation and suggest locations for items (doors, keys, chests...).
Simple top down shooter made in this tutorial: https://www.youtube.com/watch?v=5vYI_mgERBU
My godot framework help you to create your own 2D plateformer game without coding anything on Godot engine. READ THE DOC !
Platform2d is a plugin for Godot that provides two new classes that can be used to create levels for 2D platformer games.ThinPlatform is a simple platform that is drawn along a curve using user defined textures.ThickPlatform is defined by a closed curve and drawn using fill and edge textures.Both classes inherit from StaticBody2d and generate their collision shapes automatically. They also have a "Moving Platform" option that, if set, will automatically update the platform's constant linear velocity when the platform is moving.The platform aspects can be saved and applied to new platforms using the "Materials" drop-down list.Changelog:- v0.1: initial release- v0.2: fixed for Godot 2.2, updated the user interface- v1.0: added edge textures for the top border of ThickPlatforms, a sample texture set (Simple Grass, inpired from Kenney's assets & tutorials) and undo/redo handling- v1.1: bug fixes and optimizations- v1.2: updated for Godot 3.0.x
Simple Gizmo that allows you to easily transform bones in the editor so you can do animations in Godot.
A Trackball Camera that responds to input from actions, mouse, keyboard, joystick and touch, in order to rotate around its parent node while continuously facing it.Works with Godot 3.x (tested up to 3.5).- stays around its parent node, even if the latter moves- no gimbal lock (quaternions ♥)- camera inertia for a smoother experience- keep the horizon stable if you want- the parent node does not have to be centered in the camera's view- can be used to look around itself- analog camera control with joystick, courtesy of @marcello505- smooth and constrained zoom with PGUP / PGDOWN or your own custom action, if you want to use the mouse wheel for example- constrain pitch, or handle headstands by inverting x- a bunch of parameters to configure things as you want themCONS:- No panning- No promisesUSAGE1. Add a TrackballCamera node as child of the node you want to trackball around.2. Translate the camera along the Z axis a little bit, so that it faces its parent.3. Configure the camera.
Shader to animate a fish without armature or blend shapes.This shader is strongly inspired by the fish shader used in ABZU and demonstrated by Matt Nava in his presentation at GDC 2017.The repository contains only what is absolutely necessary to demonstrate the shader. The shading of the object has to be refined.credits: Fish Perch by holmen released under Creative Commons Zero (Public Domain)
This addon allows the rendering of "3D images" enabling volumetric effects.Version history:- 1.3: Moved the volume generator to the editor.- 1.2: Added dithering and blending modes.- 1.0: Initial release.