LCM Nav3D Free demo Get it on Fab

LCM Nav3D - API Reference

The classes, functions and properties you can reach from Blueprint, the Details panel, a Behaviour Tree, a StateTree or a Mass config.

Internal C++ - solver internals, replication contracts, subsystems with no Blueprint surface - is deliberately not listed. If a type is not here, you are not expected to call it.

Classes

LcmAIPerceptionBridge

Mirrors UAIPerceptionComponent-sensed actors into a decaying threat tracker for the tactical EQS surface.

Functions

Properties

LcmBTDecorator_ChunkLoaded

Decorator that passes only when the SVO chunk containing the queried world position is currently loaded (cheap single-endpoint hash lookup, no path probe).

Properties

LcmBTDecorator_HasLineOfSight

Decorator that passes when the agent has volumetric line of sight to the target via the Lazy Theta* LOS walker, honouring AgentRadius through the JFA clearance gate.

Properties

LcmBTDecorator_IsInCover

Decorator that passes when the agent is in cover relative to a threat: its leaf SweepPenalty is at or below MaxSweepPenalty AND the threat's line of sight to it is blocked.

Properties

LcmBTDecorator_PathLengthBelow

Decorator that passes when the true-3D LCM Nav3D path distance from the agent to the goal is below MaxLengthCm (uses the synchronous tactical-library path probe; do not run per-frame).

Properties

LcmBTDecorator_ThreatVisibleViaPerception

Decorator that passes when AIPerception currently perceives a hostile AND the agent has clear volumetric LOS to it (the "can-shoot-now" gate).

Properties

LcmBTService_NavigationLoad

Service that each tick writes the navigation manager's SVO streaming stats into a blackboard key so designers can gate expensive LCM Nav3D queries on idle streaming.

Properties

LcmBTService_PathProgressMonitor

Service that each tick writes a Euclidean approach-progress fraction (1 - dist/initial_dist) and remaining distance to the goal into blackboard keys.

Properties

LcmBTService_SquadSnapshot

Service that each tick aggregates perceived allies within SquadRadius and writes ally count, squad centroid, and cohesion radius into blackboard keys.

Properties

LcmBTService_ThreatFieldSampler

Service that each tick samples the SVO SweepPenalty risk field at the agent's location, writing the threat level and an "in threat zone" flag (level >= AlertThreshold) into blackboard keys.

Properties

LcmBTTask_ChunkPrewarm

Task that proactively forces SVO chunk generation at a target location and waits (up to TimeoutSeconds) for the chunk to become ready before succeeding.

Properties

LcmBTTask_DynamicObstaclePush

Task that steers the agent down the SweepPenalty gradient (away from rising threat) until it clears the obstacle or times out.

Properties

LcmBTTask_EvadeCBS

Task that retreats from the threat gradient using context-based steering (CBS) over SVO danger sampling, blending an anti-threat direction with ray-evaluated safe headings until clear or timed out.

Properties

LcmBTTask_FindCover

Behavior Tree task that locates a navigable SVO leaf with line-of-sight blocked from the blackboard enemy actor (i.e. cover). Returns Succeeded once a valid cover location is written back to the blackboard, or Failed if no cover within SearchRadius qualifies.

Properties

LcmBTTask_FlyTo

Behavior Tree task that flies an AI pawn from its current position to a blackboard target via the LCMNav3D pathfinder. Owns one async path request token (re-issued on dynamic replanning), runs per-tick steering (configurable flight style + avoidance style + wall avoidance + swarm separation), and finishes the task on arrival within AcceptanceRadius.

Functions

Properties

LcmBTTask_FollowFlowField

Task that computes an LCM Nav3D path to the goal and follows its waypoints (LinearDirect steering) until arrival or timeout.

Properties

LcmBTTask_Land

Task that descends the agent vertically at DescentRate until it reaches the TouchDownZ world height, then succeeds.

Properties

LcmBTTask_OrbitTarget

Task that circles the agent around a target, holding OrbitRadius while moving tangentially at OrbitSpeed.

Properties

LcmBTTask_Patrol

Task that moves the agent through a list of waypoints in order, pausing at each, optionally looping.

Properties

LcmDynamicObstacleComponent

Marks an actor as a dynamic LCMNav3D obstacle.

