20 lines
385 B
C#
20 lines
385 B
C#
#if UNITY_EDITOR
|
|
using UnityEngine;
|
|
|
|
namespace O3DWB
|
|
{
|
|
public class ScenePreparationSceneRenderPath : SceneRenderPath
|
|
{
|
|
#region Public Methods
|
|
public override void RenderGizmos()
|
|
{
|
|
ObjectSnapping.Get().XZSnapGrid.RenderGizmos();
|
|
}
|
|
|
|
public override void RenderHandles()
|
|
{
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
#endif |