1
This commit is contained in:
@@ -57,6 +57,8 @@ namespace BITKit
|
||||
}
|
||||
public class BITAppForUnity : MonoBehaviour
|
||||
{
|
||||
public static event Action OnDrawGizmo;
|
||||
public static event Action OnDrawGizmoSelected;
|
||||
[Serializable]
|
||||
public class OpenUrl
|
||||
{
|
||||
@@ -224,5 +226,15 @@ namespace BITKit
|
||||
{
|
||||
return BITApp.State;
|
||||
}
|
||||
|
||||
private void OnDrawGizmos()
|
||||
{
|
||||
OnDrawGizmo?.Invoke();
|
||||
}
|
||||
|
||||
private void OnDrawGizmosSelected()
|
||||
{
|
||||
OnDrawGizmoSelected?.Invoke();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user