0.1 Current
Initial Windows x64 preview. C# scripting API, runtime launcher, BasicGame template.
v0.1 Windows preview
A code-first 2D game runtime. Write gameplay in C#, run it on a small C++ core, and build games without an editor.
Download
Initial Windows x64 preview with C# scripting, keyboard input, project config, and simple 2D rectangle rendering.
Quick start
tools\run_game.bat.templates\BasicGame\scripts\Player.cs.project.json and Game.csproj.using Engine;
public class Player : Entity
{
public override void Update(float deltaTime)
{
if (Input.IsKeyDown(KeyCode.D))
Transform.Position.X += 200 * deltaTime;
Render2D.DrawRectangle(
Transform.Position.X, 320, 96, 96, Color.Green);
}
}
Versions
Download the latest build or keep using an older release.
Initial Windows x64 preview. C# scripting API, runtime launcher, BasicGame template.