浏览代码

Added hookup for eyeTextureWidth and eyeTextureHeight

/main
Nerites 6 年前
当前提交
4ec63c6e
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19
      com.unity.render-pipelines.core/CoreRP/Common/XRGraphicsConfig.cs

19
com.unity.render-pipelines.core/CoreRP/Common/XRGraphicsConfig.cs


}
}
public static int eyeTextureWidth
{
get
{
if (!enabled)
Assert.IsFalse(enabled);
return XRSettings.eyeTextureWidth;
}
}
public static int eyeTextureHeight
{
get
{
if (!enabled)
Assert.IsFalse(enabled);
return XRSettings.eyeTextureHeight;
}
}
public static string[] supportedDevices
{
get

正在加载...
取消
保存