Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notnite/polotweaks
https://github.com/notnite/polotweaks
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/notnite/polotweaks
- Owner: NotNite
- License: mit
- Created: 2024-02-01T04:39:08.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-01T17:08:12.000Z (10 months ago)
- Last Synced: 2024-05-01T17:34:42.495Z (7 months ago)
- Language: C#
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PoloTweaks
[![Plugin builds](https://github.com/NotNite/PoloTweaks/actions/workflows/plugin.yml/badge.svg)](https://github.com/NotNite/PoloTweaks/actions/workflows/plugin.yml)
Bomb Rush Cyberfunk tweaks.
## Config
> [!WARNING]
> This mod uses a custom config system that will not work with r2modman. You are expected to edit the config file by hand in a text editor. I am not going to help you if you struggle with the TOML syntax - it is heavily documented on the internet.Create a config file named `PoloTweaks.toml` in your BepInEx config directory. The config is split into modules. Each module has an ID associated with it, an enabled toggle, and the config options (if any).
### `fov`
Allows you to change your FOV.
```toml
[fov]
enabled = false
fov = 90
```### `trail`
Sticks trail renderers onto various bones on the player.
```toml
[trail]
enabled = false
all_players = false # Show trails on other players if using Slop Crew# By default there are no trails - you can add more like this:
[[trail.trails]]
bone = "footl"
color = "#FF0000D9"
length = 0.5[[trail.trails]]
bone = "footr"
color = "#FF0000D9"
length = 0.5
# Make the trails only appear at a certain speed (in Unity units)
# min_speed = 5
```