• Stars
    star
    962
  • Rank 47,540 (Top 1.0 %)
  • Language GDScript
  • License
    MIT License
  • Created about 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Godot Node Extensions - Basic Node Extensions for Godot Engine

godot-next

Description

Godot Node Extensions, AKA Godot NExt, is a Godot 3.1+ repository dedicated to collecting basic script classes that are currently unavailable in vanilla Godot.

As you might have noticed, Godot Engine's initial node offerings are general purpose and are intentionally not oriented towards particular types of games.

This repository's purpose is to create classes that fulfill a particular function and work out-of-the-box. Users should be able to use your class immediately after creating it. For nodes, don't be afraid to design ones that have an array of dynamically generated children. ;-)

Note: The repository is named after Nodes, but ultimately any general-purpose type is welcome here (References, Resources, etc.).

If you like the project, please star it. If you'd like to support its development, please send tips to my Kofi.

Jump to Class List

How to Use

  1. Download the repo directly (the AssetLib version is no longer maintained)

  2. Copy the addons directory to any project you would like to use them in

  3. Open Project Settings and go to the Plugins tab.

  4. Find the godot-next plugin and select "Active" from the dropdown on the right-hand side.

  5. You should now be able to create each new type of node in your project!

How to Contribute

Ideas

If you have an idea for a node that you would like to have added to the repository, create a new Issue.

Scripts

All scripts must be script classes, i.e. scripts with registered names.

All scripts must have the author's name at the top.

All credits related to any associated script code or icons should be kept in the ATTRIBUTIONS.md file.

All scripts must adhere to the relevant language's styling conventions, modeled after Godot Docs examples and the Godot Engine source code.

All C# scripts must be submitted to a separate addons/godot-next-cs folder. This is to ensure that users who aren't using the Mono-enabled version of Godot do not have C# scripts present.

Submissions are encouraged to do the following:

  1. Provide a 16x16 SVG icon for each submitted script.
  2. Use statically-typed GDScript if submitting GDScript files.
  3. Create mirrored versions of GDScript and C# scripts between folders.
  4. Add your node(s)' information to the bottom of the README, if possible (less work for maintainers).

That's it! I hope you've got ideas of what you'd like to share with others.

Classes

