-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ibodan
authored and
Ibodan
committed
Dec 24, 2019
1 parent
e0625a5
commit bbf852f
Showing
5 changed files
with
113 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace RumbleEnhancerOculus | ||
{ | ||
internal class PluginConfig | ||
{ | ||
public string CutClip = "0,0,0,0,255,255,255,0,255,255,255,0,255,255,0,255,255,0,200,200,0,200,200,0,120,120,0,90,90,0,90,90"; | ||
public string MissCutClip = "0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255"; | ||
public string BombClip = "0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255,0,0,0,0,255,255,255,0,255,255,255"; | ||
public string UIClip = "80,100,0,0,0,0"; | ||
public string SaberClashClip = "45,90,135,180,0,0,0,0,0,0"; | ||
public string ObstacleClip = "255,255,255,0,255,255,255,0"; | ||
public bool _fresh = true; | ||
|
||
public void LogValues() | ||
{ | ||
Plugin.logger?.Debug($" CutClip: {CutClip}"); | ||
Plugin.logger?.Debug($" MissCutClip: {MissCutClip}"); | ||
Plugin.logger?.Debug($" BombClip: {BombClip}"); | ||
Plugin.logger?.Debug($" UIClip: {UIClip}"); | ||
Plugin.logger?.Debug($" SaberClashClip: {SaberClashClip}"); | ||
Plugin.logger?.Debug($" ObstacleClip: {ObstacleClip}"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/nike4613/ModSaber-MetadataFileSchema/master/Schema.json", | ||
"author": "Ibodan", | ||
"description": "BeatSaber haptic feedback rebuilding for Oculus Touch.", | ||
"gameVersion": "1.6.0", | ||
"id": "RumbleEnhancerOculus", | ||
"name": "RumbleEnhancerOculus", | ||
"version": "1.1.0", | ||
"dependsOn": { | ||
"BSIPA": "^3.13.4" | ||
}, | ||
"features": [] | ||
} |