|
1 | | -# SpockPlugins_BepInEx |
2 | | -Generic modding tools for BepInEx |
| 1 | +# SpockPlugins_BepInEx IL2CPP |
| 2 | +Various plugins for Unity games ported to IL2CPP |
3 | 3 |
|
4 | | -## Enable Resize |
5 | | -An overhaul of [Enable Resize from BepInEx project](https://github.com/BepInEx/BepInEx.Utility) made to increase compatibility<br> |
6 | | -There are two versions: |
| 4 | +### Prerequisites |
| 5 | + |
| 6 | +- [BepInEx 6.0.0-pre.1](https://github.com/BepInEx/BepInEx/releases/tag/v6.0.0-pre.1) |
| 7 | +- [BepInExConfigManager.Il2Cpp](https://github.com/sinai-dev/BepInExConfigManager/releases) |
| 8 | + |
| 9 | +### Installation |
| 10 | +- Download the desired plugin from the [Releases Section](https://github.com/SpockBauru/SpockPlugins_BepInEx/releases). |
| 11 | +- Extract the .zip file in the game folder (where `game.exe` is). |
| 12 | + |
| 13 | +## Message Center |
| 14 | +A simple plugin that shows any log entries marked as "Message" on screen. Ported form [BepInEx Utility](https://github.com/BepInEx/BepInEx.Utility)<br> |
| 15 | +Plugins generally use the "Message" log level for things that they want the user to read. |
| 16 | + |
| 17 | +How to make my mod compatible?<br> |
| 18 | +Use the Logger of your plugin and call its LogMessage method or Log method and pass in LogLevel.Message as a parameter. You don't have to reference this plugin, and everything will work fine if this plugin doesn't exist. |
7 | 19 |
|
8 | | -### Enable Resize Mono <br> |
9 | | -Works on Unity games using the default mono Scripting Backend. <br> |
10 | | -Requires [BepInEx 5.4](https://github.com/BepInEx/BepInEx/releases/tag/v5.4.21) |
| 20 | +Please avoid abusing the messages! Only show short and clear messages that the user is likely to understand and find useful. Avoid showing many messages in a short succession. |
11 | 21 |
|
12 | | -### Enable Resize IL2CPP_netFramework <br> |
13 | | -Works on Unity games using the IL2CPP Scripting Backend.<br> |
14 | | -Requires [BepInEx 6.0](https://github.com/BepInEx/BepInEx/releases/tag/v6.0.0-pre.1) |
| 22 | +#### New Feature: Black List |
| 23 | +Suppress console messages containing certain words. Available in Configuration Manager. |
| 24 | + |
| 25 | +## Enable Resize |
| 26 | +An overhaul of [Enable Resize from BepInEx project](https://github.com/BepInEx/BepInEx.Utility) made to increase compatibility |
15 | 27 |
|
16 | 28 | ## Enable Full Screen Toggle ILCPP_netFM |
17 | | -ILCPP port from [Enable Full Screen Toggle project](https://github.com/BepInEx/BepInEx.Utility) |
18 | | -Requires [BepInEx 6.0](https://github.com/BepInEx/BepInEx/releases/tag/v6.0.0-pre.1) |
| 29 | +Enables toggling full screen with alt+enter on games with it disabled. Ported form [BepInEx Utility](https://github.com/BepInEx/BepInEx.Utility) |
| 30 | + |
| 31 | + |
0 commit comments