Version: 2021.3

GraphicsSettings.allConfiguredRenderPipelines

切换到手册
public static RenderPipelineAsset[] allConfiguredRenderPipelines ;

描述

An array containing the RenderPipelineAsset instances that describe the default render pipeline and any quality level overrides.

The default render pipeline is defined in GraphicsSettings.defaultRenderPipeline. The override render pipeline for the current quality level is defined in QualitySettings.renderPipeline, or you can request the override value for a given quality level with QualitySettings.GetRenderPipelineAssetAt.

This property returns all instances of RenderPipelineAsset that are assigned to these fields. The same RenderPipelineAsset can appear in this array more than once, if it is assigned to more than one field.

using UnityEngine;
using UnityEngine.Rendering;

public class AllConfiguredRenderPipelinesExample : MonoBehaviour { void Start() { Debug.Log("All Render Pipeline Assets that define the default render pipeline, or an override: "); foreach (var asset in GraphicsSettings.allConfiguredRenderPipelines) { Debug.Log(asset.name); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961