您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
50 行
1.3 KiB
50 行
1.3 KiB
using UnityEngine.Graphing;
|
|
|
|
namespace UnityEngine.MaterialGraph
|
|
{
|
|
interface IMayRequireWorldPosition
|
|
{
|
|
bool RequiresWorldPosition();
|
|
}
|
|
|
|
[Title("Input/World Space Position Node")]
|
|
public class WorldSpacePositionNode : AbstractMaterialNode, IMayRequireWorldPosition
|
|
{
|
|
private const int kOutputSlotId = 0;
|
|
|
|
public override bool hasPreview { get { return true; } }
|
|
|
|
public override PreviewMode previewMode
|
|
{
|
|
get { return PreviewMode.Preview3D; }
|
|
}
|
|
|
|
public WorldSpacePositionNode()
|
|
{
|
|
name = "World Space Pos";
|
|
UpdateNodeAfterDeserialization();
|
|
}
|
|
|
|
public sealed override void UpdateNodeAfterDeserialization()
|
|
{
|
|
AddSlot(new MaterialSlot(
|
|
kOutputSlotId,
|
|
ShaderGeneratorNames.WorldSpacePosition,
|
|
ShaderGeneratorNames.WorldSpacePosition,
|
|
SlotType.Output,
|
|
SlotValueType.Vector3,
|
|
Vector4.zero));
|
|
RemoveSlotsNameNotMatching(new[] { kOutputSlotId });
|
|
}
|
|
|
|
public override string GetVariableNameForSlot(int slotId)
|
|
{
|
|
return ShaderGeneratorNames.WorldSpacePosition;
|
|
}
|
|
|
|
public bool RequiresWorldPosition()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|