Skip to content

Commit

Permalink
Fixed instance incorrect naming
Browse files Browse the repository at this point in the history
Small cleanup in readme
  • Loading branch information
Meister1593 committed Oct 4, 2023
1 parent 64c1136 commit c182fc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ProjectBabbleResonite/BabbleResonite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public override void OnEngineInit()
[HarmonyPatch(new[] { typeof(Engine) })]
public class InputInterfaceCtorPatch
{
public static void Postfix(InputInterface instance)
public static void Postfix(InputInterface __instance)
{
try
{
_babbleOsc = new BabbleOsc(_config.GetValue(OscPort));
var gen = new ProjectBabbleInterface();
instance.RegisterInputDriver(gen);
__instance.RegisterInputDriver(gen);
}
catch (Exception e)
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A [ResoniteModLoader](https://github.com/resonite-modding-group/ResoniteModLoade
1. Install [ResoniteModLoader](https://github.com/resonite-modding-group/ResoniteModLoader).
2. Place [ProjectBabbleResonite.dll](https://github.com/Meister1593/ProjectBabbleResonite/releases) into your `rml_mods` folder. This folder should be at `C:\Program Files (x86)\Steam\steamapps\common\Resonite\rml_mods` on windows or `$HOME/.steam/steam/steamapps/common/Resonite/rml_mods` on linux for a default installation. You can create it if it's missing, or if you launch the game once with ResoniteModLoader installed it will create the folder for you.
3. Place [OscCore.dll](https://github.com/Meister1593/ProjectBabbleResonite/releases) into your Resonite base folder, one above your 'rml_mods' folder. This folder should be at `C:\Program Files (x86)\Steam\steamapps\common\Resonite` on windows or `$HOME/.steam/steam/steamapps/common/Resonite` on linux for a default installation.
4. Load and run Project Babble's face tracking before starting Resonite. All defaults should be fine unless you have more than 1 camera.
4. Load and run Project Babble's face tracking before starting Resonite.
5. Start the game!

Mod has controls to enable/disable it completely (no hooks on avatar values) or to enable/disable it just for VR in mod settings.
Expand Down

0 comments on commit c182fc1

Please sign in to comment.