Files
Temp.BattleRoyale.Map.Unity/Assets/GSpawn - Level Designer/Scripts/Scene/TerrainRaycastConfig.cs
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

11 lines
271 B
C#

#if UNITY_EDITOR
namespace GSpawn
{
public struct TerrainRaycastConfig
{
public bool useInterpolatedNormal;
public static readonly TerrainRaycastConfig defaultConfig = new TerrainRaycastConfig() { useInterpolatedNormal = true };
}
}
#endif