Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Auto-rotate third-person camera | b9f034155274b8dc20b9f33d1fc39ce701017b0d | MSE | 2024-08-24 04:25:51 |
Use common math to rotate avatars | 75e98c52899f17d8d511e733c1445f5eb69b738a | MSE | 2024-08-24 02:03:53 |
Correct minimap rotation in third-person | 9bcf201c6b24b80b7eec2bb4b2ad296cd5d296ed | MSE | 2024-08-22 07:07:08 |
Rotate third-person agents independently of camera | d4bcdb8ff8b47d6429117002a71881812c45a3dc | MSE | 2024-08-22 06:43:19 |
Remove browser launch from package-steam | edb75b8fd4499e49f4a7893b0acf23bde9c8e5f9 | MSE | 2024-07-31 23:42:42 |
Work around a minimap regression | acc3a99e8b96af34179824bcef7a11b0d539a499 | MSE | 2024-07-18 23:44:57 |
Check noautosave flag | 185b4817614429cd43e8cdc1237fa5c9e635eff9 | MSE | 2024-07-12 01:04:06 |
Make MSAA a setting (default 0) | e236f9370b87befa80f03118bd269ced22953868 | MSE | 2024-07-12 00:44:19 |
Use maxTurn for AI rotation speed | b43198bfbc9a9cfe88caf6dabb40aaf55fa5e7b6 | MSE | 2024-07-05 17:34:02 |
Add -DNO_OPENGL3, which seems to help with building for Windows | 3fc75eb3ce6186e4fe34a155b138ac6bfaea74e4 | MSE | 2024-07-03 17:32:43 |
Add sheen to water edge | ecb869a7849857e06f83b3e58a7abc118badcf95 | MSE | 2024-07-02 23:33:16 |
Copy globals from multiple convos on new game (enables 3D title screens) | b7af9cf230da946e04edf1e3e2ed6731b9bfcfbc | MSE | 2024-07-02 04:52:46 |
Work around world floor regression | 46115bf455166ca407a8e99babbb0b0ea6f6bf5b | MSE | 2024-06-22 06:38:58 |
Make static models destroyable | 82b787e2bc63b07d67cac610098580e7aafc054f | MSE | 2024-06-22 06:14:32 |
Make static avatars killable | 76f5731a518512057d7868e6c3f4d24825d74005 | MSE | 2024-06-22 03:26:48 |
Add support for weapon-dependent avatar prims | 4b59a1911ce1f13caddfe187db737914491ba6fe | MSE | 2024-06-20 06:00:45 |
Hide FPS in non-debug builds | 3994b75c7c8ccf67d8d9437582d2533fb4d13dc4 | MSE | 2024-06-19 04:45:32 |
De-hardcode data path for shaders | 648b298f390f039c44f4f23aa8fdd2e5d2650df6 | MSE | 2024-06-16 19:01:24 |
Hide reserve ammo count when there is none | 09c6e3131b04936949f1310e5fd15179b29c5c4f | MSE | 2024-06-12 23:02:55 |
Change rm -f to | 6f4ab08d92f2c99975c7bfa63b3777b4e087af4e | MSE | 2024-06-12 22:13:28 |
File | Lines added | Lines deleted |
---|---|---|
src/rsod.cpp | 10 | 0 |
File src/rsod.cpp changed (mode: 100644) (index 24bb434..2156a2d) | |||
... | ... | void FirstPersonLoop( double d ){ | |
3834 | 3834 | // Bob the weapon. | // Bob the weapon. |
3835 | 3835 | bobbing = true; | bobbing = true; |
3836 | 3836 | } | } |
3837 | // Rotate the third-person camera about the player. TODO: Make the speed adjustable, adjust pitch, don't fight mouse/joystick input. | ||
3838 | { | ||
3839 | double yaw = dungeon.thirdPersonYawOffset; | ||
3840 | double rdist = std::abs(std::atan2(std::sin(yaw), std::cos(yaw))); | ||
3841 | double rspeed = (1.0 - (rdist / M_PI)) * 1.5 * d; | ||
3842 | double rdelta = | ||
3843 | dungeon.getRotationDelta(yaw - M_PI, 0.0, rspeed); | ||
3844 | dungeon.thirdPersonYawOffset = | ||
3845 | fgl::wrapAngle(dungeon.thirdPersonYawOffset + rdelta); | ||
3846 | } | ||
3837 | 3847 | auto o = dungeon.playerAgent->rigidBody->getWorldTransform().getOrigin(); | auto o = dungeon.playerAgent->rigidBody->getWorldTransform().getOrigin(); |
3838 | 3848 | target_x = o.getX(); | target_x = o.getX(); |
3839 | 3849 | target_z = o.getZ(); | target_z = o.getZ(); |