転んだTankを元に戻す方法
リカバーボタンの実装
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Recover : MonoBehaviour
{
private Vector3 rot;
void Update()
{
rot = transform.eulerAngles;
// Rボタンを押すと起き上がる。
if(Input.GetKeyDown(KeyCode.R))
{
transform.eulerAngles = new Vector3(0, rot.y, 0);
}
}
}
【2021版】BattleTank(基礎/全33回)
他のコースを見るリカバーボタンの実装
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Recover : MonoBehaviour
{
private Vector3 rot;
void Update()
{
rot = transform.eulerAngles;
// Rボタンを押すと起き上がる。
if(Input.GetKeyDown(KeyCode.R))
{
transform.eulerAngles = new Vector3(0, rot.y, 0);
}
}
}
転んだTankを元に戻す方法