mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
Experimental quivering on orgasm
This commit is contained in:
parent
0a5b504d29
commit
9d70c2cb59
11 changed files with 78 additions and 4 deletions
40
Source/Settings/Animation_Settings.cs
Normal file
40
Source/Settings/Animation_Settings.cs
Normal file
|
@ -0,0 +1,40 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Verse;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Rimworld_Animations {
|
||||
public class AnimationSettings : ModSettings {
|
||||
|
||||
public static bool orgasmQuiver;
|
||||
|
||||
public override void ExposeData() {
|
||||
Scribe_Values.Look(ref orgasmQuiver, "orgasmQuiver");
|
||||
base.ExposeData();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class RJW_Animations : Mod {
|
||||
|
||||
public RJW_Animations(ModContentPack content) : base(content) {
|
||||
}
|
||||
|
||||
public override void DoSettingsWindowContents(Rect inRect) {
|
||||
|
||||
Listing_Standard listingStandard = new Listing_Standard();
|
||||
listingStandard.Begin(inRect);
|
||||
|
||||
listingStandard.CheckboxLabeled("Enable Orgasm Quiver", ref AnimationSettings.orgasmQuiver);
|
||||
listingStandard.End();
|
||||
base.DoSettingsWindowContents(inRect);
|
||||
}
|
||||
|
||||
public override string SettingsCategory() {
|
||||
return "RJW Animation Settings";
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue