2023-06-17から1日間の記事一覧

【ダークソウル風ゲームを作りたい(Unity)。その9】

今回は攻撃アクションを実装します。youtu.be public class PlayerLocomotion : MonoBehaviour //+EP1 playerにアタッチ { public void HandleMovement(float delta) { //+EP5 ローリング中の場合、以降なにもしない if (inputHandler.rollFlag) return; //+…