Bezi回来了

This commit is contained in:
SoulliesOfficial
2026-04-28 15:46:32 -04:00
parent 7379583165
commit 0902ca8a9e
56 changed files with 3285 additions and 3803 deletions

View File

@@ -117,11 +117,20 @@ namespace Cielonos.MainGame.Characters
}
};
inputActions.Player.LockOnTarget.performed += ctx =>
inputActions.Player.LockonTarget.performed += ctx =>
{
if (ctx.performed && isCursorLocked.Value)
{
operation.LockOnTarget();
operation.LockonTarget();
}
};
inputActions.Player.SelectLockonTarget.performed += ctx =>
{
if (ctx.performed && isCursorLocked.Value)
{
Debug.Log("Value: " + ctx.ReadValue<float>());
operation.SelectLockonTarget(ctx.ReadValue<float>());
}
};