A "3D pixel-perfect outline" shader for Godot 3.
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.
Godot Text Interface Engine (GodotTIE for short) is a simple-to-use node that works like a Text Dialogue Box; it gets the job done, and it's highly customizable (most of its variables can be changed on the editor).This is Godot v3.x version; the Godot v2.x can be found on the same repository, on the `Godot_v2.x` branch.
Using this plugin, you will be able to try to:- Create Godot PBR Materials automatically using their filenames...- Create inherited Scenes from your meshes...- Test your materials in a preconfigured Test Scene!- Order your Assets adding order_children_nodes.gd to it is parent node!- Add EnviromentTemplate.tscn to test your own scenesThe plugin is about 10mb only! It will appear as a Tab in the left dock.I created this plugin because I did not like the 3D workflow and I do not understand how to configure PBR Materials properly, so if you find some kind of error or know how to improve the results, please Contribute in my GitHub! Thanks!https://github.com/doradoro
/!\ This module is deprecated !!! See PythonScript module (https://godotengine.org/asset-library/asset/179) instead /!\ /!\ This module requires to restart Godot once installed /!\Introduction------------This is a beta version of the Python module for Godot.You are likely to encounter bugs and catastrophic crashes, if so pleasereport them to https://github.com/touilleMan/godot-python/issues.Working features----------------Every Godot core features are expected to work fine:- builtins (e.g. Vector2)- Objects classes (e.g. Node)- signals- variable export- rpc synchronisationOn top of that, mixing GDscript and Python code inside a project should work fine.Python and pip are working, however depending on platform and backend they- on Windows+CPython use `python.exe` and `python.exe -m pip`- on Linux+CPython `bin/python` and `bin/pip` are provided out of the box.However you must provide path to `libpython3.6m.so` to make them run:```$ LD_LIBRARY_PATH=`pwd`/lib ./bin/pip3 --version$ LD_LIBRARY_PATH=`pwd`/lib ./bin/python --version```- on Linux+Pypy `bin/pypy` runs like a charm, you should use ensurepip toinstall pip:```$ bin/pypy -m ensurepip$ bin/pypy -m pip --version```Not so well features--------------------Memory management is a big issue (given Godot and Python garbage collectors should be synchronized)so leaks are possible (hence Godot complaining there is still MemoryPool allocs in use at exit...).Exporting the project hasn't been tested at all (however exporting for linux should be pretty simple andmay work out of the box...).Have fun ;-)- touilleMan
Contains shaders for* Julia fractal* Mandelbrot fractal* Sierpinski carpetRead description on Github to see how to set it on ColorRect
A table control which can be sort and dynamic update1. Create table in editor2. Select table row3. Dynamic change data
Simple Gizmo that allows you to easily transform bones in the editor so you can do animations in Godot.
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.
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)
Import sprite sheets from TexturePacker as a set of AtlasTextures or a TileSet.Sprite sheets reduce the memory usage of your game by placing many small image objects in one big image.This also increases the game performance because less texture swapping is required during the render process of your game scene.For Godot 3.0
Godot-Stuff Logger (gs_logger)A GDScript based logging utility, it provides a very low level way to debug your Games. There are different Appenders and Layouts available that let you control how the logger output is delivered.Features* low overhead* simple to include in your projects* eight different logging levels* output to console or filesystem* html output available (experimental)This version supports the Godot Version 3.0 releases.For more information follow this linkhttps://gitlab.com/godot-stuff/gs-logger/blob/master/README.md