forked from akanyan/mu3-mods
15 lines
351 B
C#
15 lines
351 B
C#
using UnityEngine;
|
|
|
|
namespace MU3.TestMode;
|
|
|
|
class patch_TestModePage: TestModePage {
|
|
private Vector3 _cursorOffset;
|
|
|
|
protected extern void orig_initializeParamater();
|
|
protected override void initializeParamater() {
|
|
orig_initializeParamater();
|
|
|
|
_cursorOffset = new Vector3(-48f * Screen.height / 1920f, 0f, 0f);
|
|
}
|
|
}
|