xyi/Library/PackageCache/com.unity.render-pipelines.universal@3696a2e8b4ac/Runtime/2D/Shadows/ShadowProvider/IEdgeStore.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

13 lines
303 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.Collections;
namespace UnityEngine.Rendering.Universal
{
internal interface IEdgeStore
{
NativeArray<ShadowEdge> GetOutsideEdges(NativeArray<Vector3> vertices, NativeArray<int> indices);
}
}