You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
704 B
C#
32 lines
704 B
C#
|
4 years ago
|
#if ENVIRO_HDRP
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace UnityEngine.Rendering.HighDefinition
|
||
|
|
{
|
||
|
|
[VolumeComponentMenu("Sky/Enviro Lite Skybox")]
|
||
|
|
[SkyUniqueID(998)]
|
||
|
|
public class EnviroSkyboxLite : SkySettings
|
||
|
|
{
|
||
|
|
|
||
|
|
/* public override SkyRenderer CreateRenderer()
|
||
|
|
{
|
||
|
|
return new EnviroSkyboxRenderer(this);
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
|
||
|
|
public override int GetHashCode()
|
||
|
|
{
|
||
|
|
int hash = base.GetHashCode();
|
||
|
|
|
||
|
|
unchecked
|
||
|
|
{
|
||
|
|
//hash = hash * 23 + top.GetHashCode();
|
||
|
|
}
|
||
|
|
|
||
|
|
return hash;
|
||
|
|
}
|
||
|
|
|
||
|
|
public override Type GetSkyRendererType() { return typeof(EnviroSkyboxLiteRenderer); }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
#endif
|