Fix 3d camera first person example

This commit is contained in:
Not-Nik 2023-07-22 23:20:06 +02:00
parent c4770140a4
commit ad06ecef54
No known key found for this signature in database
GPG Key ID: 08BB71E672DB3BFD

View File

@ -73,8 +73,6 @@ pub fn main() anyerror!void {
rl.drawText("First person camera default controls:", 20, 20, 10, rl.Color.black); rl.drawText("First person camera default controls:", 20, 20, 10, rl.Color.black);
rl.drawText("- Move with keys: W, A, S, D", 40, 40, 10, rl.Color.dark_gray); rl.drawText("- Move with keys: W, A, S, D", 40, 40, 10, rl.Color.dark_gray);
rl.drawText("- Mouse move to look around", 40, 60, 10, rl.Color.dark_gray); rl.drawText("- Mouse move to look around", 40, 60, 10, rl.Color.dark_gray);
rl.endDrawing();
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
} }
} }