みなさんこんにちはスタジオしまづの嶋津です。
前回
今回
Jumpアニメーションの実装について紹介します。
(役に立ったという方はチャンネル登録していただけると嬉しいです^^)
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerMovement : MonoBehaviour { [SerializeField] GameManager gameManager; [SerializeField] LayerMask blockLayer; Rigidbody2D rigidbody2D; float speed = 0; // Jump float jumpPower = 400; Animator animator; public enum MOVE_DIRECTION { STOP, LEFT, RIGHT, } MOVE_DIRECTION moveDirection = MOVE_DIRECTION.STOP; void Start() { rigidbody2D = GetComponent<Rigidbody2D>(); animator = GetComponent<Animator>(); } void Update() { float x = Input.GetAxis("Horizontal"); animator.SetFloat("speed", Mathf.Abs(x)); if (x==0) { // 止まる moveDirection = MOVE_DIRECTION.STOP; } else if (x>0) { // 右に移動 moveDirection = MOVE_DIRECTION.RIGHT; } else if (x < 0) { // 左に移動 moveDirection = MOVE_DIRECTION.LEFT; } if (IsGround()) { if (Input.GetKeyDown("space")) { Jump(); animator.SetBool("isJumping", true); } else { animator.SetBool("isJumping", false); } } } private void FixedUpdate() { switch (moveDirection) { case MOVE_DIRECTION.STOP: speed=0; break; case MOVE_DIRECTION.LEFT: transform.localScale = new Vector3(-1,1,1); speed= -3; break; case MOVE_DIRECTION.RIGHT: transform.localScale = new Vector3(1, 1, 1); speed = 3; break; } rigidbody2D.velocity = new Vector2(speed, rigidbody2D.velocity.y); } void Jump() { rigidbody2D.AddForce(Vector2.up * jumpPower); } bool IsGround() { Debug.DrawLine(transform.position - transform.right * 0.2f, transform.position - transform.up * 0.1f); Debug.DrawLine(transform.position + transform.right * 0.2f, transform.position - transform.up * 0.1f); return Physics2D.Linecast(transform.position-transform.right*0.2f, transform.position - transform.up * 0.1f, blockLayer) || Physics2D.Linecast(transform.position + transform.right * 0.2f, transform.position - transform.up * 0.1f, blockLayer); } private void OnTriggerEnter2D(Collider2D collision) { if (collision.gameObject.tag == "Trap") { gameManager.GameOver(); } if (collision.gameObject.tag == "Finish") { gameManager.GameClear(); } if (collision.gameObject.tag == "Item") { collision.gameObject.GetComponent<ItemManager>().GetItem(); } if (collision.gameObject.tag == "Enemy") { EnemyManager enemy = collision.gameObject.GetComponent<EnemyManager>(); if(this.transform.position.y+0.2f > enemy.transform.position.y) { // 踏んだら // プレイヤーをジャンプさせる rigidbody2D.velocity = new Vector2(rigidbody2D.velocity.x, 0); Jump(); enemy.DestroyEnemy(); } else { // 正面からぶつかったら Destroy(this.gameObject); gameManager.GameOver(); } } } }
次の動画では敵を撃破したときのエフェクトの実装方法を紹介します。
スタジオしまづから
ゲームをリリースしたい人向けのUnity講座を動画販売しています。c#の基礎からリリースまで体系的に学びたい方はぜひ。
https://www.udemy.com/studio_shimazu_nfrpg/?couponCode=FREE_FIRST
また、一人でゲームを作るのは難しいという方はゲームリリースを目的とするオンラインサロンもやっているのでよければどうぞ!話だけでもという方はTwitterのDMだけでもOKです^^
camp-fire.jp