You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
555 B

using UnityEngine;
namespace UnityEditor.Rendering.HighDefinition.ShaderGraph
{
class HDSixWayData : HDTargetData
{
[SerializeField]
bool m_ReceiveShadows = true;
public bool receiveShadows
{
get => m_ReceiveShadows;
set => m_ReceiveShadows = value;
}
[SerializeField]
bool m_UseColorAbsorption = true;
public bool useColorAbsorption
{
get => m_UseColorAbsorption;
set => m_UseColorAbsorption = value;
}
}
}