Two operating modes, selected by r.LcmNav.DynObs.EventDriven:

  1. EVENT-DRIVEN (default, EventDriven=1) -- binds to RootComponent->TransformUpdated. Per-event the component unions the new bounding box into a pending dirty region and arms a one-shot coalesce timer (r.LcmNav.DynObs.CoalesceMs, default 33 ms = one frame at 30 fps). On timer expiry the union of old-footprint + all coalesced new-footprints is flushed in a single UpdateDynamicObstacle call. Component tick is disabled in this mode. Zero CPU cost when the actor is stationary; instant response (within one coalesce window) when it moves.

  2. POLLING (EventDriven=0) -- legacy behavior: TickComponent at 10 Hz polls GetActorLocation and fires only when displacement exceeds UpdateDistanceThreshold (default 50 cm). Provided for ablation / deterministic-test scenarios where event jitter would perturb traces.

§P9.6 in

Functions

Properties

EnvQueryContext_LcmKnownThreats

EQS context exposing tag-marked threat actors as query targets for tactical tests.

Properties

EnvQueryContext_LcmThreatsFromAIPerception

EQS context exposing the querier's AI-perception-tracked threats as query targets.

EnvQueryGenerator_LcmHemisphericalRing3D

Hemispherical-ring shell of unblocked 3D points around a context.

Properties

EnvQueryGenerator_LcmPointsAlongPath

Unblocked points sampled along the LCM Nav3D path from one context to another.

Properties

EnvQueryGenerator_LcmPortalProximity

Candidate points at macro-graph portal centres near a context (chokepoints).

Properties

EnvQueryGenerator_LcmPointsInSVOVolume

Generates uniform-density candidate points in an AABB, filtered to unblocked SVO volume leaves.

Properties

EnvQueryTest_LcmLineOfSight3D

Visible to the context via true-3D SVO line of sight. Boolean.

Properties

EnvQueryTest_LcmReachability3D

An LCM Nav3D path exists from the context to the item. Boolean.

Properties

EnvQueryTest_LcmPathDistance3D

LCM Nav3D path distance (NOT euclidean) from the context to the item. Float (cm).

Properties

EnvQueryTest_LcmThreatExposure

Summed §P9.3 SweepPenalty along the item→threat segments. Float (lower = safer).

Properties

EnvQueryTest_LcmCoverScore3D

Fraction of context threats the item is occluded from. Float (higher = better cover).

Properties

EnvQueryTest_LcmHeightAdvantage

Vertical advantage of the item over the context (high ground). Float.

Properties

LcmFlightMovementComponent

Opt-in pawn movement component that turns nav guidance velocities (RequestVelocity from FlyTo tasks) into realistic 6-DOF flight/swim motion via ULcmFlightDynamics, sweeps the transform, and broadcasts the anim state. Inert until bEnabled is set.

Functions

Properties

LcmFlyingPawn

Note: APawn already inherits from INavAgentInterface - re-listing it here triggers C4584 (duplicate base class). We just override the virtuals.

Properties

LcmGameplayAbility_RequestPath

GameplayAbility wrapper around the LCM Nav3D async path request, gating it through the standard GAS cost/cooldown/cancellation pipeline (budget via ULcmNavAttributeSet) and broadcasting the resulting path on completion.

Functions

Properties

LcmMassCrowdSpawner

World-Partition-safe Mass spawner: never streams out, so its crowd's lifetime is not tied to the player's distance from the spawn point (fixes the "all agents disappear when the player leaves the area" WP trap).

Properties

LcmMassFlowSteerTrait

[DEPRECATED - M3, 2026-07-03] Legacy flow-field crowd trait. Superseded by the unified ULcmMassNavAgentTrait ("LCM Nav3D Agent") with NavMode=FlowField, which composes a byte-identical archetype. Kept fully functional; prefer the unified trait for new content. Authoring trait for a flow-field-steered crowd agent.

Properties

LcmMassGoalTrait

Authoring trait: assign a fixed-location or tagged-actor goal to a Nav3D Agent so it auto-paths there (requires the "LCM Nav3D Agent" trait too).

Properties

LcmMassNavISMRenderTrait

Authoring trait: drop on the Mass config, set a mesh, get instanced visuals.

Properties

LcmMassNav3DTrait

[DEPRECATED - M3, 2026-07-03] Legacy path-based agent trait. Superseded by the unified ULcmMassNavAgentTrait ("LCM Nav3D Agent") with NavMode=PathFollowing, which composes a byte-identical archetype. Kept fully functional so existing configs (DA_MassAgent_Apex) keep working; prefer the unified trait for new content.

