浏览代码

Fix for changing scenes when LightEstimation script is enabled

/1.5-preview
Mal Duffin 6 年前
当前提交
9ac3e9ad
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9
      Assets/Scripts/LightEstimation.cs

9
Assets/Scripts/LightEstimation.cs


void Awake ()
{
m_Light = GetComponent<Light>();
}
void OnEnable()
{
}
private void OnDisable()
{
ARSubsystemManager.cameraFrameReceived -= FrameChanged;
}
void FrameChanged(ARCameraFrameEventArgs args)

正在加载...
取消
保存