namespace add DemoTool.Tools

This commit is contained in:
ikpil 2023-06-13 00:36:17 +09:00
parent c069c1fd54
commit ba1bdb0295
16 changed files with 18 additions and 13 deletions

View File

@ -26,6 +26,7 @@ using DotRecast.Detour.QueryResults;
using DotRecast.Recast.DemoTool.Builder;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool;
using DotRecast.Recast.DemoTool.Tools;
using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw;

View File

@ -28,6 +28,7 @@ using DotRecast.Detour.QueryResults;
using DotRecast.Recast.DemoTool.Builder;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool;
using DotRecast.Recast.DemoTool.Tools;
using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -31,6 +31,7 @@ using DotRecast.Recast.DemoTool.Geom;
using DotRecast.Recast.Demo.Tools.Gizmos;
using DotRecast.Recast.Demo.UI;
using DotRecast.Recast.DemoTool;
using DotRecast.Recast.DemoTool.Tools;
using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -23,6 +23,7 @@ using DotRecast.Recast.DemoTool.Builder;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool;
using DotRecast.Recast.DemoTool.Geom;
using DotRecast.Recast.DemoTool.Tools;
using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -6,6 +6,7 @@ using DotRecast.Detour.QueryResults;
using DotRecast.Recast.DemoTool.Builder;
using DotRecast.Recast.Demo.Draw;
using DotRecast.Recast.DemoTool;
using DotRecast.Recast.DemoTool.Tools;
using ImGuiNET;
using static DotRecast.Recast.Demo.Draw.DebugDraw;
using static DotRecast.Recast.Demo.Draw.DebugDrawPrimitives;

View File

@ -29,7 +29,7 @@ namespace DotRecast.Recast.DemoTool
private DemoInputGeomProvider _inputGeom;
private DtNavMesh _navMesh;
private DtNavMeshQuery _navMeshQuery;
private readonly RcSampleSettings _settings;
private readonly SampleSettings _settings;
private IList<RecastBuilderResult> _recastResults;
private bool _changed;
@ -38,7 +38,7 @@ namespace DotRecast.Recast.DemoTool
_inputGeom = inputGeom;
_recastResults = recastResults;
_navMesh = navMesh;
_settings = new RcSampleSettings();
_settings = new SampleSettings();
SetQuery(navMesh);
_changed = true;
@ -64,7 +64,7 @@ namespace DotRecast.Recast.DemoTool
return _navMesh;
}
public RcSampleSettings GetSettings()
public SampleSettings GetSettings()
{
return _settings;
}

View File

@ -1,6 +1,6 @@
namespace DotRecast.Recast.DemoTool
{
public class RcSampleSettings
public class SampleSettings
{
public float cellSize = 0.3f;
public float cellHeight = 0.2f;

View File

@ -1,6 +1,6 @@
using DotRecast.Core;
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class CrowdAgentData
{

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class CrowdAgentTrail
{

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public enum CrowdAgentType
{

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class CrowdToolMode
{

View File

@ -16,7 +16,7 @@ freely, subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class CrowdToolParams
{

View File

@ -1,4 +1,4 @@
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public enum DynamicColliderShape
{

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class DynamicUpdateToolMode
{

View File

@ -18,7 +18,7 @@ freely, subject to the following restrictions:
using DotRecast.Detour.Extras.Jumplink;
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class JumpLinkBuilderToolParams
{

View File

@ -1,6 +1,6 @@
using System.Collections.Immutable;
namespace DotRecast.Recast.DemoTool
namespace DotRecast.Recast.DemoTool.Tools
{
public class TestNavmeshToolMode
{