1
0
forked from akanyan/mu3-mods

feat(BetterGiveUp): yeet

This commit is contained in:
2025-01-12 00:00:49 +00:00
parent e3b1f1885c
commit 31fa3ce028
5 changed files with 85 additions and 83 deletions

View File

@ -0,0 +1,19 @@
using MonoMod;
using UnityEngine;
namespace MU3.Battle;
class patch_PlayerControl(PlayerParam param): PlayerControl(param) {
private Vector3? _positionForce = null;
public extern Vector3 orig_get__playPosition();
[MonoModPublic]
public new Vector3 _playPosition {
get {
return _positionForce ?? orig_get__playPosition();
}
set {
_positionForce = value;
}
}
}