From b5dad13bd7828bb18a73401ca6c9e78817d68273 Mon Sep 17 00:00:00 2001 From: peterino2 Date: Sun, 26 Oct 2025 22:31:48 -0700 Subject: [PATCH] enabled parallel job, added optimizeBroadphase, and more scopes --- README.md | 91 +++++++++++++- engine/core/src/scene.zig | 113 +++++++++++++++++- engine/physics/src/physicsSystem.zig | 4 + projects/sampleGame/externGame/externGame.zig | 7 +- 4 files changed, 207 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1f8dcda..a4400fa 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,103 @@ # Backlog - zig version: 0.15.1 Backlog Labs Game Engine. +## Getting Started + run tools/scripts/first-time-setup.py ffmpeg -i INPUT.mp4 -c:v libtheora -q:v 7 -c:a libvorbis -q:a 4 OUTPUT.ogv +## git-bug Cheat Sheet + +This project uses git-bug for distributed issue tracking. Issues are stored directly in the repository. + +### Common Commands + +**Listing Issues** +```bash +git bug bug # List all issues +git bug bug status:open # List only open issues +git bug bug status:closed # List only closed issues +``` + +**Creating Issues** +```bash +git bug bug new -t "title" -m "message" # Create new issue +git bug bug new -t "Add feature X" -m "Description" # Example +``` + +**Viewing & Managing Issues** +```bash +git bug bug show # Show issue details +git bug bug comment # Add a comment to an issue +git bug bug close # Close an issue +git bug bug open # Reopen an issue +git bug bug status # Show issue status +``` + +**Labels** +```bash +git bug bug label # Show labels for an issue +git bug bug label new