您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
61 行
1.9 KiB
61 行
1.9 KiB
using System.Collections.Generic;
|
|
using UnityEditor.ShaderGraph.Drawing.Controls;
|
|
using UnityEngine;
|
|
using UnityEditor.ShaderGraph;
|
|
using UnityEditor.Graphing;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Title("Math/Constants")]
|
|
public class ConstantsNode : AbstractMaterialNode, IGeneratesBodyCode
|
|
{
|
|
static Dictionary<ConstantType, float> m_constantList = new Dictionary<ConstantType, float>
|
|
{
|
|
{ConstantType.PI, 3.1415926f },
|
|
{ConstantType.TAU, 6.28318530f},
|
|
{ConstantType.PHI, 1.618034f},
|
|
{ConstantType.E, 2.718282f},
|
|
{ConstantType.SQRT2, 1.414214f},
|
|
};
|
|
|
|
[SerializeField]
|
|
private ConstantType m_constant = ConstantType.PI;
|
|
|
|
private const int kOutputSlotId = 0;
|
|
private const string kOutputSlotName = "Constant";
|
|
|
|
[EnumControl("")]
|
|
public ConstantType constant
|
|
{
|
|
get { return m_constant; }
|
|
set
|
|
{
|
|
if (m_constant == value)
|
|
return;
|
|
|
|
m_constant = value;
|
|
if (onModified != null)
|
|
{
|
|
onModified(this, ModificationScope.Graph);
|
|
}
|
|
}
|
|
}
|
|
|
|
public ConstantsNode()
|
|
{
|
|
name = "MathConstant";
|
|
UpdateNodeAfterDeserialization();
|
|
}
|
|
|
|
public sealed override void UpdateNodeAfterDeserialization()
|
|
{
|
|
AddSlot(new Vector1MaterialSlot(kOutputSlotId, kOutputSlotName, kOutputSlotName, SlotType.Output, 0));
|
|
RemoveSlotsNameNotMatching(new[] { kOutputSlotId });
|
|
}
|
|
|
|
public void GenerateNodeCode(ShaderGenerator visitor, GenerationMode generationMode)
|
|
{
|
|
visitor.AddShaderChunk(precision + " " + GetVariableNameForNode() + " = " + m_constantList[constant] + ";", true);
|
|
}
|
|
}
|
|
}
|