贵港吾悦商业管理有限公司多角色网上演练(吾悦广场)
 
 
 
 
 

13 lines
239 B

using UnityEngine;
using System.Collections;
[ExecuteInEditMode]
public class TreeLookAt : MonoBehaviour
{
// Update is called once per frame
void Update ()
{
transform.LookAt(Camera.main.transform, Vector3.up);
}
}