2025-01-17 19:46:17 -05:00
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.InputSystem;
|
|
|
|
|
|
|
|
|
|
[RequireComponent(typeof(PlayerMovement))]
|
|
|
|
|
[RequireComponent(typeof(PlayerInput))]
|
|
|
|
|
[RequireComponent(typeof(AnimationPlayer))]
|
|
|
|
|
public class Punch : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public bool cancelable = true;
|
|
|
|
|
|
|
|
|
|
[SerializeField] private BoxCollider2D hurtbox;
|
|
|
|
|
|
|
|
|
|
InputActionAsset actions;
|
|
|
|
|
|
|
|
|
|
private void Start()
|
|
|
|
|
{
|
|
|
|
|
actions = GetComponent<PlayerInput>().actions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Update()
|
|
|
|
|
{
|
2025-02-08 18:54:21 -05:00
|
|
|
if (actions.FindAction("Punch").WasPressedThisFrame())
|
2025-01-17 19:46:17 -05:00
|
|
|
{
|
|
|
|
|
if (!cancelable) return;
|
2025-02-08 18:54:21 -05:00
|
|
|
ExecutePunch();
|
2025-01-17 19:46:17 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-08 18:54:21 -05:00
|
|
|
private void ExecutePunch()
|
|
|
|
|
{
|
|
|
|
|
GetComponent<AnimationPlayer>().Punch();
|
|
|
|
|
DisableCancellation();
|
|
|
|
|
GetComponent<PlayerMovement>().maxSpeedOverride = 1f;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 19:46:17 -05:00
|
|
|
public void EnableHurtbox()
|
|
|
|
|
{
|
|
|
|
|
hurtbox.enabled = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DisableHurtbox()
|
|
|
|
|
{
|
|
|
|
|
hurtbox.enabled = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DisableCancellation()
|
|
|
|
|
{
|
|
|
|
|
cancelable = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void EnableCancellation()
|
|
|
|
|
{
|
|
|
|
|
cancelable = true;
|
|
|
|
|
}
|
2025-02-08 18:54:21 -05:00
|
|
|
|
|
|
|
|
public void ReturnToMaxSpeed()
|
|
|
|
|
{
|
|
|
|
|
GetComponent<PlayerMovement>().maxSpeedOverride = GetComponent<PlayerMovement>().maxSpeed;
|
|
|
|
|
}
|
2025-01-17 19:46:17 -05:00
|
|
|
}
|