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 https://forums.kleientertainment.com/forums/topic/28983-a-mod-request-the-screecher-mode/ Share on other sites More sharing options...
Malacath Posted October 23, 2013 Share Posted October 23, 2013 (edited) 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... Edited October 23, 2013 by Malacath Link to comment https://forums.kleientertainment.com/forums/topic/28983-a-mod-request-the-screecher-mode/#findComment-350536 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 https://forums.kleientertainment.com/forums/topic/28983-a-mod-request-the-screecher-mode/#findComment-350599 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 https://forums.kleientertainment.com/forums/topic/28983-a-mod-request-the-screecher-mode/#findComment-351073 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now