iOS In-app Review Plugin enables access to Apple App Store's in-app review functionality.Installation Steps:- click `Download` button- on the installation dialog... - leave your project's root directory selected as the target directory - leave `Ignore asset root` checkbox checked - click `Install` button- enable the plugin in your project's iOS export settings via `Project->Export...->iOS` in the Godot Editor- enable the plugin via the `Plugins` tab of `Project->Project Settings...` menu, in the Godot Editor
Asynchronous AMQP-0-9-1 Client Addon with RabbitMQ extensions for Godot 4.3Consult README.md and Example.gd for usage information.
A Native Database Addon for Godot 4I wanted to easily manage Resources for online Godot projects in an database without needing to write project-specific code for serializing, transmitting, deserializing, and validating those Resources.Alexandria is a project attempting to fulfill this niche. The primary goal is to help facilitate the creation of online games in Godot without necessarily writing any networking code."Alexandria" is the name of the overarching project, but it's made up of various individual plugins; alexandria.netserver is a server-side interface for remote database interactions.A pre-built database server application can be found at the releases page: https://github.com/BtheDestroyer/godot-alexandria/releases
Android Deeplink Plugin allows processing of Android application links that enable direct navigation to requested app content.Installation Steps:- click `Download` button- on the installation dialog... -> keep `Change Install Folder` setting pointing to your project's root directory -> keep `Ignore asset root` checkbox checked -> click `Install` button- enable the plugin via `Project->Project Settings...->Plugins` in the Godot Editor- for usage info, see https://github.com/cengiz-pz/godot-android-deeplink-plugin/blob/main/README.md
A Native Database Addon for Godot 4I wanted to easily manage Resources for online Godot projects in an database without needing to write project-specific code for serializing, transmitting, deserializing, and validating those Resources.Alexandria is a project attempting to fulfill this niche. The primary goal is to help facilitate the creation of online games in Godot without necessarily writing any networking code."Alexandria" is the name of the overarching project, but it's made up of various individual plugins; alexandria.db manages the local database and is a base dependency for other Alexandria addons.
This plugin extends GDScript's Signal and Callable classes, influenced by Cysharp/R3.The main purpose of this plugin is to make it easier to unsubscribe from Godot signals. However, it is not intended to fully replicate R3.Additionally, several simple operators are implemented.
Converts gdscript objects to bytes and vice versa, to save bandwidth or disk space.
A modular, component-based system for creating animated lights in the Godot engine, inspired by the dynamic light animations of classic Quake and Half-Life games.Features- 11 Animation Presets: Includes predefined light animation tables from Quake.- Custom Animations: Supports user-defined animation strings.- Editor Previews: Preview animations directly in the Godot editor.- Smooth Transitions: Optional fade effect to reduce stepping.- Material Integration: Light animations affect the lamp material’s emission property.- Example Project: An example project is included to demonstrate setup and usage, providing a quick way to understand how to configure and combine components.
100% Pure GDScript Software MIDI Player for Godot Engine 44.3.1 update:* Fixed preset velocity range bug* Fixed sample link bug4.3.0 update:* Optimize for loops.4.2.0 update:* Remove thread codes* Fixed boilerplate4.1.1 update:* Fix bug for using "Sample Mode Loop Ends By Key Depression".4.1.0 update:* Move GDScript to AnimationPlayer for ADSR volume controller * Update demonstration project.4.0.2 update:* Fixed for Godot Engine 4.0* Fixed clamp/max to clampf/maxf4.0.1 update:* Fixed for Godot Engine 4 RC14.0.0 update:* Ported from Godot Engine 3 version.
Replicate Operating System key presses and release into Godot.Useful if there is a need to listen key press/release when Godot window is not focus. Examples:- Overlays (like Steam and Discord show overlays)- Streaming software (like OBS Studio use to change scenes)- VTuber software (change character state)Compatibility with Linux (X11) and Windows.
A simple tool to automatically generate a UI for user inputs.Features- Supports loading from InputMap- Supports default keybinds across different keyboard layouts (As long as set from InputMap)- Supports saving / loading to files and/or exporting / importing for custom player data- Supports changing of keybinds via in-line editing or a different menu- Supports key combos such as CTRL + SHIFT + O- Debug only controls- Categories- Theme support for easy customisabilityPartial Features- Controller support (as well as any other type of input), will work but might not show up as best as they could.- Images instead of all just text based
A Script to get class type (Also works for custom class and cross-scripting). Can be used for pattern matching. Your script must have class_name (Or [GlobalClass] if C#) for this to work as intended