Skip to content

A Beat Saber mod to customize the grip position/angle of the sabers as well as trail length.

License

Notifications You must be signed in to change notification settings

Pespiri/BeatSaber-SaberTailor

 
 

Repository files navigation

Beat Saber - Saber Tailor v2.5.0

Tweak things about your sabers, including grip position/angle, saber length and trail length! Original mod by Ruu.

Note on updates from SaberTailor older than v2.0.0!

The way the configuration is stored has changed.
The new configuration file is now \Beat Saber\UserData\SaberTailor.json

The first time you run the game after version 2.0.0, SaberTailor will attempt to import the old settings.
If for whatever reason something should go wrong, you can still find the old settings in \Beat Saber\UserData\modprefs.ini.
If you want to import old settings again, remove the line IsExportedToNewConfig=1 from the [SaberTailor] section in \Beat Saber\UserData\modprefs.ini file.

Please note that grip position adjustments are now saved in millimeters. These were saved in centimeters in the old configuration file. As such, the saved values in SaberTailor.json are an order of magnitude higher than before.

Settings

Adjust the different settings in-game from the "Settings" menu.

You can also adjust your settings manually in \Beat Saber\UserData\SaberTailor.json (The game will have to be restarted) The default values are below:

{
  "ConfigVersion": 4,
  "IsSaberScaleModEnabled": false,
  "SaberScaleHitbox": false,
  "SaberLength": 100,
  "SaberGirth": 100,
  "IsTrailModEnabled": false,
  "IsTrailEnabled": true,
  "TrailLength": 20,
  "GripLeftPosition": {
    "x": 0,
    "y": 0,
    "z": 0
  },
  "GripRightPosition": {
    "x": 0,
    "y": 0,
    "z": 0
  },
  "GripLeftRotation": {
    "x": 0,
    "y": 0,
    "z": 0
  },
  "GripRightRotation": {
    "x": 0,
    "y": 0,
    "z": 0
  },
  "ModifyMenuHiltGrip": true,
  "SaberPosIncrement": 10,
  "SaberPosIncValue": 1,
  "SaberRotIncrement": 5,
  "SaberPosIncUnit": "cm",
  "SaberPosDisplayUnit": "cm"
}

If the file / settings don't exist, run your game once after installing!

Saber Scale Mod Toggle

  • Setting: IsSaberScaleModEnabled
  • Values: true | false
  • Default: false

Enables or disables saber scale modifications by SaberTailor.

SaberScaleHitbox

  • Setting: Scale hit-box
  • Values: true | false
  • Default: false

Enables scaling of the saber hit-box. Having this option set to true will disable score submission

Saber Length

  • Setting: SaberLength
  • Unit: Percentage
  • Default: 100 (100%)
  • Minimum: 5 (5%)
  • Maximum: 500 (500%)

Adjust the length of the sabers.

Saber Width

  • Setting: SaberGirth
  • Unit: Percentage
  • Default: 100 (100%)
  • Minimum: 5 (5%)
  • Maximum: 500 (500%)

Adjust the width of the sabers.

Trail Mod Toggle

  • Setting: IsTrailModEnabled
  • Values: true | false
  • Default: false

Enables or disables trail modifications by SaberTailor.

Trail Toggle

  • Setting: IsTrailEnabled
  • Values: true | false
  • Default: true

Allows you to disable the saber trail entirely, when set to false.

Trail Length

  • Setting: TrailLength
  • Unit: Integer (Whole Number)
  • Default: 20
  • Minimum: 5
  • Maximum: 100

Adjusts the length of the trail on the saber.

Grip Position (Left + Right)

  • Setting: GripLeftPosition, GripRightPosition

  • Unit: Millimeters

  • Default: "x": 0, "y": 0, "z": 0

  • Maximum: 500 on any axis

  • +x moves the saber right, EG: 200 moves the saber 20 centimeters right.

  • +y moves the saber up, EG: 100 moves the saber 10 centimeters up.

  • +z moves the saber forward, EG: 300 moves the saber 30 centimeters forward.

Alters the position of the left/right saber, relative to the default location. You cannot move the saber more than 50 centimeters away on any axis!

Grip Rotation (Left + Right)

  • Setting: GripLeftRotation, GripRightRotation

  • Unit: Degrees (-360 - 360)

  • Default: "x": 0, "y": 0, "z": 0

  • +x tilts the saber down, EG: 20 tilts the saber 20 degrees down.

  • +y rotates the saber right, EG: 10 rotates the saber 10 degrees right.

  • +z rolls the saber counter-clockwise around its own axis, EG: 30 rotates the saber 30 degrees counter-clockwise. (This is only useful if you have custom sabers that are not cylindrical shaped and you want to correct for a different grip (e.g. Vive B-Grip)

Alters the rotation of the sabers. The center of rotation is where the saber's hit-box starts, which is just after the glowing line on the handle.

Menu hilt adjustments

  • Setting: ModifyMenuHiltGrip
  • Values: true | false
  • Default: true

Alters the position and angle of the menu hilts the same way as the sabers, when set to true.

Developers

Contributing to SaberTailor

In order to build this project, please add a SaberTailor.csproj.user file in the project directory and specify where your game is located on your disk:

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <!-- Change this path if necessary. Make sure it ends with a backslash. -->
    <GameDirPath>C:\Program Files\Steam\steamapps\common\Beat Saber\</GameDirPath>
  </PropertyGroup>
</Project>

About

A Beat Saber mod to customize the grip position/angle of the sabers as well as trail length.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%