NavMeshObstacle
component NavMeshObstacle
{
Description = "Adds a navMeshObstacle to the object";
_nav = null;
function Init()
{
# Add the component like how we add Rigidbody
_nav = self.MapObject.AddBuiltinComponent("NavMeshObstacle", false);
}
}Last updated