Kitsune.Core 0.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Kitsune.Core --version 0.2.1
                    
NuGet\Install-Package Kitsune.Core -Version 0.2.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kitsune.Core" Version="0.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kitsune.Core" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Kitsune.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kitsune.Core --version 0.2.1
                    
#r "nuget: Kitsune.Core, 0.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kitsune.Core@0.2.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kitsune.Core&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=Kitsune.Core&version=0.2.1
                    
Install as a Cake Tool

Kitsune

Kitsune is a 2D game engine for C# built on Foster. It modernizes proven Monocle-inspired patterns — Scene, Entity, Component, tags, and collision — as layered .NET libraries you can adopt incrementally.

Kitsune.Core provides entity hierarchy, single-scene lifecycle, tag queries, axis-aligned hitboxes, and depth-ordered rendering hooks. Kitsune.Bridges.Platformer (0.2.1) adds Solid, Actor, PlatformerBody, forgiveness systems, moving platforms, and collision layers.

Prerequisites

Build and run

dotnet build
dotnet test

HelloWorld — minimal Foster window (circle demo):

dotnet run --project Examples/HelloWorld

CoreDemo — Phase 1 Core proof (entities, collision, tags, depth ordering):

dotnet run --project Examples/CoreDemo

Use WASD and Space to move the orange player (A/D walk, Space/W jump). Red and blue rectangles demonstrate depth ordering (red draws on top).

PlatformerDemo — Platformer Bridge playground (coyote time, jump buffer, platforms):

dotnet run --project Examples/PlatformerDemo

Use A/D to walk and Space or W to jump. Try the walk-off ledge on the left (coyote time), the floor gap (jump buffer), and stand on the blue moving platform to ride it.

Project layout

kitsune-engine/
├── Kitsune.Core/                 # Engine runtime (Scene, Entity, Component, Hitbox)
├── Kitsune.Bridges.Platformer/   # Platformer Bridge (Solid, Actor, PlatformerBody)
├── Kitsune.Editor/               # Editor shell stub
├── Kitsune.Core.Tests/           # Core unit tests
├── Kitsune.Bridges.Platformer.Tests/  # Bridge unit tests
├── Examples/
│   ├── HelloWorld/               # Foster wiring smoke test
│   ├── CoreDemo/                 # Core feature demo
│   └── PlatformerDemo/           # Platformer Bridge demo level
├── docs/                         # Public documentation
└── kitsune.slnx

Documentation

License

MIT — see LICENSE.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Kitsune.Core:

Package Downloads
Kitsune.Bridges.Platformer

Platformer gameplay bridge for Kitsune — Solid, Actor, and forgiveness systems.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.0 102 6/12/2026
0.3.1 104 6/12/2026
0.3.0 101 6/12/2026
0.2.1 95 6/12/2026
0.2.0 103 6/12/2026
0.1.0 104 6/12/2026