您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
39 行
942 B
39 行
942 B
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.ShaderGraph
|
|
{
|
|
[Serializable]
|
|
public class Vector3ShaderProperty : VectorShaderProperty
|
|
{
|
|
public Vector3ShaderProperty()
|
|
{
|
|
displayName = "Vector3";
|
|
}
|
|
|
|
public override PropertyType propertyType
|
|
{
|
|
get { return PropertyType.Vector3; }
|
|
}
|
|
|
|
public override Vector4 defaultValue
|
|
{
|
|
get { return new Vector4(value.x, value.y, value.z, 0); }
|
|
}
|
|
|
|
public override string GetInlinePropertyDeclarationString()
|
|
{
|
|
return "float3 " + referenceName + ";";
|
|
}
|
|
|
|
public override PreviewProperty GetPreviewMaterialProperty()
|
|
{
|
|
return new PreviewProperty()
|
|
{
|
|
name = referenceName,
|
|
propType = PropertyType.Vector3,
|
|
vector4Value = value
|
|
};
|
|
}
|
|
}
|
|
}
|