I will work on trying to find my attempt at it in my SVN source repository… it was a very old version.
But real quick this was one thing I was not sure of… how to get these files into these locations… can you do that in steam workshop? Highlighted files.
and
For Modding, My knowledge was built around overriding files in the original game directories with files in my MOD directory. I was not sure how, with steam workshop, to get these files, for CamAction functions @BitVenom showed me how to use, in place and then call them instead of using the hot keys: (ex below From Billy.lua file)
–Load the localexec.lua in BIN directory
bind3(“dofilepath(“bin:localexec.lua”)”, CONTROLKEY, ALTKEY, RKEY)
–Set camera fiew to follow the direction of the craft.
bind3(“camAction_EnableMirroring(-1)”, CONTROLKEY, ALTKEY, AKEY)
–Load camaction.txt in BIN directory
–0 off, 1 on, -1 toggle
bind3(“camAction_LoadActions(“BIN:CamActions.txt”, 0)”, CONTROLKEY, ALTKEY, QKEY)
–Zoom action.
bind3(“camAction_PlayAction(“Epic Pan”)”, CONTROLKEY, ALTKEY, EKEY)
bind3(“camAction_StopAction()”, CONTROLKEY, ALTKEY, SKEY)
bind3(“camAction_PlayAction(“Zoom And Pull1”)”, CONTROLKEY, ALTKEY, PKEY)
bind3(“camAction_PlayAction(“Zoom Push”)”, CONTROLKEY, ALTKEY, PKEY)
bind3(“camAction_PlayAction(“30 Degree Orbit”)”, CONTROLKEY, ALTKEY, OKEY)
bind3(“camAction_PlayAction(“11 Degree Dutch Angle”)”, CONTROLKEY, ALTKEY, DKEY)
bind3(“camAction_PlayAction(“Pitch and Pull Slow”)”, CONTROLKEY, ALTKEY, PKEY)
bind3(“camAction_PlayAction(“Pitch and Pull Drama”)”, CONTROLKEY, ALTKEY, RKEY)
bind3(“camAction_PlayAction(“Zoom and Push Drama”)”, CONTROLKEY, ALTKEY, ZKEY)
bind3(“camAction_PlayAction(“Simple Zoom”)”, CONTROLKEY, ALTKEY, IKEY)
bind3(“camAction_PlayAction(“Canted Zoom”)”, CONTROLKEY, ALTKEY, TKEY)
bind3(“camAction_PlayAction(“Go Wide”)”, CONTROLKEY, ALTKEY, VKEY)
bind3(“camAction_PlayAction(“Push Through”)”, CONTROLKEY, ALTKEY, MKEY)
bind3(“camAction_PlayAction(“Push Through Orbit”)”, CONTROLKEY, ALTKEY, NKEY)
bind3(“camAction_PlayAction(“Flythrough 90 Right”)”, CONTROLKEY, ALTKEY, XKEY)
bind3(“camAction_PlayAction(“Flythrough Lazy”)”, CONTROLKEY, ALTKEY, ZKEY)
bind3(“camAction_PlayAction(“Pull back Reveal”)”, CONTROLKEY, ALTKEY, BKEY)