Asynchronous resource loader/saver.
SimpleKnob is a UI knob control for Godot 3.x intended to be a drop-in replacement for standard HSlider controls. Themes and overrides created for HSlider should "just work". Includes customizable grabber pointing orientation (inwards/outwards), knob thickness (Values < 100% create hollow or arc knobs), notch (arc) width, decimal padding, and title/value positioning.Update history:1.11: Added an option to restore the original knob behavior where the value can only change relative to the previous one rather than snapping to the closest value to the mouse position on first click1.1: Fixed input events being consumed when the control shouldn't be visible, such as when obscured or in another tab. 1.0: Initial version
Functions for supporting a dice rolling syntax (eg "4d6d1!"). Allows for dice rolls and probability calculations. The syntax supports dropping high/low rolls, exploding/compounding dice, and rerolls. See https://github.com/oganm/dice_syntax_gd for a documentationJump from 1.1 to 2.0 renames a few functions for clarity. Re-visit documentation if updating. (https://github.com/oganm/dice_syntax_gd#breaking-changes-11-to-20)
Kanban Tasks - Todo Manager is a kanban board addon for the godot engine.Features- Renamable stages- Tasks with detailed description and titles- Search in tasks and task details- Intuitive drag and drop usage utilising the godot build in drag and drop- Support for shortcuts *- Categories **- Different stage layouts with multiple stages per column ***- Supports all editor themes including light ones* uses godot defaults because the custom shortcuts cannot be accessed; not tested on mac (would be nice if someone could test)** new categories can currently only be added via editing the data.json file*** the layout can currently only be changed via editing the data.json file
A Godot addon to help create and use branching dialogues in your game project.Features include: Dialogue Tree editor Open, Edit, & Save multiple files Multiple Dialogue Trees per file Built-in tester for your dialogue trees DialogueBox node to run your dialogue trees in-game Easy to understand export files (JSON files) Easily extend/add more nodes for advanced functionality
A Godot's universal serializer for size optimizationFeature:1. Without losing type information. Need not type detection andforced typce conversion in Cross end transfer,just like local parameter transfer.2. Integer and float are variable length serialization.3. The serialized data size is smaller than JSON text to utf8 and the native serialization method (var2bytes ()).GUS is especially suitable for the serialization of structured small dat transfer in multiplayer games.You can call GUS._test() to view the data size comparison after serialization in these three way.How to use:1. Modify the configuration definition constants at the beginning of the script as required.2. Pass variable which without Object and Eid into GUS.to_bytes() and gets the serialized data for sending through any network peer.3. After the remote network peer obtains the serialized data, passe it into GUS.to_var () to get the same variable as before serialization.Additional: The obtained serialized data can be passed into GUS.get_ pretty_ json_text(), a beautified JSON text will be return, which is for printing and display when debugging.Be careful:1. The configuration definitions of cross end applications should keep the same.2. Array and Dictionary should not contain Object or RID.3. Because of implementing by GDScript, although the serialized data size is better, it will cost lot of time when serialization and deserialization large array(both Array and PoolArray), you should avoid to use GUS in time sensitive case.TODO:1. Write GUS 2.0 applicable for godot4 X .2. Write as C++ addons to solve the problem of low efficiency of large array serialization.
This is an addon for Godot that allows you to very easily add subtitles to your game. This was intended to easily integrate into an existing game and be simple enough to manage for a game jam.Subtitle styles currently supported:* 3D Spatial Subtitles (it locks to the 3D position where the audio originates, or along the screen edge if the sound was off-screen)* Dialogue subtitles.(Handled in a queue so all the subtitles are seen)There are several options available for changes to the subtitles, and the system uses Label nodes for the subtitles, so if you have translations registered, they will translate automatically using the keys you provide.
These are support scenes for creating AR and VR applications in Godot. They need to be used in combination with one of the AR or VR interfaces.This plugin has been tested with Godot 3.4, it may work with earlier versions.Documentation is provided here:https://github.com/GodotVR/godot-xr-tools/wiki
This is a basic editor plugin for the Godot engine to simplify uploading projects to Itch using Butler
# Godot Scene Factory2D and 3D Nodes for spawning scenes## API### Signals- `spawned`: Is sent after an entity is spawned.### Export Variables- `entity_scene`: The scene to be spawned.- `entity_parent_path`: The path of the node that should be the parent of the spawned entity. defaults to the factory node.- `timer_path`: Allows you to you connect a timer that will spawn an entity when it times out.- `set_entity_as_toplevel`: Whether or not to set the entity as the top level.### Functions- `spawn`: Spawns an entity.## Attribution[Factory](https://icons8.com/icon/cFq1ElpDRijU/factory) icon by [Icons8](https://icons8.com)
A very simple and easy to use Finite State Machine for Godot.
A Godot plugin that ports sfxr, the popular program of choice to make retro sound effects for games.You can use sfxr sound files like regular audio files in Godot and edit sound files like in the original sfxr.