lots of minor changes/fixes/additions

This commit is contained in:
codeimp 2008-02-24 21:52:18 +00:00
parent d904fb415c
commit b3c83f95ce
26 changed files with 325 additions and 168 deletions

View file

@ -235,7 +235,7 @@ namespace CodeImp.DoomBuilder.Editing
// Calculate camera direction vectors
camvec = Vector3D.FromAngleXYZ(camanglexy, camanglez);
camvecstrafe = Vector3D.FromAngleXYZ(camanglexy + Angle2D.PIHALF, camanglez);
camvecstrafe = Vector3D.FromAngleXY(camanglexy + Angle2D.PIHALF);
// Move the camera
if(keyforward) campos += camvec * CAMERA_SPEED;