17 lines
474 B
C#
17 lines
474 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
/*******************************************************************************
|
||
|
|
*Create By CG
|
||
|
|
*Function
|
||
|
|
*******************************************************************************/
|
||
|
|
namespace ToolTipCtrl
|
||
|
|
{
|
||
|
|
public class ToolTipCtrl : MonoBehaviour
|
||
|
|
{
|
||
|
|
private void FixedUpdate()
|
||
|
|
{
|
||
|
|
transform.Find("BGTip").transform.LookAt(Camera.main.transform);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|