DotRecastNetSim/src/DotRecast.Detour/Io/NavMeshParamReader.cs

20 lines
567 B
C#
Raw Normal View History

2023-03-14 08:02:43 +03:00
using DotRecast.Core;
2023-03-16 19:09:10 +03:00
namespace DotRecast.Detour.Io
{
2023-03-16 19:48:49 +03:00
public class NavMeshParamReader
{
public NavMeshParams read(ByteBuffer bb)
{
NavMeshParams option = new NavMeshParams();
option.orig[0] = bb.getFloat();
option.orig[1] = bb.getFloat();
option.orig[2] = bb.getFloat();
option.tileWidth = bb.getFloat();
option.tileHeight = bb.getFloat();
option.maxTiles = bb.getInt();
option.maxPolys = bb.getInt();
return option;
}
}
2023-03-16 19:09:10 +03:00
}