LogicBlocksGenerator 0.1.4

dotnet tool install --global LogicBlocksGenerator --version 0.1.4
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local LogicBlocksGenerator --version 0.1.4
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=LogicBlocksGenerator&version=0.1.4
                    
nuke :add-package LogicBlocksGenerator --version 0.1.4
                    

LogicBlocksGenerator

LogicBlocksGenerator is a code gen tool for quickly creating setting up all the boiler plate code needed in order to use Chickensoft's LogicBlocks inside of a Godot project.

While Chickensoft's LogicBlocks being installed is not a requirement to run this tool, you should have it installed anyways. So go do that part first.

Tested on

  • Windows 11
  • MacOS
  • *Nix

Installation and Usage

Install From NuGet

dotnet tool install --global LogicBlocksGenerator

Run

logicblocksgen generate  \
   --namespace MyGame.Application \
   --name TestLogic \
   --output ./TestLogicBlock/ \

Build & Run From Source

Build

git clone git@github.com:madisodr/LogicBlocksGenerator.git
cd LogicBlocksGenerator
dotnet build

Run

Example, if you have a project namespace of "MyGame" and a folder "Application" which you want to generate a LogicBlock for, the following command will output the necessary files to ./MyGame/Application/State/*

dotnet run -- generate  \
   --namespace MyGame.Application \
   --name TestLogic \
   --output ./TestLogicBlock/ \

Testing

From within the LogicBlocksGenerator folder

dotnet test LogicBlocksGenerator.Tests/
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.1.4 133 1/9/2026
0.1.3 117 1/9/2026
0.1.2 122 1/9/2026