Skip to content

Commit

Permalink
KSP 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
radistmorse committed Oct 19, 2019
1 parent 1a4a6b5 commit 7adbe8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PhysicsCalmer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private System.Collections.IEnumerator ResetPhysics () {
CheatOptions.NoCrashDamage = crash;
CheatOptions.UnbreakableJoints = joints;

Debug.Log ("[Physics Calmer] Returned cheat options to the original state: NoCrashDamage=" + crash.ToString () + " UnbreakableJoints=" + joints.ToString ());
Debug.Log ($"[Physics Calmer] Returned cheat options to the original state: NoCrashDamage={crash} UnbreakableJoints={joints}");
}
}
}
7 changes: 6 additions & 1 deletion PhysicsCalmer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PhysicsCalmer</RootNamespace>
<AssemblyName>PhysicsCalmer</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand All @@ -21,6 +21,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
Expand All @@ -30,6 +31,7 @@
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
Expand All @@ -43,6 +45,9 @@
<Reference Include="UnityEngine">
<HintPath>..\Libs\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\Libs\UnityEngine.CoreModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="PhysicsCalmer.cs" />
Expand Down

0 comments on commit 7adbe8c

Please sign in to comment.