Skip to content

Commit

Permalink
Removed code which was adding the eva camera at runtime and replaced…
Browse files Browse the repository at this point in the history
… it with a MM script

 Moved all MM scripts into new folder
linuxgurugamer committed Nov 3, 2018
1 parent f989f2d commit 96f4ab3
Showing 9 changed files with 44 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Changelog.txt
Original file line number Diff line number Diff line change
@@ -55,4 +55,8 @@
Version bump for 1.5 rebuild

0.1.9.7
Fixed bug when the expansion is included, due to not finding the vintage kerbal parts
Fixed bug when the expansion is included, due to not finding the vintage kerbal parts

0.1.9.8
Removed code which was adding the eva camera at runtime and replaced it with a MM script
Moved all MM scripts into new folder
2 changes: 1 addition & 1 deletion GameData/HullCameraVDS/HullcamVDSContinued.version
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"MAJOR": 0,
"MINOR": 1,
"PATCH": 9,
"BUILD": 7
"BUILD": 8
},
"KSP_VERSION": {
"MAJOR": 1,
32 changes: 32 additions & 0 deletions GameData/HullCameraVDS/MM_Scripts/kerbalEVA.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@PART[kerbalEVA]
{
MODULE
{
name = EVACamera
cameraName = EVACam
}
}
@PART[kerbalEVAfemale]
{
MODULE
{
name = EVACamera
cameraName = EVACam
}
}
@PART[kerbalEVAVintage]
{
MODULE
{
name = EVACamera
cameraName = EVACam
}
}
@PART[kerbalEVAfemaleVintage]
{
MODULE
{
name = EVACamera
cameraName = EVACam
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion HullCamera/AssemblyVersion.cs
Original file line number Diff line number Diff line change
@@ -10,4 +10,4 @@

using System.Reflection;

[assembly: AssemblyVersion("0.1.9.7")]
[assembly: AssemblyVersion("0.1.9.8")]
6 changes: 4 additions & 2 deletions HullCamera/FirstPersonEVA.cs
Original file line number Diff line number Diff line change
@@ -118,8 +118,9 @@ private void Reorient() {
}
}

//Add EVA camera to all Kerbals on EVA
[KSPAddon(KSPAddon.Startup.MainMenu, true)]
#if false
//Add EVA camera to all Kerbals on EVA
[KSPAddon(KSPAddon.Startup.MainMenu, true)]
public class initKerbalEVA : UnityEngine.MonoBehaviour {
public void Awake() {

@@ -152,5 +153,6 @@ public void Awake() {

}
}
#endif

}
2 changes: 1 addition & 1 deletion HullcamVDSContinued.version
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"MAJOR": 0,
"MINOR": 1,
"PATCH": 9,
"BUILD": 7
"BUILD": 8
},
"KSP_VERSION": {
"MAJOR": 1,

0 comments on commit 96f4ab3

Please sign in to comment.