24 lines
546 B
C#
24 lines
546 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Sirenix.OdinInspector;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class PostProcessInstructor : MonoBehaviour
|
||
|
|
{
|
||
|
|
[LabelText("网格合并节点")]
|
||
|
|
[ListDrawerSettings(AlwaysAddDefaultValue = false)]
|
||
|
|
public List<Transform> combinedRoots = new();
|
||
|
|
|
||
|
|
[LabelText("美术根节点")]
|
||
|
|
public Transform Art;
|
||
|
|
|
||
|
|
[LabelText("地面")]
|
||
|
|
public Transform Ground;
|
||
|
|
|
||
|
|
[LabelText("雾")]
|
||
|
|
public Transform Fog;
|
||
|
|
|
||
|
|
[LabelText("后处理预制体")]
|
||
|
|
public bool processPrefab;
|
||
|
|
}
|