This tool lets you generate normal and specular maps using Laigter: https://github.com/azagaya/laigter from within the editor.
This Plugin lets you preview colours from code in the same line directly next to the line numbers and breakpoints. Click any preview to open a color picker where you can edit the color directly.Supports all variations of the standard Godot 'Color' and also shader 'vec4' for previews and changing via the color picker.----------------------------Feel free to visit the GitHub repository https://github.com/Qubus0/GodotColorPreviewIdeas, contributions and stars are all welcome :)----------------------------Installation:In the Godot Editor, go to the AssetLib tabSearch for 'Color Preview', select and press DownloadSelect only the addons/ColorPreview folder and press InstallOr:Download/Pull from the GitHub repositoryAdd the ColorPreview/ directory and its contents to the addons/ directory in your Godot projectEnabling the addon:Go to Project > Project Settings... > Plugins and press EnableOnce you have done this, every line containing a Color will have a preview left of the breakpoint gutter.
It is a basic Tic Tac Toe game made in Godot 4. You can play this game with both a human and an AI opponent.Video Tutorial: https://youtu.be/bTcfgFHbzB4KingGD stands for King Game Developer.Please subscribe my channel for more updates: https://www.youtube.com/channel/UC8l-lYjEmIYoxvvIPmE4HPw
A powerful validation plugin for Godot that catches errors before they reach runtime. Validate scenes, nodes, and resources using a declarative, test-driven approach. No @tool required!Key Features- No @tool required - keep gameplay code free of editor logic- Verify type of PackedScene - introduces type safety to PackedScene references- Automatic scene validation - errors appear instantly when saving scenes- Dedicated validation dock - click errors to jump directly to problem nodes- Supports Nodes and Resources - validate both scenes and data assets- Declarative, test-driven syntax - write validations like unit tests- Reusable & nested conditions - scale from simple checks to complex rulesChangelog: https://github.com/codevogel/godot_doctor/releases/tag/1.0.1* Full documentation, examples, and setup guide available on GitHub (click the VIEW FILES button)
An integration for ink, a powerful narrative scripting language. GodotInk is mainly aimed at C# games, but is completely interoperable from GDScript. - Project home page: https://github.com/paulloz/godot-ink/- Installation: https://github.com/paulloz/godot-ink/wiki#%EF%B8%8F-installation- Quick start guide: https://github.com/paulloz/godot-ink/wiki#-quick-start-guide
Here's a little something for you to animate values such as floats, ints and Vector2. You just have to write DampedOscillator.animate(node, propertie, string, damp, velocity, scale_ratio) and your value will be animated.See the demo for more infos on how to use it.(Original idea from: https://www.youtube.com/watch?v=YBgCUQVDRkw&ab_channel=MrElipteach)
# Nerd Fonts plugin for GodotUse [Nerd Fonts](https://www.nerdfonts.com) 3.4.0 icons in Godot 4.x!Nerd Fonts includes 10,764 icons from 17 icon sets: FontAwesome, Material Design, Devicons, Codicons, Octicons, and more.## UsageCreate a new "NerdFont" Node and configure its values. To change color, simply go to theme overrides and change the font color.All icons can be found under **Project > Tools > NerdFont Icons**.### Icon Categories- `cod` - VS Code Codicons- `custom` - Custom icons- `dev` - Devicons (programming languages/tools)- `extra` - Extra glyphs- `fa` - FontAwesome- `fae` - FontAwesome Extended- `iec` - IEC Power Symbols- `indent` / `indentation` - Indentation guides- `linux` - Linux distribution logos- `md` - Material Design (largest set)- `oct` - Octicons (GitHub)- `pl` / `ple` - Powerline / Powerline Extra- `pom` - Pomicons- `seti` - Seti UI icons- `weather` - Weather icons## Using Different FontsThe plugin includes `SymbolsNerdFont-Regular.ttf` by default (icons only, ~2.4MB).You can replace it with any patched Nerd Font from [nerdfonts.com](https://www.nerdfonts.com/font-downloads):1. Download a font (e.g., FiraCode Nerd Font, JetBrains Mono Nerd Font)2. Extract and copy the `.ttf` file to `addons/nerdfonts/fonts/`3. Update the `icon_font` path in `NerdFont.gd`## UpdatingTo update to a new version of Nerd Fonts:1. Download `glyphnames.json` from the [Nerd Fonts repository](https://github.com/ryanoasis/nerd-fonts)2. Open `utils/dump_nerdfonts.html` in a browser3. Drop `glyphnames.json` into the page4. Copy/download the output and replace `All.gd`5. Update font files in `addons/nerdfonts/fonts/` if needed
Testing Framework for GDScript in Godot 4 Game EngineFeatures: - Supports creation of custom user-defined tests. - Provides an editor dock to display all tests and their results. - Offers a Testing singleton with methods for easy assertions in non-test code.Please see the Github repo for more more information and the latest version of the plugin!https://github.com/accmltr/simple-testing-godot
Mingos' Restrictive Precise Angle Shadowcasting is an algorithm used by traditional roguelike games for determining which map cells are in the player's field of view.See the README for instructions on usage: https://github.com/matt-kimball/godot-mrpas-assetlib/blob/master/README.mdA demo project using this algorithm is available on github: https://github.com/matt-kimball/godot-mrpas
# WDebugger: A Git-friendly DebuggerMost (if not all) of the debugging plugins have two major flaws that I always disliked:1. They are not git-friendly. You can't ignore the debugging functions, therefore they're committed to the git history. This causes: - Bloat in your git history - Unwanted changes to files when you just want to change a debugging function - Conflicts when working in a team - which is probably the most important issue2. They take too much space on the game, which interfers with the testing; Whether be a debugging console that pops up, or just normal GUI buttons you have defined.To Address and fix these issues, I made this plugin. It solves the first issue by separating the debugging functions in a specific file (which you can put in `.gitignore` afterwards); And solves the second problem by introducing a Window node that is separate from the main window.If you enjoyed the plugin, please give it a star on Github: https://github.com/zmn-hamid/Godot-WDebugger## How To TestJust enable the plugin in the settings and run your game. If you're happy with the plugin, you can continue to the next section:## How To Use1. Define your debug functions inside `addons/wdebugger/wdebugger_core.gd` with the given instruction inside that file.2. Open `.gitignore` file in your root directory and write the path to the core file inside of it:`addons/wdebugger/wdebugger_core.gd`3. Enable the plugin and enjoy!## How To Move The Core File1. Cut/Copy the core file and paste it anywhere you want2. Define this new path inside `.gitignore` and `addons/wdebugger/wdebugger.gd` -> `wdebugger_core_path` variable.## ContributionEven though this is a fully functional plugin, any reasonable and beneficial contributionis highly appreciated. Feel free to make your changes and make a pull request or to just simply open an issue Please visit the project on github for more info: https://github.com/zmn-hamid/Godot-WDebugger# LicenseThis project is licensed under the GNU General Public License (GPL) v3. See `LICENSE` for full terms.
A kanban (trello-like) task and project management tool that is saved to your Godot project.Original made by Leon Oscar Kidando:https://github.com/kidando/gkanban
The official open-source Godot client for Nakama server written in GDScript.Nakama is an open-source server designed to power modern games and apps. Features include user accounts, chat, social, matchmaker, realtime multiplayer, and much more.This client implements the full API and socket options with the server. It's written in GDScript to support Godot Engine 4.0+.Full documentation is online - https://heroiclabs.com/docs