14 lines
280 B
C#
14 lines
280 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class CameraActiveTool : MonoBehaviour
|
|
{
|
|
public static Action<bool> CameraActiveEvent;
|
|
|
|
public void CameraActive(bool Active) {
|
|
CameraActiveEvent(Active);
|
|
}
|
|
}
|