null check

This commit is contained in:
ikpil 2023-07-27 13:01:20 +09:00
parent 403e611628
commit 21a6b1c5e8
1 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,9 @@ namespace DotRecast.Recast.DemoTool.Tools
var settings = _sample.GetSettings();
var geom = _sample.GetInputGeom();
var navMesh = _sample.GetNavMesh();
if (null == settings || null == geom || navMesh == null)
return;
float ts = settings.tileSize * settings.cellSize;
@ -44,6 +47,9 @@ namespace DotRecast.Recast.DemoTool.Tools
var geom = _sample.GetInputGeom();
var navMesh = _sample.GetNavMesh();
if (null == settings || null == geom || navMesh == null)
return;
float ts = settings.tileSize * settings.cellSize;
var bmin = geom.GetMeshBoundsMin();