浏览代码

[PlanarProbe] Don't active planar probe when deactivated

/main
Frédéric Vauchelles 7 年前
当前提交
085001f9
共有 1 个文件被更改,包括 4 次插入5 次删除
  1. 9
      ScriptableRenderPipeline/HDRenderPipeline/HDRP/Lighting/PlanarReflectionProbe.cs

9
ScriptableRenderPipeline/HDRenderPipeline/HDRP/Lighting/PlanarReflectionProbe.cs


public void RequestRealtimeRender()
{
if (enabled)
if (isActiveAndEnabled)
ReflectionSystem.RequestRealtimeRender(this);
}

void OnValidate()
{
if (enabled)
{
ReflectionSystem.UnregisterProbe(this);
ReflectionSystem.UnregisterProbe(this);
if (isActiveAndEnabled)
}
}
}
}
正在加载...
取消
保存