You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Canghaizhulei
After you receive the latest update, take a look at line 144 in RcDynamicUpdateTool.cs. You will find the Copy(...) function there. By looking at this function, you should be able to figure it out.
public DtDynamicNavMesh Copy(RcConfig cfg, IList<RcBuilderResult> results)
{
var voxelFile = DtVoxelFile.From(cfg, results);
dynaMesh = new DtDynamicNavMesh(voxelFile);
dynaMesh.config.keepIntermediateResults = true;
colliderGizmos.Clear();
return dynaMesh;
}
I want to use Dynamic NavMesh, but I don't know how to generate voxels files.
The text was updated successfully, but these errors were encountered: