Jump to content

A mod request - The Screecher Mode


eram100

Recommended Posts

I saw the third person view in The Screecher Mode and I thought how will it be in the Don't Starve game, And I would like to see that as that will be awesome, I think this is do-able because it's in the same engine etc...

So do you think it's possible?

Link to comment
Share on other sites

From what I can see this is really easy, a few lines in modmain.lua could do it.

GLOBAL.TUNING.MOUSE_SENSITIVITY = 0.15GLOBAL.TUNING.PITCH_ADJUSTMENT_MULTIPLIER = 5GLOBAL.TUNING.DEFAULT_CAM_DISTANCE = 13GLOBAL.TUNING.ZOOMED_CAM_DISTANCE = 10GLOBAL.TUNING.PITCH_ADDITIONAL_OFFSET = 0.2GLOBAL.TUNING.CAMERAY_OFFSET = 2GLOBAL.GetPlayer:DoPeriodicTask(0, function()	local playerfacing = player.Transform:GetRotation()	GLOBAL.TheCamera:SetHeadingTarget(-playerfacing+180)end)

Can't test though if it's really that easy. And I just snatched the code from the Screecher modmain.lua

Anyone wanna try and let us know what happens?

EDIT: And there's also a modified playercontroller. Right now I don't feel like looking through 1259 lines of code for relevent info...

Link to comment
Share on other sites

From what I can see this is really easy, a few lines in modmain.lua could do it.

GLOBAL.TUNING.MOUSE_SENSITIVITY = 0.15GLOBAL.TUNING.PITCH_ADJUSTMENT_MULTIPLIER = 5GLOBAL.TUNING.DEFAULT_CAM_DISTANCE = 13GLOBAL.TUNING.ZOOMED_CAM_DISTANCE = 10GLOBAL.TUNING.PITCH_ADDITIONAL_OFFSET = 0.2GLOBAL.TUNING.CAMERAY_OFFSET = 2GLOBAL.GetPlayer:DoPeriodicTask(0, function()	local playerfacing = player.Transform:GetRotation()	GLOBAL.TheCamera:SetHeadingTarget(-playerfacing+180)end)
Can't test though if it's really that easy. And I just snatched the code from the Screecher modmain.lua

Anyone wanna try and let us know what happens?

EDIT: And there's also a modified playercontroller. Right now I don't feel like looking through 1259 lines of code for relevent info...

The Screecher mod is also overriding followcamera.lua, so I think there's more to it. Nevertheless, it really shouldn't be hard.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...