GodotSharpExtras 0.2.2
See the version list below for details.
dotnet add package GodotSharpExtras --version 0.2.2
NuGet\Install-Package GodotSharpExtras -Version 0.2.2
<PackageReference Include="GodotSharpExtras" Version="0.2.2" />
paket add GodotSharpExtras --version 0.2.2
#r "nuget: GodotSharpExtras, 0.2.2"
// Install GodotSharpExtras as a Cake Addin #addin nuget:?package=GodotSharpExtras&version=0.2.2 // Install GodotSharpExtras as a Cake Tool #tool nuget:?package=GodotSharpExtras&version=0.2.2
GodotSharpExtras
C# Extras for Godot, provides tools that are not currently implemented by the Core GodotSharp library. One being the onready keyword. Instead, this is replaced with using two C# attributes, called NodePath() and ResolveNode() attributes, that allows easily to reference a variable to their proper node in the Scene / SceneTree.
Installation
To install this library, simply use dotnet command line tool, to add a package reference for GodotSharpExtras, using the following command:
dotnet add package GodotSharpExtras
Compilation
In order to compile a custom version of this project, you will need the GodotSharp libraries from an existing Project which can be found under .mono
folder. In order to make it easier to build, simply copy the .mono folder from one of your projects, directly into the root of this folder, and then run the following command:
dotnet build
This will compile the DLL file, as well as create a Nuget package, that you can install locally, or you can simply copy the DLL file over to your project, under any folder you want, and add the following to your project's csproj file.
<ItemGroup>
<Reference Include="GodotSharpExtras">
<HintPath>Path\To\GodotSharpExtras.dll</HintPath>
</Reference>
</ItemGroup>
OnReady()
This function is what wires everything up from the Godot side of things, to the C# Side of things. In order for C# to be able to get the nodes it needs to reference with the proper C# Variables, OnReady() needs to be called. By the Godot documentation, it isn't recommended to use this
when calling various functions on the node, but due to the nature in which the system needs to wire things up, it needs a reference to the node that we are running the OnReady() function on to be able to ensure that the variables are properly setup with the values. This is done through the C#'s Extension Methods. This allows us to add OnReady() to a node reference, without having to recompile GodotSharp in order to add this method. See examples for NodePath and ResolveNode on how OnReady() works.
NodePath
NodePath will use a String Path to the Node that you want to access from the Godot side of things, in C#. It takes care of actually getting the instance when you call the OnReady() function in C#.
Example:
using Godot;
using Godot.Sharp.Extras;
public class MyNode : Container {
[NodePath("Container/Label")]
Label MyLabel;
public override void _Ready() {
this.OnReady();
MyLabel.Text = "Hello World!";
}
}
ResolveNode
ResolveNode allows an exported variable to the editor, to receive a NodePath, that can still be resolved to an actual node used within the C# code, as a reference to the node in the same way that NodePath is used. The difference is, the NodePath is an Assignment from the Editor, or code, instead of it being a string path to the node itself.
Example:
using Godot;
using Godot.Sharp.Extras;
public class MyNode : Node2D {
[Export]
public string SpritePath;
[ResolveNode(nameof(SpritePath))]
Sprite PlayerSprite;
public override void _Ready() {
this.OnReady();
PlayerSprite.Location = new Vector2(120,120);
}
}
SignalHandler
SignalHandler allows you to connect node signals to methods to automatically be connected when OnReady is executed. You provide the Signal you wish to connect, along with the property or field of the variable holding the Node reference, to connect said signal. If the property or field does not exist, will throw an exception.
Example 1 (Standard Connect to node defined by NodePath/ResolvePath):
using Godot;
using Godot.Sharp.Extras;
public class MyNode : Node2D {
[NodePath("VBoxContainer/MyButton")]
Button _myButton = null;
public override void _Ready() {
this.OnReady();
}
[SignalHandler("pressed", nameof(_myButton))]
void OnPressed_MyButton() {
GD.Print("Hello World!");
}
}
Example 2 (Connect to the node itself):
using Godot;
using Godot.Sharp.Extras;
public class MyControl : Control
{
[NodePath("ColorRect")]
ColorRect _color = null;
public override void _Ready()
{
this.OnReady();
}
[SignalHandler("mouse_entered")]
void OnMouseEntered() {
_color.Color = new Color(0,1,0);
}
[SignalHandler("mouse_exited")]
void OnMouseExited() {
_color.Color = new Color(0,0,1);
}
}
Example 3 (Chaining Multiple Nodes to the Same Function):
using Godot;
using Godot.Sharp.Extras;
public class MyPanel : Panel
{
[NodePath("Button1")]
Button _button1 = null;
[NodePath("Button2")]
Button _button2 = null;
public override void _Ready()
{
this.OnReady();
}
[SignalHandler("pressed", nameof(_button1))]
[SignalHandler("pressed", nameof(_button2))]
void OnButtonPressed() {
GD.Print("A button has been pressed.");
}
}
Caveats
When compiling using NodePath, and ResolveNode, the compiler will give a warning about a variable associated with these two attributes, will never be assigned to, or have a value. This is because the compiler doesn't recognize that we are using the Extension Method OnReady() to actually assign values to these variables, the way to surpress this warning, is simply to assign null to the value of the variable, to surpress this warning.
Example:
using Godot;
using Godot.Sharp.Extras;
public class MyNode : Container {
[Export]
public Label MyLabel;
public override void _Ready() {
this.OnReady();
MyLabel.Text = "Hello World";
}
}
Will Generate this warning:
C:\MyProject\MyNode.cs (6,15): warning CS0649: Field 'MyNode.MyLabel' is never assigned to, and will always have its default value null [C:\MyProject\MyProject.csproj]
While doing this will solve the issue:
using Godot;
using Godot.Sharp.Extras;
public class MyNode : Container {
[Export]
public Label MyLabel = null;
public override void _Ready() {
this.OnReady();
MyLabel.Text = "Hello World";
}
}
Future items will be added as they are worked on.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on GodotSharpExtras:
Repository | Stars |
---|---|
eumario/godot-manager
A Project, Version and Addons/Plugins manager for Godot Game Engine.
|
Version | Downloads | Last updated |
---|---|---|
0.5.0 | 126 | 9/25/2024 |
0.4.0 | 1,113 | 3/1/2023 |
0.4.0-beta.16 | 124 | 1/29/2023 |
0.4.0-beta.12 | 119 | 1/14/2023 |
0.4.0-beta.10 | 120 | 12/25/2022 |
0.4.0-beta.7 | 111 | 12/2/2022 |
0.4.0-beta.4 | 129 | 11/12/2022 |
0.3.6 | 917 | 11/3/2022 |
0.3.5.1 | 847 | 10/31/2022 |
0.3.4 | 1,192 | 7/16/2022 |
0.3.1 | 892 | 7/7/2022 |
0.3.0 | 863 | 6/30/2022 |
0.2.3 | 1,221 | 2/18/2022 |
0.2.2 | 931 | 2/18/2022 |
0.2.1 | 893 | 2/18/2022 |
0.2.0 | 924 | 2/17/2022 |
0.1.0 | 784 | 11/23/2021 |
Initial Release, Built against 3.3.0 assemblies. Based on work by Sam Bloomberg.