0b380def78
Replace region-based runtime pathing with interest-cluster coverage windows so active nav areas stay contiguous and spawn anchors participate in initial coverage.
13 lines
266 B
C#
13 lines
266 B
C#
using UnityEngine;
|
|
|
|
namespace VoxelWorldScene
|
|
{
|
|
[DisallowMultipleComponent]
|
|
public sealed class VoxelWorldSpawnAnchor : MonoBehaviour
|
|
{
|
|
[SerializeField, Min(0.01f)] private float priority = 2f;
|
|
|
|
public float Priority => priority;
|
|
}
|
|
}
|