Embrace a more data-driven workflow! Simply create a class which extends "data_item.gd" and create as many instances as you wish. Access the data with a powerful and simple to use API.Features:* Create data classes with the click of a button* Use gdscript to add properties and logic to your data classes, all instances will be Nodes* Supports binary and json serialization* Make use of the built-in export property hints* Add instance-specific custom properties* Access data with a simple API using the "data" singleton* ALPHA: Use the notification/observer system to react to changes in data items* ALPHA: Encrypt your data filesImportant: Do not forget to add a singleton called "data" which references the following file: "your_project/addons/godot_data_editor/data.gd"
A heightmap-based terrain node for Godot Engine 2.1, written in GDScript. More details in README or Github.Note: while I think the plugin can be used, I plan to add more features so I set the major version to 0. Expect potential changes in the API when minor version increases (the last version digits are for bug fixes and small features)If you encounter any bug, take a look at the issue tracker: https://github.com/Zylann/godot_terrain_plugin/issuesFeature changelog:0.4:- Added texture paint through vertex colors- Added HumanSheeple's shader to support up to 18 textures- Added jump to the demo, I guess- Fix Modo navigation conflict0.3:- Added collisions- Improved demo with a simple character controller- New icon0.2:- Added flatten brush mode- Fix terrain having no default size0.1.1:- Fix bottom panel editor conflict0.1: Initial release- Heightmap edition with undo/redo- Small demo with simple texture-less shader
A Plugin for the GodotEngine to import MagicaVoxel's .vox format as meshes For Godot version 2.1.xHow-To:Install the Plugin using the Asset Lib.To Start importing go to: Import -> MagicaVoxelChoose the file to load from, and a Folder to save the Mesh in, and press "OK"The .msh file was now created, you might notice that it is plain white. The Color vertices are not enabled yet. To enable them, add an Fixed Material to the Mesh and enable its "Use Color Array" Flag. The colors should now appear. Have fun!
This plugin adds a new TreeNode node to Godot. After having created a resource to this node and attached it the TreeNodeResource script provided, the user can design Dialog Trees in the TreeNode.
A simple tool to import skyboxes (cubemaps) from Internet resources sites to use in Godot Engine.For comments, requests and other things use this thread https://godotdevelopers.org/forum/discussion/17435/godot-skybox-converter-plugin#latest
Do you like thin sharp lines of Kentucky Route Zero? Do you like Battlezone? Do you want to use wireframe art style? Do you need outline shader? The problem of pure wireframe look is that every edge of the model is rendered. And because every model has to be triangulated before rendering, you will get a very noisy look with a lot of unwanted triangles. This tool will help you to create customized wireframe from imported mesh.
'Aseprite import' is an import plug-in for animated sprites created in sprite editor and pixel art tool Aseprite (http://www.aseprite.org/).Aseprite generates sprite sheet and metadata files on export, which are then imported into Godot Engine projects as scene files.Further changes made from Aseprite are merged intelligently into already imported scenes, so that modifications made to nodes and animations are retained.Read the included README.markdown file for instructions and important notes.Sprites used for preview: 'Animated Skeleton' (http://opengameart.org/content/animated-skeleton) by Calciumtrice, used under CC BY (https://creativecommons.org/licenses/by/3.0/legalcode)
A simple, unobtrusive, editor plugin for tracking the time spent on a project.
What it doesIt records your project lifetime (an duration), so you can know when you started and how long you have been working on a project.It also provides some basis analysis of your project like file sizes, file types, line of code etc.This is my first (hello-world) Plugin.Feel free to tell me how to make it more useful..Hope you might find it useful or !:D
This node plug-in for Gotot Engine enable a new kind of 3D camera, you can use it with phone vr headset or cardboard.It provide screen split for stereoscopic vision and head tracking by using accelerometer and gyroscope sensor on the phone, if gyroscope is not found, magnetometer will be used as fall back.Gyroscope data are matched with accelerometer data so to have a very accurate and responsive tracking, unfortunately only hi-end phones provide gyroscope, so, magnetometer is supported too.Magnetometer outputs a very noisy data, so, the signal is filtered in order to make it usable. The drawback of filtering data is that you introduce a lag. You can balance noise and lag by modifying the Magnetometer Interpolation parameter in the camera inspector.Changelog:- v.0.5 initial release- v.0.6 only some mess with github- v.0.7 added support for interactive objects
Simple 3D Water Shader for Godot Engine.
Navigation Agent for Godot Engine.See https://github.com/khairul169/gd-nav_agent for method list.
The plugin for godot editor to import Sprite atlas into your game project.Supported sprite sheet format:TexturePacker : XMLTexturePacker : JSONAttila : JSONKenneyAssets : XML
TortoiseHg (Mercurial) integration for GodotAdds a few shortcuts so TortoiseHg is opened automatically for the correct folder.The first button allows creating a new local repository so that the current project folder becomes a working copy.v0.12: added a default ignore file that ignores the addon and its readme and license filev0.11: fixed a but that kept the plugin from working under Linux
Lightweight framework for making cutscenes in video games, and making visual novel or adventure games. Write your scripts in SGLscript, a simple scripting/markup language designed for writers, and use an interpreter object to interface that with your game.Comes with examples. Documentation on GitHub.Changelog:v0.1.1: Fixes interpreter unpredictably skipping commands and textv0.1: Initial release
DigiVR is a project aimed to port GoogleVR system to Godot Engine. It's aimed now as a plugin, so feel free to give feedback.
DigiVGamepad is a project aimed to add a virtual joystick for mobile devices using Godot Engine. It's aimed now as a plugin, so feel free to give feedback.
A simple TODO list add-on dock for the Godot game engine. On load, the it looks at all GDScript (.gd) files and scene file built-in scripts (.tscn, .scn, .xscn) for lines containing "TODO: " or "FIXME: " and displays them accordingly.
Godot plugin to show input on Editor's screen. It's thought to be used on video tutorials.
# animated cameraA small addon to make controlling third person cameras easier.This addon adds a new type of node that will simplify creating a camera that looks at a specific position/node from a set distance and angle.Also there are options to let it move around that position in a circle or to change that point/position and angle with a transition.The speed of these animations/transitions can be controlled as well by defining how long they may take.
A SICK Mod of Zylann's terrain editor that now lets you paint your terrain entirely from vertex color and alpha data, NO UV's!!!!Choose from 16 seemless gorgeous textures to rapidly develop your game with ease.Simply load up the plugin, select the terrain, select vertex paint, choose a color, choose a brush and you're ready to go.Remember you can change the alpha values of your color for the other 8 terrain types.Slopes and snow are autogenerated from normal and height data.HAVE FUN!!!Update 05/20/2017: V1.1 Released Now features easy terrain icons to make painting your terrain even simpler :)
A 2D top-down vehicle controller node. A demo scene is included.