Skip to content

Commit

Permalink
[COM3D2] Enable rotators
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauceke committed Jul 1, 2022
1 parent 7c625d6 commit 1f84a13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions LoveMachine.COM3D2/Com3d2ButtplugController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,10 @@ internal class Com3d2ButtplugStrokerController : Com3d2ButtplugController
protected override IEnumerator Run(int girlIndex, Bone bone) =>
RunStrokerLoop(girlIndex, bone);
}

internal class Com3d2ButtplugRotatorController : Com3d2ButtplugController
{
protected override IEnumerator Run(int girlIndex, Bone bone) =>
RunRotatorLoop(girlIndex, bone);
}
}
3 changes: 2 additions & 1 deletion LoveMachine.COM3D2/Com3d2LoveMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ private void Start()
girlMappingHeader: "Threesome Role",
girlMappingOptions: new string[] { "First girl", "Second girl", "Off" },
typeof(Com3d2ButtplugVibeController),
typeof(Com3d2ButtplugStrokerController));
typeof(Com3d2ButtplugStrokerController),
typeof(Com3d2ButtplugRotatorController));
Hooks.InstallHooks();
}
}
Expand Down

0 comments on commit 1f84a13

Please sign in to comment.