https://baba-s.hatenablog.com/entry/2018/04/01/152500
上記サイトを参考にして上から見た360度のシューティングを作ってます。
上記サイトではマウスの位置にキャラが向くようにしていますが、やりたいことは←↑→ボタンで移動した方向に自動で向かせたいのですがやり方がわかりません。
現在キャラに移動はいたってシンプルです。
void Update()
{
float dx = Input.GetAxisRaw("Horizontal")Time.deltaTimespeed;
float dy = Input.GetAxisRaw("Vertical") * Time.deltaTime * speed;
transform.position = new Vector3(transform.position.x+dx,transform.position.y+dy,0f);
}
よろしくお願いいたします><
あなたの回答
tips
プレビュー