forked from mirror/DotRecast
Fixed: tiles cache mesh process with off mesh links
This commit is contained in:
parent
e67dbfa604
commit
53aac60713
|
@ -46,13 +46,13 @@ namespace DotRecast.Recast.Toolset.Geom
|
||||||
if (null != _geom)
|
if (null != _geom)
|
||||||
{
|
{
|
||||||
var offMeshConnections = _geom.GetOffMeshConnections();
|
var offMeshConnections = _geom.GetOffMeshConnections();
|
||||||
|
option.offMeshConCount = offMeshConnections.Count;
|
||||||
option.offMeshConVerts = new float[option.offMeshConCount * 6];
|
option.offMeshConVerts = new float[option.offMeshConCount * 6];
|
||||||
option.offMeshConRad = new float[option.offMeshConCount];
|
option.offMeshConRad = new float[option.offMeshConCount];
|
||||||
option.offMeshConDir = new int[option.offMeshConCount];
|
option.offMeshConDir = new int[option.offMeshConCount];
|
||||||
option.offMeshConAreas = new int[option.offMeshConCount];
|
option.offMeshConAreas = new int[option.offMeshConCount];
|
||||||
option.offMeshConFlags = new int[option.offMeshConCount];
|
option.offMeshConFlags = new int[option.offMeshConCount];
|
||||||
option.offMeshConUserID = new int[option.offMeshConCount];
|
option.offMeshConUserID = new int[option.offMeshConCount];
|
||||||
option.offMeshConCount = offMeshConnections.Count;
|
|
||||||
for (int i = 0; i < option.offMeshConCount; i++)
|
for (int i = 0; i < option.offMeshConCount; i++)
|
||||||
{
|
{
|
||||||
RcOffMeshConnection offMeshCon = offMeshConnections[i];
|
RcOffMeshConnection offMeshCon = offMeshConnections[i];
|
||||||
|
|
Loading…
Reference in New Issue