MiniGames/Assets/MudBun/Unity Shader Graph/MudMasterMaterial.cginc

31 lines
695 B
HLSL
Raw Permalink Normal View History

2025-07-11 15:42:48 +05:00
/******************************************************************************/
/*
Project - MudBun
Publisher - Long Bunny Labs
http://LongBunnyLabs.com
Author - Ming-Lun "Allen" Chou
http://AllenChou.net
*/
/******************************************************************************/
#ifndef MUDBUN_MESH_MASTER_MATERIAL
#define MUDBUN_MESH_MASTER_MATERIAL
#include "Assets/MudBun/Shader/Render/ShaderCommon.cginc"
void MudMasterMaterial_float
(
out float4 Color,
out float4 Emission,
out float Metallic,
out float Smoothness
)
{
Color = _Color;
Emission = _Emission;
Metallic = _Metallic;
Smoothness = _Smoothness;
}
#endif