Recast: fix typo in API documentation

Portal align can also be 0.5 but not higher.
This commit is contained in:
Kawe Mazidjatari 2024-11-01 14:01:11 +01:00
parent bb140317c7
commit e2197dd3fe

View File

@ -676,7 +676,7 @@ struct dtTraverseLinkConnectParams
void* userData; ///< The user defined data that will be provided to all callbacks, for example: your editor's class instance.
float minEdgeOverlap; ///< The minimum amount of projection overlap required between the 2 edges before they are considered overlapping. [Unit: wu]
float maxPortalAlign; ///< The maximum amount of portal alignment the system will apply. [Limit: 0 >= align < 0.5]
float maxPortalAlign; ///< The maximum amount of portal alignment the system will apply. [Limit: 0 >= align <= 0.5]
bool linkToNeighbor; ///< Whether to link to polygons in neighboring tiles. Limits linkage to internal polygons if false.
};