36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
|
using Syntriax.Modules.Trigger;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Syntriax.Modules.Movement.Implementations
|
||
|
{
|
||
|
[RequireComponent(typeof(Rigidbody2D))]
|
||
|
public class GroundMovement1D : MovementBase1D
|
||
|
{
|
||
|
protected override float moveValue { get; set; } = 0f;
|
||
|
protected IGroundTrigger groundTrigger = null;
|
||
|
protected Rigidbody2D rigid = null;
|
||
|
|
||
|
protected override void Start()
|
||
|
{
|
||
|
base.Start();
|
||
|
|
||
|
rigid = GetComponent<Rigidbody2D>();
|
||
|
groundTrigger = GetComponentInChildren<IGroundTrigger>();
|
||
|
groundTrigger.OnTriggered += OnGroundTrigger;
|
||
|
}
|
||
|
|
||
|
private void OnGroundTrigger(bool isGrounded)
|
||
|
=> CanTakeOver = isGrounded;
|
||
|
|
||
|
public override void ApplyMovement()
|
||
|
{
|
||
|
Vector2 velocity = rigid.velocity;
|
||
|
velocity.x = moveValue;
|
||
|
rigid.velocity = velocity;
|
||
|
}
|
||
|
|
||
|
protected override void OnDeactivated() { }
|
||
|
protected override void OnActivated() { }
|
||
|
}
|
||
|
}
|