Authoring trait: attaches the path nav fragments and exposes radius/speed, pathfinding, and natural-movement settings.

Properties

LcmMassNavAgentTrait

[M3] Unified authoring trait: one trait, a NavMode selector. PathFollowing composes the path archetype (NavAgent + PathRequest + PathResult); FlowField composes the flow archetype (FlowField state + a const shared config fragment). Mode-specific properties hide via EditCondition on NavMode.

Properties

LcmMassPerceptionTrait

Authoring trait: makes an LCM Nav3D Mass agent both a senser and a perceivable (faction-based SVO-LOS perception), exposing sight/FOV/eye-height settings.

Properties

LcmMassRepresentationTrait

Preconfigured UMassVisualizationTrait: LOD-switched crowd rendering that draws the instanced static mesh at all visible LODs by default (no "see nothing" trap), and self-provides the LOD-collector + actor fragments so it works as one trait.

LcmNavAreaModifier

Designer-placed 3D volumetric cost-overlay actor; applies a cost multiplier to LCM Nav3D pathfinding wherever the agent's leaf is inside its box (water, storm, danger, or preferred-lane volumes that stack multiplicatively).

Functions

Properties

LcmNavAreaQueryLibrary

Blueprint function library exposing the LCM Nav3D nav-extension registry so designers can query cost overlays and registered NavLinks from BP graphs.

Functions

LcmNavArmTagLibrary

Blueprint-callable wrapper around the r.LcmAblation.ArmTag CVar so designers can stamp per-task arm tags on telemetry rows for in-game A/B analysis without using the console.

Functions

LcmNavAttributeSet

GAS attribute set surfacing per-agent path-request budgets so projects can throttle expensive LCM Nav3D queries through the standard GameplayEffect pipeline.

Functions

Properties

LcmNavigationInvokerComponent

Attach this to the Player or VIPs. The SVO Manager will only generate voxel data for chunks within this radius.

Properties

LcmNavigationManagerSVO

LCMNav3D world singleton - the central navigation manager actor. Spawns the four subsystem components (ULcmSVOStreamingComponent, ULcmSVOGenerationComponent, ULcmPathfindingComponent, ULcmSVORenderComponent); owns the SVO data containers (FiniteData for finite worlds, ActiveVirtualChunks for infinite worlds); owns FLcmMacroGraph + FLcmPortalBuilder; hosts the multicast RPCs for dynamic-obstacle invalidation and flow-field-ready notifications. Exactly one instance per UWorld; auto-discovered via UGameplayStatics:: GetActorOfClass. Full responsibility list in §P2.2 of Docs/SYSTEM_ARCHITECTURE.md.

Functions

Properties

LcmNavLinkComponent

3D vertical NavLink component (subclass of UNavLinkCustomComponent) with designer-set world-space LinkStart/LinkEnd for ladders, shafts, and teleporters that Recast's surface-projected links cannot represent.

Functions

Properties

LcmNavVolume

Defines the playable area for offline SVO generation. Acts as the master bounds for slicing and baking ALcmNavigationChunk actors.

Functions

Properties

LcmSmartObjectBehaviorDef_CoverPocket

SmartObject behaviour definition for a designer-placed cover pocket, validated at claim time by SweepPenalty + threat-hint LOS with a FindBestCover fallback when the placed pocket has gone hot.

Properties

LcmSmartObjectBehaviorDef_PatrolWaypoint

SmartObject behaviour definition for one patrol waypoint; designers chain placed waypoints via NextWaypointTag to author a patrol route as content.

Properties

LcmSmartObjectBehaviorDef_Perch

SmartObject behaviour definition for a volumetric perch: fly here, hover or stand, and dwell - a 3D-only smart-object pattern LCM Nav3D's free-space SVO supports where surface-projected Recast navmesh cannot.

Properties

LcmSVODataAsset

A lightweight, streamable asset that holds pre-calculated SVO navigation data. Designed to be loaded asynchronously by World Partition.

Properties

LcmTacticalQueryLibrary

Static Blueprint-callable wrappers for LCMNav3D tactical primitives.

All functions are pure CPU and synchronous - they execute on the calling thread (Blueprint VM thread, BT service tick, EQS test evaluation, etc.) and return immediately. None of them dispatch GPU work or async jobs. Designed to be called at EQS-test frequency (tens to hundreds per query per frame) without budget concerns.

Functions