diff --git a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt index 87c181c..ddc1157 100644 --- a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt +++ b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/CHANGELOG.txt @@ -1,22 +1,26 @@ -0.8.1 - 2018.01.06 +0.9.1 - 2018.03.07 ------------------ -Implemented MinMax speed. Default is 0.001c (300km/s) +Recompile after branch cleanup -0.8.0 - 2017.11.10 +0.9.0 - 2018.03.07 ------------------ -Major Changes! -ZZZ's Warp Drive Models now included standard -"Gravity Brake" slows warping craft in a gravity well. -Turbo Mode vastly increases ship velocity when reaching user set warp speed -Angular Momentum mode fixed -Distance travelled per frame is now tied to the physics tick in settings -Multiple warp drives active on a single ship, now destroy said ship -Failsafe distance now 1/2 planetary radius -Xenon thrusters thrust drastically reduced -Electrical use massively increased - including patch for NFE, USI, FFT, & DSEV -Re-balanced fuel use & exotic matter recovery. -Default maximum warp dropped to 6c. True maximum warp in stock is about 25c (Turbo). -Included patch for scaled systems +KSP 1.4.0 Compatibility + +0.8.0 - 2017.03.06 +------------------ +Major Changes thanks to Helaeon (Thanks! You rock!) +- ZZZ's Warp Drive Models now included standard +- "Gravity Brake" slows warping craft in a gravity well. +- Turbo Mode vastly increases ship velocity when reaching user set warp speed +- Angular Momentum mode fixed +- Distance travelled per frame is now tied to the physics tick in settings +- Multiple warp drives active on a single ship, now destroy said ship +- Failsafe distance now 1/2 planetary radius +- Xenon thrusters thrust drastically reduced +- Electrical use massively increased - including patch for NFE, USI, FFT, & DSEV +- Re-balanced fuel use & exotic matter recovery. +- Default maximum warp dropped to 6c. True maximum warp in stock is about 25c (Turbo). +- Included patch for scaled systems 0.7.0 - 2017.10.09 ------------------ diff --git a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/USI_ModuleWarpEngine.cs b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/USI_ModuleWarpEngine.cs deleted file mode 100644 index 21653f4..0000000 --- a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/USI_ModuleWarpEngine.cs +++ /dev/null @@ -1,639 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using UnityEngine; - -namespace WarpEngine -{ - public class USI_ModuleWarpEngine : PartModule - { - [KSPField(guiActive = true, guiName = "Warp Drive", guiActiveEditor = false)] - public string status = "inactive"; - - [KSPField] - public string deployAnimationName = "Engage"; - - [KSPField] - public string unfoldAnimationName = "Deploy"; - - [KSPField] - public string warpAnimationName = "WarpField"; - - [KSPField] - public float WarpFactor = 6f; - - [KSPField] - public float Demasting = 10f; - - [KSPField] - public int MaxAccelleration = 4; - - [KSPField] - public float MinThrottle = 0.05f; - - [KSPField(isPersistant = true)] - public bool IsDeployed = false; - - [KSPField] - public int DisruptRange = 2000; - - [KSPField] - public int BubbleSize = 20; - - [KSPField] - public double MinAltitude = 1d; - - [KSPField] - public double GravFactor = 0.95d; - - [KSPField] - public double BrakeFalloff = 0.9d; - - [KSPField(isPersistant = true, guiActive = true, guiActiveEditor = true, guiName = "T-Start", advancedTweakable = true), UI_FloatRange(minValue = 85f, maxValue = 100f, stepIncrement = 1f)] - public float TurboPoint = 92f; - - [KSPField(isPersistant = true, guiActive = true, guiActiveEditor = true, guiName = "Turbo Factor", advancedTweakable = true), UI_FloatRange(minValue = 1, maxValue = 8, stepIncrement =1f)] - public float TurboFactor = 4f; - [KSPField] - public float TurboMult = 1f; - - [KSPField(guiName = "Conservation", isPersistant = true, guiActiveEditor = true, guiActive = false), UI_Toggle(disabledText = "Velocity", enabledText = "Angular Momentum")] - protected bool AMConservationMode = false; - [KSPField(guiName = "Conservation", guiActiveEditor = false, guiActive = true)] public string ConservationMode; - - [KSPEvent(guiActive = false, active = true, guiActiveEditor = true, guiName = "Toggle Bubble Guide", guiActiveUnfocused = false)] - public void ToggleBubbleGuide() - { - var gobj = FindEditorWarpBubble(); - if (gobj != null) - gobj.GetComponent().enabled = !gobj.GetComponent().enabled; - } - - private GameObject editorBubble; - - public Animation DeployAnimation - { - get - { - try - { - return part.FindModelAnimators(deployAnimationName)[0]; - } - catch (Exception) - { - print("[WARP] ERROR IN GetDeployAnimation"); - return null; - } - } - } - - public Animation UnfoldAnimation - { - get - { - try - { - return part.FindModelAnimators(unfoldAnimationName)[0]; - } - catch (Exception) - { - print("[WARP] ERROR IN GetUnfoldAnimation"); - return null; - } - } - } - - - public Animation WarpAnimation - { - get - { - try - { - return part.FindModelAnimators(warpAnimationName)[0]; - } - catch (Exception) - { - print("[WARP] ERROR IN GetWarpAnimation"); - return null; - } - } - } - - - private const int LIGHTSPEED = 299792458; - private const int SUBLIGHT_MULT = 40; - private const int SUBLIGHT_POWER = 5; - private const double SUBLIGHT_THROTTLE = .3d; - //private double CurrentSpeed; - private List _shipParts; - private double GravityBrakes; - // Angular Momentum Calculation Variables - private Vector3d TravelDirection; - private double Speed; - private CelestialBody PreviousBodyName; - private double OriginalFrameTrueRadius; - private double OriginalSpeed; - private double OriginalMomentumSqr; - private double SemiLatusOriginal; - private int ElipMode; - - - public override void OnStart(StartState state) - { - try - { - DeployAnimation[deployAnimationName].layer = 3; - if(unfoldAnimationName != "") - UnfoldAnimation[unfoldAnimationName].layer = 5; - WarpAnimation[warpAnimationName].layer = 4; - CheckBubbleDeployment(1000); - base.OnStart(state); - } - catch (Exception ex) - { - print(String.Format("[WARP] Error in OnStart - {0}", ex.Message)); - } - } - - private ModuleEngines eModule; - private GameObject warpBubble; - public override void OnAwake() - { - SetupDrive(); - } - - private void SetupDrive() - { - eModule = part.FindModuleImplementing(); - editorBubble = FindEditorWarpBubble(); - foreach (var gobj in GameObject.FindGameObjectsWithTag("Icon_Hidden")) - { - if (gobj.name == "Torus_001") - { - warpBubble = gobj; - } - } - } - - public override void OnLoad(ConfigNode node) - { - try - { - if (!HighLogic.LoadedSceneIsFlight) - return; - - - CheckBubbleDeployment(1000); - if (AMConservationMode == true) - { - ConservationMode = "A.Momentum"; - } - if (AMConservationMode == false) - { - ConservationMode = "Velocity"; - } - } - catch (Exception ex) - { - print(String.Format("[WARP] Error in OnLoad - {0}", ex.Message)); - } - } - - private void SetPartState(bool stiffenJoints) - { - if (stiffenJoints) - { - print("Stiffening"); - //Stiffen Joints - _shipParts = new List(); - foreach (var vp in vessel.parts) - { - print("[WARP] Stiffening " + vp.name); - _shipParts.Add(new ShipInfo - { - ShipPart = vp, - BreakingForce = vp.breakingForce, - BreakingTorque = vp.breakingTorque, - CrashTolerance = vp.crashTolerance, - Constraints = vp.GetComponent().constraints - }); - vp.breakingForce = Mathf.Infinity; - vp.breakingTorque = Mathf.Infinity; - vp.crashTolerance = Mathf.Infinity; - } - vessel.GetComponent().constraints &= RigidbodyConstraints.FreezeRotation; - } - - else - { - print("Unstiffening"); - //Stop vessel - vessel.GetComponent().AddTorque(-vessel.GetComponent().angularVelocity); - //Reset part state - if (_shipParts != null) - { - foreach (var sp in _shipParts) - { - if (vessel.parts.Contains(sp.ShipPart)) - { - print("[WARP] Relaxing " + sp.ShipPart.name); - sp.ShipPart.GetComponent().AddTorque(-sp.ShipPart.GetComponent().angularVelocity); - sp.ShipPart.breakingForce = sp.BreakingForce; - sp.ShipPart.breakingTorque = sp.BreakingTorque; - sp.ShipPart.crashTolerance = sp.CrashTolerance; - sp.ShipPart.GetComponent().constraints = sp.Constraints; - } - } - vessel.GetComponent().constraints &= ~RigidbodyConstraints.FreezeRotation; - } - } - } - - private bool CheckAltitude() - { - status = "inactive"; - if (FlightGlobals.currentMainBody != null) - { - var altCutoff = FlightGlobals.ActiveVessel.mainBody.Radius * MinAltitude; - if (FlightGlobals.ActiveVessel.altitude < altCutoff) - { - status = "failsafe: " + Math.Round (altCutoff / 1000, 0) + "km"; - return false; - } - } - return true; - } - - private void GravityBrake() //Maximum warp reduces as one gets closer to a planetary body - limited by SOI so physics ticks are an issue. - { - var cutoffRadius = GravFactor * FlightGlobals.ActiveVessel.mainBody.Radius; - var currentbody = FlightGlobals.ActiveVessel.mainBody; - GravityBrakes = ((FlightGlobals.ActiveVessel.mainBody.gravParameter / Math.Pow(FlightGlobals.ActiveVessel.orbit.radius, BrakeFalloff)) / (FlightGlobals.ActiveVessel.mainBody.gravParameter / Math.Pow(cutoffRadius, BrakeFalloff))); - if (currentbody != FlightGlobals.Bodies.FirstOrDefault(x => x.referenceBody == x.referenceBody)) - { - var nextbody = FlightGlobals.ActiveVessel.mainBody.orbit.referenceBody; - while (nextbody != FlightGlobals.Bodies.FirstOrDefault(x => x.referenceBody == x.referenceBody)) - { - cutoffRadius = GravFactor * nextbody.Radius; - GravityBrakes = GravityBrakes + (((nextbody.gravParameter / Math.Pow(currentbody.orbit.radius, BrakeFalloff)) / (nextbody.gravParameter / Math.Pow(cutoffRadius, BrakeFalloff)))); - currentbody = nextbody; - nextbody = nextbody.orbit.referenceBody; - } - } - GravityBrakes = 1 - GravityBrakes; - } - - public void FixedUpdate() - { - try - { - if (!HighLogic.LoadedSceneIsFlight) - return; - - if(eModule == null) - SetupDrive(); - - if (IsDeployed != eModule.getIgnitionState) - { - IsDeployed = eModule.getIgnitionState; - CheckBubbleDeployment(3); - SetPartState(eModule.getIgnitionState); - } - - if (IsDeployed) - { - //Failsafe - if (!CheckAltitude()) - { - eModule.Shutdown(); - return; - } - - //Snip parts - DecoupleBubbleParts(); - - //OH NO FLAMEOUT! - if (eModule.flameout) - { - print("Flameout"); - BubbleCollapse(eModule.currentThrottle); - FlightInputHandler.state.mainThrottle = 0; - IsDeployed = false; - return; - } - - PlayWarpAnimation(eModule.currentThrottle); - GravityBrake(); - //Start by adding in our subluminal speed which is exponential - double lowerThrottle = (Math.Min(eModule.currentThrottle, SUBLIGHT_THROTTLE) * SUBLIGHT_MULT); - double distance = Math.Pow(lowerThrottle, SUBLIGHT_POWER); - - //Then if throttle is over our threshold, go linear - if (eModule.currentThrottle > SUBLIGHT_THROTTLE) - { - //How much headroom do we have - double maxSpeed = ((LIGHTSPEED*WarpFactor) - distance); - //How much of this can we use? - var upperThrottle = eModule.currentThrottle - SUBLIGHT_THROTTLE; - //How much of this headroom have we used? - var throttlePercent = upperThrottle/(1 - SUBLIGHT_THROTTLE); - //Add it to our current throttle calculation - var additionalDistance = maxSpeed*throttlePercent; - distance += additionalDistance; - } - - - //Take into acount safe accelleration/decelleration - //if (distance > CurrentSpeed + Math.Pow(10,MaxAccelleration)) - // distance = CurrentSpeed + Math.Pow(10, MaxAccelleration); - //if (distance < CurrentSpeed - Math.Pow(10, MaxAccelleration)) - // distance = CurrentSpeed - Math.Pow(10, MaxAccelleration); - //CurrentSpeed = distance; - - //if (distance > 1000) - //{ - //Let's see if we can get rid of precision issues with distance. - // Int32 precision = Math.Round(distance, 0).ToString().Length - 1; - // if (precision > MaxAccelleration) precision = MaxAccelleration; - // var magnitude = Math.Round((distance / Math.Pow(10, precision)),0); - // var jumpDistance = Math.Pow(10,precision) * magnitude; - // distance = jumpDistance; - //} - - double maxspeeddisp = Math.Pow(LIGHTSPEED * WarpFactor, GravityBrakes) / LIGHTSPEED; - double ts = WarpFactor * (TurboPoint / 100d); - if (maxspeeddisp >= ts) - { - distance = distance / (Math.Log(1/GravityBrakes) + (1 / (TurboFactor * TurboMult))); - maxspeeddisp = maxspeeddisp / (Math.Log(1 / GravityBrakes) + (1 / (TurboFactor*TurboMult))); - } - if (eModule.currentThrottle > MinThrottle) - { - // Translate through space on the back of a Kraken! - distance = Math.Pow(distance, GravityBrakes) * TimeWarp.fixedDeltaTime; - Vector3d ps = FlightGlobals.ActiveVessel.transform.position + (transform.up*(float) distance); - //krakensbane.setOffset(ps); - FloatingOrigin.SetOutOfFrameOffset(ps); - - //AngularMomentum Block - if (AMConservationMode == true) - { - ApplyAngularMomentum(); - } - } - if (AMConservationMode == true && eModule.currentThrottle == 0) - { - SetAMStartStateVars(); - } - double speedcdisp = (distance) / (LIGHTSPEED * TimeWarp.fixedDeltaTime); - status = String.Format("{0:g3}c [Max {1:f3}c] T@{2:f3}c", speedcdisp, maxspeeddisp, ts); - } - } - catch (Exception ex) - { - print(String.Format("[WARP] Error in OnFixedUpdate - {0}", ex.Message)); - } - } - - private void ApplyAngularMomentum() - { - FlightGlobals.ActiveVessel.IgnoreGForces(2); - if (PreviousBodyName == FlightGlobals.ActiveVessel.mainBody) - { - Krakensbane.ResetVelocityFrame(true); - if ((FlightGlobals.ActiveVessel.orbit.eccentricity >= 1) && (ElipMode == 0)) //For Hyperbolic Orbits. Conserve angular momentum by making orbit.h constant. GMp=h^2, so semi-latus rectum must be constant as well.). - { - Speed = Math.Sqrt(FlightGlobals.ActiveVessel.mainBody.gravParameter*((2/FlightGlobals.ActiveVessel.orbit.radius)-((SemiLatusOriginal*FlightGlobals.ActiveVessel.mainBody.gravParameter)/(FlightGlobals.ActiveVessel.orbit.semiMajorAxis * OriginalMomentumSqr)))); - var VelocityOffset = (TravelDirection * Speed); - FlightGlobals.ActiveVessel.SetWorldVelocity (VelocityOffset); - } - if ((FlightGlobals.ActiveVessel.orbit.eccentricity < 1) && (ElipMode == 1)) // For Elliptical Orbits. Conserve Angular Momentum directly by altering state vectors - { - Speed = OriginalSpeed * (OriginalFrameTrueRadius / (FlightGlobals.ActiveVessel.orbit.radius)); - var VelocityOffset = (TravelDirection * Speed); - FlightGlobals.ActiveVessel.SetWorldVelocity (VelocityOffset); - if (((FlightGlobals.ActiveVessel.orbit.radius / OriginalFrameTrueRadius) >= 0.85) || ((FlightGlobals.ActiveVessel.orbit.radius / OriginalFrameTrueRadius) <= 1.15)) // re-set variables when ratio between current ratio and original gets too far from 1 - { - OriginalSpeed = Vector3d.Magnitude (FlightGlobals.ActiveVessel.orbit.GetRelativeVel ()); - OriginalFrameTrueRadius = FlightGlobals.ActiveVessel.orbit.radius; - } - } - } - if (((FlightGlobals.ActiveVessel.orbit.eccentricity < 1) && (ElipMode == 0)) || ((FlightGlobals.ActiveVessel.orbit.eccentricity > 1) && (ElipMode == 1)) || (PreviousBodyName != FlightGlobals.currentMainBody)) - if (PreviousBodyName != FlightGlobals.ActiveVessel.mainBody) - { - SetAMStartStateVars(); - } - - } - - private void SetAMStartStateVars() - { - TravelDirection = Vector3d.Normalize(FlightGlobals.ActiveVessel.orbit.GetRelativeVel()); - OriginalSpeed = Vector3d.Magnitude(FlightGlobals.ActiveVessel.orbit.GetRelativeVel()); - OriginalFrameTrueRadius = FlightGlobals.ActiveVessel.orbit.radius; - OriginalMomentumSqr = Vector3d.SqrMagnitude(FlightGlobals.ActiveVessel.orbit.h.xzy); - PreviousBodyName = FlightGlobals.currentMainBody; - SemiLatusOriginal = FlightGlobals.ActiveVessel.orbit.semiLatusRectum; - if (FlightGlobals.ActiveVessel.orbit.eccentricity > 1) - { - ElipMode = 0; - } - else - { - ElipMode = 1; - } - } - - - private void BubbleCollapse(float speed) - { - var r = new System.Random(); - foreach (var p in vessel.parts) - { - var expl = r.Next(0, 100); - if (expl <= 33) - { - p.explode(); - } - if (expl >= 66) - { - p.decouple(10000); - } - } - } - - private void PlayWarpAnimation(float speed) - { - try - { - WarpAnimation[warpAnimationName].speed = 1 + (speed * WarpFactor); - if (!WarpAnimation.IsPlaying(warpAnimationName)) - { - WarpAnimation.Play(warpAnimationName); - } - //Set our color - var rgb = ColorUtils.HSL2RGB(Math.Abs(speed - 1), 0.5, speed / 2); - var c = new Color(rgb[0], rgb[1], rgb[2]); - warpBubble.GetComponent().material.SetColor("_Color", c); - - } - catch (Exception) - { - print("[WARP] ERROR IN PlayWarpAnimation"); - } - } - private void DecoupleBubbleParts() - { - try - { - int warpenginecount = 0; - foreach (var p in vessel.parts) - { - var posPart = p.partTransform.position; - var posBubble = part.partTransform.position; - double distance = Vector3d.Distance(posBubble, posPart); - if (distance > BubbleSize) - { - print("Part outside of warp bubble destroyed " + p.name); - p.decouple(10000); - } - if ((p.Modules.Contains("USI_ModuleWarpEngine") == true) && (p.FindModuleImplementing().getIgnitionState == true)) - { - warpenginecount++; - } - } - if (warpenginecount > 1) - { - ScreenMessages.PostScreenMessage("Invited Kraken - Too Many Active Warp Drives", 5f, ScreenMessageStyle.UPPER_CENTER); - foreach (var p in vessel.parts) - { - p.explode(); - part.explode(); - } - } - } - catch (Exception) - { - print("[WARP] ERROR IN DecoupleBubbleParts"); - } - } - private void CheckBubbleDeployment(int speed) - { - try - { - print("CHECKING BUBBLE " + speed); - //Turn off guide if there - if (IsDeployed) - { - SetDeployedState(speed); - } - else - { - SetRetractedState(-speed); - CheckAltitude(); - } - if (!HighLogic.LoadedSceneIsEditor) - { - if (editorBubble != null) - editorBubble.GetComponent().enabled = false; - } - } - catch (Exception) - { - print("[WARP] ERROR IN CheckBubbleDeployment"); - } - } - private GameObject FindEditorWarpBubble() - { - foreach (var gobj in GameObject.FindObjectsOfType()) - { - if (gobj.name == "EditorWarpBubble" && gobj.GetComponent() != null) - return gobj; - } - - return null; - } - private void SetRetractedState(int speed) - { - try - { - IsDeployed = false; - PlayDeployAnimation(speed); - } - catch (Exception) - { - print("[WARP] ERROR IN SetRetractedState"); - } - } - private void SetDeployedState(int speed) - { - try - { - IsDeployed = true; - PlayDeployAnimation(speed); - //For Angular Momentum Calculations - if (AMConservationMode == true) - { - SetAMStartStateVars(); - } - } - catch (Exception) - { - print("[WARP] ERROR IN SetDeployedState"); - } - } - - private void PlayDeployAnimation(int speed) - { - try - { - if (speed < 0) - { - DeployAnimation[deployAnimationName].time = DeployAnimation[deployAnimationName].length; - if(unfoldAnimationName != "") - UnfoldAnimation[unfoldAnimationName].time = UnfoldAnimation[unfoldAnimationName].length; - } - DeployAnimation[deployAnimationName].speed = speed; - DeployAnimation.Play(deployAnimationName); - if (unfoldAnimationName != "") - { - UnfoldAnimation[unfoldAnimationName].speed = speed; - UnfoldAnimation.Play(unfoldAnimationName); - } - } - catch (Exception) - { - print("[WARP] ERROR IN PlayDeployAnimation"); - } - } - - //private List GetNearbyVessels(int range, bool includeSelf) - //{ - // try - // { - // var vessels = new List(); - // foreach (var v in FlightGlobals.Vessels.Where( - // x => x.mainBody == vessel.mainBody)) - // { - // if (v == vessel && !includeSelf) continue; - // var posCur = vessel.GetWorldPos3D(); - // var posNext = v.GetWorldPos3D(); - // var distance = Vector3d.Distance(posCur, posNext); - // if (distance < range) - // { - // vessels.Add(v); - // } - // } - // return vessels; - // } - // catch (Exception ex) - // { - // print(String.Format("[WARP] - ERROR in GetNearbyVessels - {0}", ex.Message)); - // return new List(); - // } - //} - } -} diff --git a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version index ba22828..d86b305 100644 --- a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version +++ b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpDrive.version @@ -10,7 +10,7 @@ "VERSION":{ "MAJOR":0, "MINOR":9, - "PATCH":0, + "PATCH":1, "BUILD":0 }, "KSP_VERSION":{ diff --git a/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpEngine.dll b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpEngine.dll new file mode 100644 index 0000000..a6be521 Binary files /dev/null and b/FOR_RELEASE/GameData/UmbraSpaceIndustries/WarpDrive/WarpEngine.dll differ diff --git a/Source/WarpEngine/WarpEngine.sln.DotSettings.user b/Source/WarpEngine/WarpEngine.sln.DotSettings.user new file mode 100644 index 0000000..1060189 --- /dev/null +++ b/Source/WarpEngine/WarpEngine.sln.DotSettings.user @@ -0,0 +1,4 @@ + + <AssemblyExplorer> + <Assembly Path="C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll" /> +</AssemblyExplorer> \ No newline at end of file diff --git a/Source/WarpEngine/WarpEngine/WarpEngine.csproj b/Source/WarpEngine/WarpEngine/WarpEngine.csproj index c7ffae4..0597e1a 100644 --- a/Source/WarpEngine/WarpEngine/WarpEngine.csproj +++ b/Source/WarpEngine/WarpEngine/WarpEngine.csproj @@ -32,6 +32,7 @@ ..\..\..\..\..\KSP_DEV\KSP_Data\Managed\Assembly-CSharp.dll + False @@ -42,9 +43,11 @@ ..\..\..\..\..\KSP_DEV\KSP_Data\Managed\UnityEngine.dll + False ..\..\..\..\..\KSP_DEV\KSP_Data\Managed\UnityEngine.UI.dll + False diff --git a/Source/WarpEngine/WarpEngine/obj/Debug/WarpEngine.pdb b/Source/WarpEngine/WarpEngine/obj/Debug/WarpEngine.pdb new file mode 100644 index 0000000..9356052 Binary files /dev/null and b/Source/WarpEngine/WarpEngine/obj/Debug/WarpEngine.pdb differ