Skip to content

Commit

Permalink
Add intimacy slider
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed Feb 9, 2019
1 parent 94112f6 commit e7265da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions KKCheatTools/CheatTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>..\Libs\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
<HintPath>..\..\..\..\Games\Koikatsu\Koikatu_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="BepInEx">
<HintPath>..\Libs\BepInEx.dll</HintPath>
Expand Down
6 changes: 6 additions & 0 deletions KKCheatTools/CheatWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,12 @@ private void DrawCurrentHeroineCheats(SaveData.Heroine currentAdvGirl)
currentAdvGirl.anger = (int)GUILayout.HorizontalSlider(currentAdvGirl.anger, 0, 100);
}
GUILayout.EndHorizontal();
GUILayout.BeginHorizontal();
{
GUILayout.Label("Intimacy: " + currentAdvGirl.intimacy, GUILayout.Width(60));
currentAdvGirl.intimacy = (int)GUILayout.HorizontalSlider(currentAdvGirl.intimacy, 0, 100);
}
GUILayout.EndHorizontal();
}
GUILayout.EndVertical();

Expand Down

0 comments on commit e7265da

Please sign in to comment.