Core 2D Camera Platformer Example (#222)

* Core 2D Camera Platformer Example

* Use decl literals for enums in platformer example
This commit is contained in:
Axel Magnuson 2025-03-23 12:52:05 -06:00 committed by GitHub
parent 8d5a7d382c
commit dfe22275cf
Failed to generate hash of commit
2 changed files with 339 additions and 0 deletions

View file

@ -137,6 +137,11 @@ pub fn build(b: *std.Build) !void {
.path = "examples/core/2d_camera.zig",
.desc = "Shows the functionality of a 2D camera",
},
.{
.name = "2d_camera_platformer",
.path = "examples/core/2d_camera_platformer.zig",
.desc = "2D camera platformer",
},
.{
.name = "3d_camera_first_person",
.path = "examples/core/3d_camera_first_person.zig",