您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
28 行
750 B
28 行
750 B
using System;
|
|
using UnityEngine.Scripting.APIUpdating;
|
|
|
|
namespace UnityEngine.Rendering.LWRP
|
|
{
|
|
[Obsolete("LWRP -> Universal (UnityUpgradable) -> UnityEngine.Rendering.Universal.UniversalAdditionalLightData", true)]
|
|
public class LWRPAdditionalLightData
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
namespace UnityEngine.Rendering.Universal
|
|
{
|
|
[DisallowMultipleComponent]
|
|
[RequireComponent(typeof(Light))]
|
|
public class UniversalAdditionalLightData : MonoBehaviour
|
|
{
|
|
[Tooltip("Controls the usage of pipeline settings.")]
|
|
[SerializeField] bool m_UsePipelineSettings = true;
|
|
|
|
public bool usePipelineSettings
|
|
{
|
|
get { return m_UsePipelineSettings; }
|
|
set { m_UsePipelineSettings = value; }
|
|
}
|
|
}
|
|
}
|