updated readme for samplegame in-game

This commit is contained in:
Peter Li 2025-05-03 11:54:56 -07:00
parent be2a52f323
commit c2429d3fe6
1 changed files with 5 additions and 0 deletions

View File

@ -366,6 +366,11 @@ pub fn tick(self: *@This(), dt: f64) void {
if (ig.checkbox("move lights ", &self.moveLight)) {}
ig.textFmt("info: - WASD to move, mouse to look,\n- Q and E to go up and down", .{}) catch return;
ig.textFmt("- shift to slow down camera speed", .{}) catch return;
ig.textFmt("- T to enable/disable mouse cursor", .{}) catch return;
ig.textFmt("- f2 to route all inputs to the doom player", .{}) catch return;
ig.textFmt("- movingLight checkbox makes the light stop moving with you", .{}) catch return;
ig.end();
}
}