Godot PostgreSQL Client is a GDscript script / class that allows you to connect to a Postgres backend and run SQL commands there. It is able to send data and receive it from the backend. Useful for managing player user data on a multiplayer game, by saving a large amount of data on a dedicated Postgres server from GDscript.The class is written in pure GDScript which allows it not to depend on GDExtention. This makes it ultra portable for many platforms.Detailed documentation: https://github.com/Marzin-bot/PostgreSQLClient/wiki/Documentation
Loggot is a Godot add-on that allow total control on logs.
Godot Gameplay Systems (formerly godot gameplay attributes) is a set of nodes and resources which speed up development of your gameplay mechanisms.Currently it provides:- An Attributes base system (complete with buff/debuff)- An Ability base system- A camera shake node- A slide show node for your game intro- Equipment base system- Inventory base system- Interactions system (base)- Loot and drop system- Point and click nodes (both 2d and 3d)- Turn based nodes- User interface controls (radial menu container)
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
Godot Http Client LibraryBiblioteca Http para Godot.
Logger is a GDScript singleton that provides a logging API for Godot projects.It allows logging messages with different levels (error, warning, info, debug, verbose) and user-defined modules/channels. The output can be done to the console/terminal, to files, or to a configurable buffer that can be retrieved and displayed in game.NB: The current version is a work in progress, and the API *will* evolve in the near future until a version 1.0 is tagged.
Display the hidden start block in a frame at the top of the script editor.
Flexible player controller for FPS games or any kind of game with first person camera.Features:- walk in any kind of map with collision- stick to elevators and moving platforms- ready to use, simply drag'n'drop, set the kind of weapon, and it's ready.- flexible weapon architecture for custom weapons- climbs stairs and slopes properly- easy sound system- impact effects, like fire, acid and explosion.Doesn't contain:- assets like meshes and sounds.
MMO Client for KrakenFramework
The name-generator class is a GDScript 'static' class that provides a random name generation for Godot Engine.
Finite state machine script that supports timers, condition evaluation and imbricated statements.This script has no depency and should be compatible with any Godot version. Installation:Copy the fsm.gd script file in your project.Usage:You don't need to change your existing code. Simply add this code where you need the machine :onready var my_fsm=preload("fsm.gd").new()my_fsm.add_state("state1")my_fsm.add_state("whatever state")my_fsm.add_link("state1","whatever state","condition",[self,"my_condition1","expected value to switch"])my_fsm.set_state("state1")func my_condition1(): return some_valueThen in a loop, like _process(delta), call :my_fsm.process(delta)To catch the signal when the current state changes:my_fsm.connect("state_changed",self,"on_state_changed")More documentation and examples on the Github page.
Artificial intelligence for characters moving in a 3D terrain in Godot.Features :- State machine- Travel with dynamic waypoints- No need for a navigation mesh- Avoid walls and holes