您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
34 行
1.2 KiB
34 行
1.2 KiB
using UnityEngine;
|
|
using UnityEngine.Experimental.Rendering;
|
|
using System;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// structure definition
|
|
//-----------------------------------------------------------------------------
|
|
namespace UnityEngine.Experimental.ScriptableRenderLoop
|
|
{
|
|
namespace Unlit
|
|
{
|
|
//-----------------------------------------------------------------------------
|
|
// SurfaceData
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Main structure that store the user data (i.e user input of master node in material graph)
|
|
[GenerateHLSL(PackingRules.Exact, false, true, 1100)]
|
|
public struct SurfaceData
|
|
{
|
|
[SurfaceDataAttributes("Color")]
|
|
public Vector3 color;
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// BSDFData
|
|
//-----------------------------------------------------------------------------
|
|
|
|
[GenerateHLSL(PackingRules.Exact, false, true, 1130)]
|
|
public struct BSDFData
|
|
{
|
|
public Vector3 color;
|
|
};
|
|
}
|
|
}
|