您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
451 B
20 行
451 B
#ifndef UNITY_SKY_VARIABLES_INCLUDED
|
|
#define UNITY_SKY_VARIABLES_INCLUDED
|
|
|
|
TEXTURECUBE(_SkyTexture);
|
|
|
|
CBUFFER_START(SkyParameters)
|
|
float _SkyTextureMipCount;
|
|
CBUFFER_END
|
|
|
|
float4 SampleSkyTexture(float3 texCoord)
|
|
{
|
|
return SAMPLE_TEXTURECUBE(_SkyTexture, s_trilinear_clamp_sampler, texCoord);
|
|
}
|
|
|
|
float4 SampleSkyTexture(float3 texCoord, float lod)
|
|
{
|
|
return SAMPLE_TEXTURECUBE_LOD(_SkyTexture, s_trilinear_clamp_sampler, texCoord, lod);
|
|
}
|
|
|
|
#endif
|