Warhammer 40,000: Dawn of War III

Warhammer 40,000: Dawn of War III

46 betyg
Zoom Out x4 Game Mode
   
Utmärkelse
Favorit
Favoritmarkerad
Avfavoritmarkerad
Taggar: gamemode
Filstorlek
Lades upp
42.370 KB
1 apr, 2024 @ 14:03
1 ändringsnotis ( visa )

Abonnera för att ladda ner
Zoom Out x4 Game Mode

Beskrivning
Allows camera to zoom out 4x as far as vanilla. You don't need that far for most gameplay, but it is helpful for getting an overview of the map.

Currently supports Annihilation and Annihilation with Defenses. Still haven't gotten Powercore to work, and it may never be possible to get it to work for campaigns.

I've only done minimal testing. Report bugs in the Comments on the Workshop page.

Enjoy!
13 kommentarer
Trigg  [skapare] 11 okt, 2024 @ 13:55 
@Le Loup - Subscribe and wait for it to download. Then whenever you start a game, select it as the game mode on the options page.
Le Loup 11 okt, 2024 @ 9:34 
Don't run for me, hpw use it please ?
Trigg  [skapare] 27 sep, 2024 @ 11:57 
Thanks. I'll put your code in when I have time - but it may be a while.

If you would like to make the mod, I put a note on mine suggesting that people use yours instead.
Playgu 27 sep, 2024 @ 11:51 
Default key is hold Insert and then move your mouse, Backspace to restore default height and declination. Camera_LoadEditorCamera() does all the work, the rest just makes it seamless. Editor camera resets towards the center of the map that's why I store initial camera settings and position and restore them back so that it looks at HQ, as well as some other settings that differ from default camera.
Trigg  [skapare] 27 sep, 2024 @ 11:32 
Thanks. I can see from your code that it supports pan, but I didn't see anything about rotate/orbit.

What key do you use for that?
Playgu 27 sep, 2024 @ 9:15 
That's what the function I've posted does, I just decided to share it since your mod has more subs.
Trigg  [skapare] 27 sep, 2024 @ 7:39 
@Playgu - Do you know of a way to make the camera rotate/orbit?

I found a solution on line, but it requires a console script running in debug mode.
Playgu 26 sep, 2024 @ 14:44 
a few missing lines due to 1000 characters limit:

Camera_SetTuningValue(TV_PanAccelerate, 0.0)
Camera_SetTuningValue(TV_PanStartSpeedScalar, 1.0)
Camera_SetTuningValue(TV_PanMaxSpeedScalar, 1.0)
Camera_SetTuningValue(TV_CameraMode, 2.0)
Playgu 26 sep, 2024 @ 14:44 
Here's a custom script to unlock camera, just change DistMax to 300 and call the function somewhere:

function UnlockCamera()
local rot = Camera_GetOrbit()
local dec = Camera_GetDeclination()
local cam_pos = Camera_GetCurrentTargetPos()
Camera_LoadEditorCamera()
Camera_SetOrbit(rot)
Camera_SetDeclination(dec)
Camera_MoveTo(cam_pos)
Camera_SetTuningValue(TV_SlideTargetRate, 999)
Camera_SetTuningValue(TV_DistRateMouse, 0.50)
Camera_SetTuningValue(TV_DistMin, 35)
Camera_SetTuningValue(TV_DistMax, 75)
Camera_SetTuningValue(TV_DistGroundMin, 2.00)
Camera_SetTuningValue(TV_DistMinGround, 2.00)
Camera_SetTuningValue(TV_DeclBelow, 0.000000)
Camera_SetTuningValue(TV_PanScaleMouseDefZ, 125)
Camera_SetTuningValue(TV_PanScaleKeyboardDefZ, 400)
Camera_SetTuningValue(TV_PanScaleScreenDefZ, 400)
Camera_SetTuningValue(TV_PanScaleMouseMinZ, 0.02)
Camera_SetTuningValue(TV_PanScaleKeyboardMinZ, 0.02)
Camera_SetTuningValue(TV_PanScaleScreenMinZ, 0.02)
end
Trigg  [skapare] 10 sep, 2024 @ 18:45 
Nothing special. Just subscribe to it and wait for the download, then specify it for the gtame mod when you start a game.