Import scenario chain CSV, PathBVH overflow bug fix.

This commit is contained in:
dexyfex
2017-09-30 23:58:00 +10:00
Unverified
parent fd740a761d
commit 33880bf8f6
13 changed files with 905 additions and 111 deletions
+1 -1
View File
@@ -435,7 +435,7 @@ namespace CodeWalker.World
public void BuildBVH()
{
BVH = new PathBVH(Nodes, 10);
BVH = new PathBVH(Nodes, 10, 10);
}
public void BuildVertices()
+1 -1
View File
@@ -297,7 +297,7 @@ namespace CodeWalker.World
public void BuildBVH()
{
BVH = new PathBVH(Nodes, 10);
BVH = new PathBVH(Nodes, 10, 10);
}