# VisualShader-IdMapVisualShader IdMap masking NodeIncludes:IDMap Sampler : Idmap by Sampler2DIDMap Texture : Idmap by Texture2DInputs:* IdMap Texture : IdMap Image Texture* Colorkey : Color to extract mask from IdMap Texture* Tolerance : Color values tolerance (Default = 0.05)Output:* Mask : Float value of the resultant maskCheck out CiaNCI Chanel on YouTube for more: https://www.youtube.com/@CiaNCIStudio
This plugin adds support for CrowdControl, allowing it to change how players play the game on streams.Based on https://github.com/nathanfranke/gdextension and the Unity plugin at https://github.com/WarpWorld/crowd-control-unity-pluginTested against 4.3This does not add effects to already released games -> I intend to look into this but atm this is not my priority
Template with a main menu, options menus, pause menu, credits, scene loader, extra tools, and an example game scene.This is identical to the Game Template, except for the opening has the GWJ logo and a space for the theme + wildcards to go.Created in collaboration with members of the Godot Wild Jam community.For usage information, visit the following:https://github.com/Maaack/Godot-Game-Template/blob/main/README.md#usage
Create tile-based 3D levels for dungeon crawler -style games.See GitHub repository for more information:https://github.com/ReunMedia/godot-levelblock
High level Networking Plugin for Godot.Humble allows the server to create and manage rooms for separate game sessions. For each room, Humble allows the creation of "Remote Nodes" that store and synchronize information for all players in the same room."Humble" works with the room system where each room has a single owner to manage it. Rooms can be created by any user (peer) on the network. Here's how:Get Started: https://github.com/QJPG/Humble-Plugin/wiki/Humble's-%7C-Connecting-and-creating-rooms
What is this?This is a Match Maker implementation for Godot.The Match Maker framework is a project to enable easy and customizable multiplayer between two or more peers, remotely and locally.It uses the "WebRTC (SIPSorcery)" plugin, also found here on the AssetLib (https://godotengine.org/asset-library/asset/2394) or on GitHub (https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/)Why use this?This project enables you to implement a fully working match-making based Multiplayer within a few lines of code inside Godot!The default settings already allow for most types of connection, for strict networks a TURN server as a relay is required.Read more here: https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/blob/main/Documentation/Match%20Maker/GettingStartedWithMatchMaker.md#better-connectivityHow to use this?1. Make sure you have a C#/Mono project inside Godot2. Install the "WebRTC (SIPSorcery)" plugin3. Install this plugin4. Add the 'SIPSorcery' package to your C# project.If you are using DotNet-Core, you can simply open a terminal and type:dotnet add package SIPSorceryFor more details, please refer to the GitHub page:https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/
Modified from Lanza Schneider's code: https://github.com/LanzaSchneider/godot-xBRZ/tree/mainYour mileage may vary for other versions of Godot, but my assumption is v4+ will work with little or no changes.
This plugin allows you to create nicely textured 2D polys. Simply place a few points then create / assign the shape material, and you should have a good-looking polygon.The textures used are similar to what you would use if making terrain using TileMap/TileSetSee Homepage here:https://github.com/SirRamEsq/SmartShape2DUsing SmartShape2D with Godot 4:https://github.com/SirRamEsq/SmartShape2D/blob/master/addons/rmsmartshape/documentation/Godot4.mdSmartShape2D + Aseprite tutorial can be found here (Thanks Picster!):https://www.youtube.com/watch?v=r-pd2yuNPvA
What is this?This is a Match Maker demo project for Godot.The Match Maker framework is a project to enable easy and customizable multiplayer between two or more peers, remotely and locally.It uses the "WebRTC (SIPSorcery)" plugin, also found here on the AssetLib (https://godotengine.org/asset-library/asset/2394) or on GitHub (https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/)Why use this?This project enables you to implement a fully working match-making based Multiplayer within a few lines of code inside Godot!The default settings already allow for most types of connection, for strict networks a TURN server as a relay is required.Read more here: https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/blob/main/Documentation/Match%20Maker/GettingStartedWithMatchMaker.md#better-connectivityHow to use this?1. Use this template as a starting project inside Godot2. Build the project AT LEAST once2a. (If on an older Godot version: Restart the Editor/Reload the project!)3. Go to the top left corner of Godot and go to Project -> Project Settings.Then, click on the Plugins tab and enable both plugins.For more details please refer to the GitHub page:https://github.com/SakulFlee/Godot-WebRTC-Match-Maker/
Plugin to combine Better Terrain and Gaea plugins.Requires Godot 4.3+, Better Terrain and Gaea. Only works with TileMapLayers.https://github.com/Portponky/better-terrainhttps://github.com/BenjaTK/Gaea
A minification tool for Godot 4.3+ that automatically compresses files in your web buildSpeeds up your game loading even if your server does not support gzip compression.DISCLAIMER!1. The compression ratio of a .pck file depends heavily on the set of assets in your project.2. Loading speed depends on server settings.3. On average, loading speed when using a plugin can be from 10% to 100% faster.See comparison calculations here: https://github.com/markushevpro/godot-minimize-html-build/blob/master/COMPARE.mdSupported host platforms (where your editor runs): Windows x64 onlyRecent updates:- Threads support & PWA support- Custom templates support & disabled Head Includes override- itch.io & servers with gzip compression supportRecent fixes:- Fixed a race condition on slow networks- Fixed wrong parsing of file names with spaces- Fixed wrong parsing of file names with dotsHow it worksThe add-on resaves large files (.pck, .wasm) with gzip compression and adds the ability to load gzip-compressed assets in the browser using pako. Nothing else will be changed in your files.Usage- Install the addon from AssetLib- Enable the plugin in your Project Settings.- Export your project to Web.More information at GitHub: https://github.com/markushevpro/godot-minimize-html-build
Plugin for incremental games that need to deal with massive numbers. Prioritizes speed over accuracy. Ported from break_infinity.js.It's designed with speed in mind, as it's written with GDExtension, and only allocates on stack (outside of stringification).For more information, check out https://github.com/peachey2k2/break-nihility