2 Commits

Author SHA1 Message Date
Yue-bin
023602e364 📃 docs(readme): 补充功能 2026-02-27 02:26:57 +08:00
Yue-bin
dde47af2d8 📃 docs(readme): v3.1.1 2026-02-27 02:25:43 +08:00
2 changed files with 28 additions and 0 deletions

20
Patches/LogLeverAngle.cs Normal file
View File

@@ -0,0 +1,20 @@
using HarmonyLib;
using stick.plugins.playermanager;
using Steamworks;
using UnityEngine;
[HarmonyPatch(typeof(HostLeverHandler), "Update")]
class LogLeverAngle
{
static Vector3 lastForward = Vector3.zero;
public static void PostFix()
{
Vector3 currentForward = PlayerManager.HostLeverHandler.lever.transform.forward;
if (currentForward != lastForward)
{
Debug.Log("Current Lever Angle: " + currentForward);
lastForward = currentForward;
}
}
}

View File

@@ -14,9 +14,17 @@
- 拉黑玩家,当你是房主的时候生效
- 可选择开启,默认开启的防踢
- 可配置的界面开启按键默认为F2
- 可以随时切换房间的公开性
## 更新日志
### v3.1.1
1. 添加了房间公开性切换功能
2. 更改房间筛选条件现在会触发刷新列表
3. 现在房间列表不会在房间内显示,防止误触导致的游戏状态不一致
4. 一些重构和优化
### v3.0.3
1. 修复了kick按钮无论如何都会显示的问题难道他真的是猪