add media

This commit is contained in:
matthew 2025-08-05 13:10:06 +10:00
parent dbf1408322
commit 42334ed6fc
4 changed files with 1 additions and 1 deletions

BIN
media/Gears-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

BIN
media/Gears-02.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

BIN
media/Gears.mp4 Executable file

Binary file not shown.

View File

@ -374,7 +374,7 @@ void
Update(Camera* cam)
{
Mat4 rotation = RotationMatrix(cam);
Vec4 pos = rotation * Vec4(cam.velocity * 0.5 * g_DELTA, 0.0);
Vec4 pos = rotation * Vec4(cam.velocity * g_DELTA, 0.0);
cam.pos += pos.xyz;
}