Chickensoft.GodotNodeInterfaces
1.0.0-godot4.2.0-beta.1
See the version list below for details.
dotnet add package Chickensoft.GodotNodeInterfaces --version 1.0.0-godot4.2.0-beta.1
NuGet\Install-Package Chickensoft.GodotNodeInterfaces -Version 1.0.0-godot4.2.0-beta.1
<PackageReference Include="Chickensoft.GodotNodeInterfaces" Version="1.0.0-godot4.2.0-beta.1" />
paket add Chickensoft.GodotNodeInterfaces --version 1.0.0-godot4.2.0-beta.1
#r "nuget: Chickensoft.GodotNodeInterfaces, 1.0.0-godot4.2.0-beta.1"
// Install Chickensoft.GodotNodeInterfaces as a Cake Addin #addin nuget:?package=Chickensoft.GodotNodeInterfaces&version=1.0.0-godot4.2.0-beta.1&prerelease // Install Chickensoft.GodotNodeInterfaces as a Cake Tool #tool nuget:?package=Chickensoft.GodotNodeInterfaces&version=1.0.0-godot4.2.0-beta.1&prerelease
GodotNodeInterfaces
Godot node interfaces and adapters.
<p align="center"> <img alt="Chickensoft.GodotNodeInterfaces" src="Chickensoft.GodotNodeInterfaces/icon.png" width="200"> </p>
🤔 What...why?
In a perfect world, there are cases where mocking Godot nodes for testing makes a lot of sense:
- You are a TDD cultist.
- You want to unit-test a Godot node script.
- You don't want to instantiate the corresponding scene for a node script. Why? Because instantiating a scene also instantiates any children and their scripts, and so on. Just instantiating scripts and adding them to the scene causes test coverage to be collected, and it ends up covering far more of the app than the actual system-under-test (the node script you were trying to test), which makes it hard to tell which scripts are still un-tested.
GodotSharp doesn't expose interfaces for Godot nodes, making it very expensive or difficult to mock them.
If you're still confused, this probably isn't for you. It's one of those "you'll know if you ever want/need this" type of things. This is really just for those completionists who like writing tests and getting 100% code coverage.
💁 Getting Help
Is this package broken? Encountering obscure C# build problems? We'll be happy to help you in the Chickensoft Discord server.
💪 Contributing
This project contains a very hastily written console generator program that uses reflection (yep!) to find all the types in GodotSharp that are or extend the Godot Node
class, and then generates interfaces, adapters, and an adapter factory.
The actual package is left empty — we generate the project in CI/CD so that we can keep this package up-to-date with renovatebot and automatically release a new version whenever a new GodotSharp package drops.
🐞 Debugging
A VSCode launch profile is provided that allows you to debug the generator program. This can be great when trying to figure out why it's generating invalid code.
Important: You must setup a
GODOT
environment variable for the launch configurations above. If you haven't done so already, please see the Chickensoft Setup Docs.
🏚 Renovatebot
This repository includes a renovate.json
configuration for use with Renovatebot to help keep it up-to-date.
Unlike Dependabot, Renovatebot is able to combine all dependency updates into a single pull request — a must-have for Godot C# repositories where each sub-project needs the same Godot.NET.Sdk versions. If dependency version bumps were split across multiple repositories, the builds would fail in CI.
The easiest way to add Renovatebot to your repository is to install it from the GitHub Marketplace. Note that you have to grant it access to each organization and repository you want it to monitor.
The included renovate.json
includes a few configuration options to limit how often Renovatebot can open pull requests as well as regex's to filter out some poorly versioned dependencies to prevent invalid dependency version updates.
If your project is setup to require approvals before pull requests can be merged and you wish to take advantage of Renovatebot's auto-merge feature, you can install the Renovate Approve bot to automatically approve the Renovate dependency PR's. If you need two approvals, you can install the identical Renovate Approve 2 bot. See this for more information.
🐣 Package generated from a 🐤 Chickensoft Template — https://chickensoft.games
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- GodotSharp (>= 4.2.0-beta.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Chickensoft.GodotNodeInterfaces:
Repository | Stars |
---|---|
chickensoft-games/GameDemo
The Chickensoft Game Demo — a fully tested, third-person 3D game built with Godot and C#. Now with saving and loading!
|
Chickensoft.GodotNodeInterfaces release.