
Made in collaboration with Cup Nooble. https://cupnooble.itch.io/
Made in collaboration with Cup Nooble. https://cupnooble.itch.io/
This asset will provide you with the tools to have a click and draggable inventory that allows you to set data to items, and then have a script that will then summarize the combined values of the equipped items.
GDLog is a logging and graphing tool written in C# for Godot 4.2 that lets you quickly and easily track real-time data in your projects. The plugin was designed for simplicity and ease of use: the entire API surface is just two methods!
A Godot TODO controller You can quickly view all TODO comments, TODO comment categories, quickly jump to the corresponding code, TODO comment search
Simple project where gears spin if they can, or get stuck if trying to spin multiple ways. Video is linked below and here: https://youtu.be/nSa7Zraj9UE See all my assets here: https://godotengine.org/asset-library/asset?user=ThinkWithGame
Custom Folder Icons Addon For Godot 4 Allows you to choose a custom icons for folders. (also works with files) How Work In the godot file system, press RMB (right click) on any folder/file you want to iconize and select Custom Icon from the menu.
Minimal example on how to do raymarching in Godot 4. Normals and depth work out of the box.
A smooth, feature-rich top-down camera plugin for Godot. Effortlessly pan and zoom your 2D game scenes with intuitive controls and configurable boundaries. Ideal for strategy and simulation games, with camera controls inspired by titles like Hearts of Iron and Stacklands. Main Features - Smooth Cursor-Centric Zoom & Pan Seamlessly zoom in and out towards the mouse cursor, with smooth camera movement and interpolation for a polished feel. - Visual Boundary Configuration Easily set and visualize camera movement limits in the editor. - Edge Scrolling Automatically pan the camera when the mouse approaches the screen edges. - Keyboard Control Move the camera with keyboard input.
Simple implementation of inventory system for scalable items. Like Unturned
A powerful and user-friendly JSON editor plugin for Godot Engine 4.x that provides a visual interface for editing JSON files. Features: Visual tree view for JSON structure Direct JSON text editing File management (load/save) Type-safe value editing Support for all JSON data types: Strings Numbers Booleans Arrays Objects (Dictionaries) Real-time validation Integrated with Godot editor
Custom button node that gives you some basic hover animations by default for scale and position. How to use: - Simply download the addon from release tab and copy it in your res://addons folder. - Then enable the plugin from the project settings. - Finally a new custom node called AnimatedButton will appear when creating a new node.
# Node Distance Tool for Godot The Node Distance Tool is an addon for Godot Engine that allows users to select two 3D nodes and measure the distance between them. It creates a line connecting the nodes and displays the measured distance in the scene. This addon is useful for developers who need to measure distances between objects during game or simulation development in Godot. ## Features - Select two 3D nodes and measure the distance between them. - Visualize a line connecting the two nodes. - Display the rounded distance in meters between the nodes. - Shortcut "Q" for easy selection and measurement. - Option to reset measurements (remove all lines and labels) with a dedicated button. ## How to Use 1. Install the addon in your project's addons folder in Godot. 2. Enable the addon in "Project > Project Settings > Plugins". 3. In the 3D scene editor, select the first node and press "Q". 4. Select the second node and press "Q" again to measure the distance. 5. Use the reset button to remove the measurement lines and labels, if necessary. ## Requirements - Godot Engine version 4.0 or higher. /// Update 1.1 brings three new Node Distance Tool measurement modes: Normal, Continuous, and Togheter. In Normal Mode, you measure the distance between two nodes and a line connects them. In Continuous Mode, measurement is automatically performed between consecutive nodes without the need for restart. In Togheter Mode, you select multiple nodes and when you move any one, the distance between them is recalculated. - button to block the creation of lines and labels - and buttons to activate continuous and set modes ///
High Level Custom Multiplayer Implementation for Godot. * Custom network implementation. * Easy communication between player and room. * Control and restriction of players between each other.
# godot-dice-roller A Godot UI control that rolls 3D dices in a box. ## Features * Configurable setup: - Dynamic set of dices: d4, d6 and d10 - Custom colors for each dice - Configurable box size and color * 3 ways to roll: - Physics based dice rolling (slow but cool) - Turning dices to a computer generated random value (faster but unnatural) - Turning dices to a given value (useful when the actual rolling is done remotely) * Easy to integrate in your code: - Trigger rolling programmatically from buttons or shortcuts - A signal notifies after the rolling - Obtain results for individual dices or add up. * Responsive to layouts: - The control adapts to the available space given by the layout - Whichever the resulting size, the camera adapts the zoom to fully see the rolling box floor - Automatically rotates the rolling box if the control aspect ratio is inverse to the one of the box ## Usage - Install the addon in your project from the AssetLib - Exclude files outside `addons/` to avoid conflicts - Enable the plugin in the project settings - Insert a `DiceRollerControl` as part of your UI - Depending on the layout you might want to set a minimum control size - Setup the dice set attribute with some dices - You might want to adapt the box size to the number of dices to avoid rolls impossible to fit in - Trigger a roll by calling `roll()` method on the control. - Alternativelly, use the `quick_roll() to skip physics simulation - Also you may enable the `interactive` flag to roll on click or quickroll on right-click - Connect the `rollFinished(value)` to your code - Use the incoming value from the signal as the added value or use the `result()` method - You can also use the `per_dice_result()` to get individual values for each dice - You can emulate external rolls with `show_faces(result)` # Changelog ## 1.4.0 (2025-02-10) - New dice: d20 - New dice: d10x10 - `interactive` flag to enable/disable roll on click - Expose in control the `show_faces` method to represent external rolls - Control icon clearer without outline and bigger dices - Improved documentation (README and reference) ## 1.3.0 (2025-01-28) - New dice: d10 - d4: proper shape for the highlight - Android support - Example scene, now available as Android App - Generate F-Droid metadata ## 1.2.1 (2025-01-07) - Example: Full dice set editor: Add, Remove, Edit - d4 and d6 code mostly merged ## 1.2.0 (2025-01-06) - New dice: d4 - Beveled borders for d6 - Generalization to favor inclusion of more shapes of dices ## 1.1.1 (2025-01-03) - Cleaner installs - screenshots and build files excluded from package - examples moved to `examples/dice_roller/` for cleaner merge in user's project along with other plugins. ## 1.1.0 (2024-12-23) - API stabilized. From now on, api changes will imply major and minor version changes following semantic versioning. - Highlights without artifacts - New script to upload to the asset lib using project metadata ## 1.0.5 (2024-12-19) - DiceRollerControl can be created without instantiating the scene, just by creating selecting the node type. - Expose roller attributes in Control (box size and color) - Method `per_dice_result` returns the value of each dice - Example: New button to add dices interactivelly - Added Environment with ambient light for more natural look - Fix: rolling after fastrolling kept the highlight - Fix: avoid changing the dice set while rolling - Removed non essential files from the package ## 1.0.4 (2024-12-13) - More natural initial arrangement of dices - `DiceRollerControl` signal `roll_started` - `DiceRollerControl` method `quick_rolling` - Example updated to show how to use them - Scenes cleanup of uneeded properties - Packaging: Added previews and fixed name to match ## 1.0.3 (2024-12-11) - Dices set can be defined with control properties - Dices are auto-named if no name given or the name conflicts with other dices - Lights adjustments. - Fix: Dice colors looked as dark as far they were from yellow. Svg texture was loaded with a yellow background. Using png export instead. - Fix: Dice highlight position degradated with each roll. Floor offset was not properly oriented and accomulated. - Fix: Freeze when when quick rolling a set bigger than two. ## 1.0.2 (2024-12-02) - CI to release from github actions - Icon and classname for RollerBox ## 1.0.1 (2024-12-02) - Example out of the addon - Documentation and metadata ## 1.0.0 (2024-12-02) - First public release - Extracted from godatan project - Reorganized object responsability - Code distributed into a folder per scene - Roller box can be resized - Generated collision shapes to enable dinamic - Set camera so that the viewport adjust the floor of the box - Rotate the camera so that box and viewport matches portrait/landscape orientation - Added an example of usage within a UI - Debug tools
This native Godot extension provides real and complex matrix algebra. It also includes ODE solver based on ODEINT, BoostC++ Geometry algorithms. Checkout demos: https://github.com/dmrokan/gdblas/releases/download/v1.4.0/demo.zip https://github.com/dmrokan/gdblas/releases/download/v1.4.0/demo3d.zip
A UUID generator for Godot Engine, with 1.295×10^50 combinations it'll work for any sized game, never having to worry about running out of unique IDs! Automatically stores new UUIDs and removes old ones.