Don't Starve Together

Don't Starve Together

Nincs elegendő értékelés
Smooth camera
2
   
Díjazás
Kedvenc
Kedvenc
Törlés
Fájlméret:
Közzétéve:
Frissítve:
24.208 KB
2022. márc. 25., 14:09
2022. márc. 25., 15:52
2 változásjegyzék ( megnézés )

Feliratkozás a letöltéshez
Smooth camera

Leírás
Client-side mod that allows you to move the camera freely how ever you want (though it still is following the player).
Hold middle mouse button to start rotating the camera.
Works even better with mods like Zoom+
11 megjegyzés
Ane  [készítő] 2024. máj. 6., 11:47 
I can suggest going to mod's directory (Steam\steamapps\workshop\content\322330\2784538601), opening modmain.lua with a text redactor, and changing 'if button == GLOBAL.MOUSEBUTTON_MIDDLE then' line. You can easily change the button to be either left or right and add a condition like pressed lshift or lcontrol ( GLOBAL.TheInput:IsKeyDown(GLOBAL.KEY_LSHIFT) and GLOBAL.TheInput:IsKeyDown(GLOBAL.KEY_LCTRL) accordingly)
₩Ø₦ÐEƦ 2024. máj. 6., 10:53 
Sorry, the middle mouse button is dumb. I would like to be able to change the button
Ane  [készítő] 2024. máj. 5., 12:17 
Thanks for an advice, but I will. The mod still does though
₩Ø₦ÐEƦ 2024. máj. 5., 11:42 
Don't work
goldy 2022. nov. 27., 8:43 
very useful , thank you.
BolivaroXY 2022. nov. 25., 16:29 
wow, this mod is insane
Ane  [készítő] 2022. szept. 15., 6:29 
You can do it manually, otherwise, no
doc boy 2022. szept. 14., 19:45 
is there a way to reset the camera position back to default?
BendeR 2022. ápr. 24., 15:05 
thx
Ane  [készítő] 2022. ápr. 24., 14:57 
You can change that in the 48th line of modmain.lua in the mod directory:
"if button == GLOBAL.MOUSEBUTTON_MIDDLE then" into "if button == GLOBAL.MOUSEBUTTON_LEFT then".
However you may want to add some additional condition like a pressed left shift:
"if button == GLOBAL.MOUSEBUTTON_LEFT and GLOBAL.TheInput:IsKeyDown(GLOBAL.KEY_LSHIFT) then"