Linkable Node Name Description Languages
Array2D A 2D Array class. GDScript
ArrayMap A Resource that maps String keys to Variants in an Array for fast iteration. Serializes all data as individual properties to avoid storage bugs in Godot 3.x. GDScript
BitFlag A class that allows abstracts away the complexity of handling bit flag enum types. GDScript
Bitset A class that allows for easily manipulated bitmasks of any size. GDScript
Behavior A Resource type that automatically calls Node-like notification methods when paired with the CallbackDelegator class. GDScript
CallbackDelegator A Node that manages a ResourceSet of resources and delegates Node callbacks to each instance. GDScript
ClassType A class abstraction, both for engine and user-defined types. GDScript
CSVFile Similar to ConfigFile, parses a .csv file. Can generate a key-value store from rows. Supports .tsv files. GDScript
Cycle Cycles through child nodes without any visibility or container effects. GDScript
DebugLabel A label which displays a list of property values in any Object-derived instance at run-time for debugging purposes. GDScript
EditorTools A utility for any features useful in the context of the Editor. GDScript
FileSearch A utility with helpful methods to search through one's project files (or any directory). GDScript
FileSystemLink A utility for creating links (file/directory, symbolic/hard). GDScript
Geometry2D A utility that draws a Shape2D using CollisionShape2D's editor plugin handles. GDScript, C#
Inflector A vocabulary wrapper of inflection tools to pluralize and singularize strings. GDScript
InspectorControls A utility for creating data-editing GUI elements. GDScript
MessageDispatcher A base object that handles signaling for non predetermined signals. GDScript
PhysicsLayers A Utility class which allows easy access to your physics layers via their names in the project settings. GDScript
ProjectTools A utility for any features useful in the context of a Godot Project. GDScript
PropertyInfo A wrapper and utility class for generating PropertyInfo Dictionaries, for use in Object._get_property_list(). GDScript
ResourceArray A ResourceCollection implementation that manages an Array of Resources. GDScript
ResourceCollection An abstract base class for data structures that store Resource objects. GDScript
ResourceSet A ResourceCollection implementation that manages a Set of Resources. GDScript
Singletons A utility for caching Reference-derived singletons. Resources with a SELF_RESOURCE constant with a path to a *.tres file will be automatically loaded when accessed. GDScript
Trail2D Creates a variable-length trail that tracks a "target" node. GDScript, C#
Trail3D Creates a variable-length trail on an ImmediateGeometry node. GDScript, C#
Tween Sequence A helper class for easier management and chaining of Tweens dynamically from code. GDScript
Vec2 Adds more constants for Vector2. GDScript, C#
Vec3 Adds more constants for Vector3. GDScript, C#
VectorDisplay2D Displays Vector2 members in the editor via Position2D nodes. GDScript
VectorDisplay3D Displays Vector3 members in the editor via Position3D nodes. GDScript
Variant A utility class for handling Variants (the type wrapper for all variables in Godot's scripting API). GDScript
VBoxItemList Creates a vertical list of items that can be added or removed. Items are a user-specified Script or Scene Control. GDScript
DiscreteGradientTexture Creates a not interpolated texture for a gradient. GDScript

More Repositories

1

godot-realistic-water

Godot - Realistic Water Shader
GLSL
715
star
2

godot-debug-menu

Display in-game FPS/performance/hardware metrics in a Godot 4.x project
GDScript
438
star
3

godot-lod

Level of detail (LOD) add-on for Godot 3.x (GLES3 and GLES2)
GDScript
231
star
4

godot-plugin-refresher

Adds a dropdown and refresh button combo to the toolbar for instantly toggling off/on a plugin. Enables faster workflows for Godot plugin developers.
GDScript
155
star
5

godot-antialiased-line2d

Fast antialiased Line2D and Polygon2D drawing add-on for Godot 3.x (GLES3 and GLES2)
GDScript
131
star
6

godot-tensorflow-workspace

Machine learning for Godot Engine
117
star
7

godot-interpolated-camera3d

Provides an InterpolatedCamera3D node that replicates its 3.2.x functionality (and more)
GDScript
85
star
8

hydro

Hydro is a Godot Engine module which allows rigid bodies to behave realistically in water.
C++
62
star
9

godot-debug-menu-demo

Demo for the in-game FPS/performance/hardware metrics add-on for Godot 4.x
GDScript
49
star
10

godot-sqlite

SQLite engine module for Godot based on gdsqlite-native
C++
42
star
11

godot-lod-demo

Demonstration project for the Level of Detail (LOD) Godot 3.x add-on
GDScript
42
star
12

godot-ideas

Freely share and discuss ideas for Godot Engine core, module and plugin development
30
star
13

lottie

C++
27
star
14

abstract-state-machine

A GraphNode Based State machine tool for Godot 3
GDScript
26
star
15

godot-mat-cap

Godot Material Capture Demo
GDScript
19
star
16

gltf

C++
16
star
17

godot-interpolated-camera3d-demo

Demo project for the InterpolatedCamera3D add-on
GDScript
12
star
18

godot-tensorflow

C++
10
star
19

godot-gdscript-ports

A collection of GDScript classes ported back from Godot Engine C++ codebase
GDScript
9
star
20

godot-fire

C++
8
star
21

godot-mixer

Python
8
star
22

godot-pivot-painter

7
star
23

mesh_lod

C++
7
star
24

Godot-Custom-Class-Docs

A Godot plugin to make custom class documentation more useful and user friendly.
GDScript
7
star
25

godot-tensorflow-demo

6
star
26

godot-modules-fire

5
star
27

json

C++
5
star
28

godot-antialiased-line2d-demo

Demo for the fast antialiased Line2D and Polygon2D drawing add-on for Godot 3.x (GLES3 and GLES2)
GDScript
5
star
29

tensorflow

C++
4
star
30

godot-tensorflow-godot

C++
3
star
31

godot-main

A collection of scripts which enable faster Godot project creation, testing and prototyping
AutoHotkey
3
star
32

navigation_server_playground

Testing using 3.2 Godot Engine navigation server
GDScript
2
star
33

native-integration

1
star
34

scene_merge

C++
1
star
35

audio_effect_stream

Archived. Moved to https://github.com/godot-extended-libraries/godot-fire/commits/feature/audio-effect
C++
1
star