Version: 5.6
public static bool invertCulling ;

説明

バックフェースかリングを反転させるかどうかを選択する

このフラグはすべてのレンダリングされたオブジェクトのカリングモードを "反転" することができます。主要な仕様例。鏡や水などの反射のレンダリング。反射をレンダリングするために仮想カメラが鏡像なのでカリングの順序を反転する必要があります。エフェクトの標準的なパッケージの Water スクリプトがどのように実行するか確認することができます。

// When attached to the camera, this script
// will make all rendering be flipped "inside out",
// i.e. back faces of objects will be rendered instead
// of front faces.
using UnityEngine;

[ExecuteInEditMode] public class ExampleScript : MonoBehaviour { private bool oldCulling; public void OnPreRender() { oldCulling = GL.invertCulling; GL.invertCulling = true; }

public void OnPostRender() { GL.invertCulling = oldCulling; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961