上海杨浦大连路地铁站单机版电子沙盘
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
338 B

using System.Collections;
using UnityEngine;
/// <summary>
/// 保持平台水平位置
/// </summary>
public class HorizontalKeep : MonoBehaviour
{
private void Update()
{
var theta = Vector3.Dot(transform.forward, Vector3.up);
var angle = Mathf.Rad2Deg * theta;
transform.Rotate(angle, 0, 0);
}
}