This script loads a WAD level data from games like DOOM, DOOM2, Heretic, Strife etc. and present it as mesh into your Godot project.
This is a lower-definition concrete or cement material, as commonly found in sidewalks, driveways, curbs, or construction.
This demo shows how to make correct objects stand up function for planetary gravity in Godot Engine. Requires Godot Engine 3.0 RC3 or higher version.Use Arrow keys or WASD to move the capsule and mouse to rotate.
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.
This is a high-definition concrete or cement material, as commonly found in sidewalks, driveways, curbs, or construction.
A basic water (spatial-) material for the Godot Engine 3.x.There is also a step by step video on you tube that shows how this material was created.
The user inputs the size of the map, the sprite of the tiles, and the number of tile. The asset then generates a random map each time the user calls its funtion.The asset is an entire godot scene that already have a map with tiles as an example. To change it you must create your own tilemap and edit the script.
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
Contains shaders for* Julia fractal* Mandelbrot fractal* Sierpinski carpetRead description on Github to see how to set it on ColorRect
A "3D pixel-perfect outline" shader for Godot 3.
/!\ 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
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)