标签:
if(Input.GetKey(KeyCode.Q))
{
transform.Rotate(0,-50*Time.deltaTime,0,Space.Self);
}
if(Input.GetKey(KeyCode.E))
{
transform.Rotate(0,50*Time.deltaTime,0,Space.Self);
}
模仿WOW镜头操作
标签:
原文地址:http://www.cnblogs.com/goodchenqing/p/4268675.html