![]() |
VOOZH | about |
dotnet add package GodotOperations --version 1.1.5
NuGet\Install-Package GodotOperations -Version 1.1.5
<PackageReference Include="GodotOperations" Version="1.1.5" />
<PackageVersion Include="GodotOperations" Version="1.1.5" />Directory.Packages.props
<PackageReference Include="GodotOperations" />Project file
paket add GodotOperations --version 1.1.5
#r "nuget: GodotOperations, 1.1.5"
#:package GodotOperations@1.1.5
#addin nuget:?package=GodotOperations&version=1.1.5Install as a Cake Addin
#tool nuget:?package=GodotOperations&version=1.1.5Install as a Cake Tool
Operations provides a quick and efficient way to programmatically create animations and complex behavior trees in the Godot game engine. A large collection of built-in operations are provided, with custom operations being very easy to make. It is available in both C# and GDSCript.
For API usage and examples, see either the GDScript README or the C# README. The two APIs are essentially identical - with minor differences due to GDSCript language limitations. The only major difference is that operations are not pooled in GDScript.
Example usage for the death animation of a 2D character may look like this:
using static Operations.Op;
Node character = ...;
Operation op =
Sequence(
NodeMove2D(new(0, 32), 2.0f),
Parallel(
NodeScale2D(new(2.0f, 2.0f), 1.0f),
NodeRotate2D(90.0f, 1.0f)),
NodeModulate(new(1, 0, 0, 0), 1.0f),
Wait(1.0f),
Free()
).SetTarget(character);
var character = ...
var op =
Op.sequence(
Op.node_move2D(Vector2(0, 32), 2.0),
Op.parallel(
Op.node_scale2D(Vector2(2.0, 2.0), 1.0),
Op.node_rotate2D(90.0, 1.0)),
Op.node_modulate(Color(1, 0, 0, 0), 1.0),
Op.wait(1.0),
Op.free()
).set_target(character)
Copy either OperationsScript or OperationsSharp from the addons folder into the addons folder of your project. Read more about installing and enabling addons here. The C# version is alternatively available as a Nuget package. Note that to use the demo you will have to git clone the repo, since the artifact is setup for use with the Godot Asset Library.
Operations is licensed under MIT - you are free to use it however you wish.
Do note, however, that all classes in Pools.cs are modified from libGDX, which is licensed under the Apache License, Version 2.0. See the pools folder for more information. The demo project uses assets from Kenney's CC0 licensed Shape Characters and Toy Car Kit asset packs.
The banner logo uses the Forced Square font.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.1.5 | 277 | 9/19/2025 |
| 1.1.4 | 228 | 7/14/2025 |
| 1.1.3 | 222 | 4/30/2025 |
| 1.1.2 | 252 | 4/21/2025 |
| 1.1.1 | 259 | 4/21/2025 |
| 1.1.0 | 244 | 4/10/2025 |
| 1.0.9 | 280 | 3/3/2025 |
| 1.0.8 | 194 | 2/10/2025 |
| 1.0.7 | 183 | 2/10/2025 |
| 1.0.6 | 194 | 11/16/2024 |
| 1.0.5 | 205 | 10/30/2024 |
| 1.0.4 | 176 | 10/30/2024 |
| 1.0.3 | 179 | 10/30/2024 |
| 1.0.2 | 183 | 10/30/2024 |
| 1.0.1 | 174 | 10/30/2024 |
| 1.0.0 | 185 | 10/30/2024 |