mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-27 15:57:59 +01:00
24 lines
460 B
C#
24 lines
460 B
C#
|
using Fie.Manager;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Fie.UI
|
||
|
{
|
||
|
public class FieLobbyCanvasGUICameraCapture : MonoBehaviour
|
||
|
{
|
||
|
private Canvas selfCanvas;
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
selfCanvas = base.gameObject.GetComponent<Canvas>();
|
||
|
}
|
||
|
|
||
|
private void Update()
|
||
|
{
|
||
|
if (!(selfCanvas == null) && !(FieManagerBehaviour<FieGUIManager>.I.uiCamera == null))
|
||
|
{
|
||
|
selfCanvas.worldCamera = FieManagerBehaviour<FieGUIManager>.I.uiCamera.camera;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|