feat: add hero and body deal damage

This commit is contained in:
Bragin Stepan
2026-02-21 18:23:43 +05:00
parent 6e04b47ac2
commit dfd7b5ccf3
26 changed files with 977 additions and 225 deletions

View File

@@ -5,13 +5,13 @@ using UnityEngine;
namespace _Project.Develop.Runtime.Logic.Gameplay.Features.Movement
{
public class RotateDirectionByInputSystem : IInitializableSystem, IUpdatableSystem
public class RotateDirectionByMoveInputSystem : IInitializableSystem, IUpdatableSystem
{
private readonly IPlayerInput _playerInput;
private ReactiveVariable<Vector3> _rotateDirection;
public RotateDirectionByInputSystem(IPlayerInput playerInput)
public RotateDirectionByMoveInputSystem(IPlayerInput playerInput)
{
_playerInput = playerInput;
}