Boat Attack使用了Universal RP的许多新图形功能,可以用于探索 Universal RP 的使用方式和技巧。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

44 行
1.2 KiB

using System;
using UnityEditor.Graphing;
using UnityEngine;
namespace UnityEditor.ShaderGraph
{
[Serializable]
class Vector2ShaderProperty : VectorShaderProperty
{
public Vector2ShaderProperty()
{
displayName = "Vector2";
}
public override PropertyType propertyType => PropertyType.Vector2;
public override AbstractMaterialNode ToConcreteNode()
{
var node = new Vector2Node();
node.FindInputSlot<Vector1MaterialSlot>(Vector2Node.InputSlotXId).value = value.x;
node.FindInputSlot<Vector1MaterialSlot>(Vector2Node.InputSlotYId).value = value.y;
return node;
}
public override PreviewProperty GetPreviewMaterialProperty()
{
return new PreviewProperty(propertyType)
{
name = referenceName,
vector4Value = value
};
}
public override ShaderInput Copy()
{
return new Vector2ShaderProperty()
{
displayName = displayName,
hidden = hidden,
value = value
};
}
}
}