您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
833 B
27 行
833 B
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
using UnityEngine.Scripting.APIUpdating;
|
|
|
|
namespace UnityEditor.Rendering.Universal.ShaderGUI
|
|
{
|
|
[MovedFrom("UnityEditor.Rendering.LWRP.ShaderGUI")] public static class BakedLitGUI
|
|
{
|
|
public struct BakedLitProperties
|
|
{
|
|
// Surface Input Props
|
|
public MaterialProperty bumpMapProp;
|
|
|
|
public BakedLitProperties(MaterialProperty[] properties)
|
|
{
|
|
// Surface Input Props
|
|
bumpMapProp = BaseShaderGUI.FindProperty("_BumpMap", properties, false);
|
|
}
|
|
}
|
|
|
|
public static void Inputs(BakedLitProperties properties, MaterialEditor materialEditor)
|
|
{
|
|
BaseShaderGUI.DrawNormalArea(materialEditor, properties.bumpMapProp);
|
|
}
|
|
}
|
|
}
|