Add NavAgentMask

This commit is contained in:
Wojtek Figat
2021-01-15 11:59:04 +01:00
parent d7949b5405
commit 2c2c1af97f
5 changed files with 165 additions and 0 deletions

View File

@@ -72,3 +72,15 @@ namespace FlaxEditor.Content.Settings
}
}
}
namespace FlaxEngine
{
partial struct NavAgentProperties
{
/// <inheritdoc />
public override string ToString()
{
return $"Radius: {Radius}, Height: {Height}, StepHeight: {StepHeight}, MaxSlopeAngle: {MaxSlopeAngle}";
}
}
}