eram100 Posted October 23, 2013 Share Posted October 23, 2013 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 More sharing options...
Malacath Posted October 23, 2013 Share Posted October 23, 2013 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.luaAnyone 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 More sharing options...
simplex Posted October 23, 2013 Share Posted October 23, 2013 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.luaAnyone 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 More sharing options...
eram100 Posted October 24, 2013 Author Share Posted October 24, 2013 So it's possible and easy, now we need just someone with free time. Link to comment Share on other sites More sharing options...
Recommended Posts
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.