Skip to content

Commit

Permalink
increment version 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thojmr committed May 8, 2022
1 parent a27d14f commit 4dff762
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PregnancyPlus/PregnancyPlus.Core/PPPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace KK_PregnancyPlus
public partial class PregnancyPlusPlugin : BaseUnityPlugin
{
public const string GUID = "KK_PregnancyPlus";
public const string Version = "7.1";
public const string Version = "7.2";
internal static new ManualLogSource Logger { get; private set; }


Expand Down Expand Up @@ -86,7 +86,7 @@ internal void Start()
"0",
"Pregnancy+",
(oci, ctrl, leftValue, rightValue, factor) => {
var inflationSize = Mathf.Lerp(leftValue, rightValue, factor);
var inflationSize = Mathf.LerpUnclamped(leftValue, rightValue, factor);
ctrl.MeshInflate(inflationSize, "timeline_interpolable");
},
null,
Expand Down
2 changes: 1 addition & 1 deletion release.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
::Zips the dll into the correct directory structure for release
::Make sure to increment the version

set kk_version=7.1
set kk_version=7.2
set kks_name=KKS_PregnancyPlus
set hs2_name=HS2_PregnancyPlus
set ai_name=AI_PregnancyPlus
Expand Down

0 comments on commit 4dff762

Please sign in to comment.