Free shared foundation for the Traffic Engine suite. Provides LaneGraph ECS integration and a four-tier LOD system for use by Vehicle and Crowd plugins built on Traffic Engine.Traffic Engine - Core is the free shared runtime layer that powers the Traffic Engine suite. It is a required dependency for Traffic Engine - Vehicle and is designed to be consumed by any plugin built on top of Traffic Engine infrastructure.LaneGraph ECS IntegrationBridges LaneGraph runtime data into Burst-accessible ECS blob assets at initialization. Lane spline geometry, connection topology, lane tags, intersection flags, and live traffic signal states are all available to simulation jobs with zero managed overhead. Geometry and state blobs are kept separate so high-frequency signal updates never trigger a full geometry rebuild.Four-Tier LOD SystemClassifies all LOD-eligible entities each frame based on camera distance, frustum visibility, per-entity importance bias, and optional forced overrides. The four tiers — High, Medium, Low, and Culled — are represented as enableable tag components, keeping archetype changes minimal. A global bias multiplier lets you tune aggressiveness at runtime without touching individual entities.Public APITrafficEngineLaneGraphAPI covers lane metadata, connection queries, live signal state, and nearest-lane spatial search. TrafficEngineLODAPI covers camera assignment, distance thresholds, frustum culling, global bias, and per-entity level overrides. Both are designed to be called from MonoBehaviours and event-driven code without boilerplate.Dependencies:- com.unity.entities 1.0.16- com.unity.entities.graphics 1.0.16- com.unity.burst 1.8.4- com.unity.collections 2.1.4- com.unity.mathematics 1.2.6- LaneGraph (Unity Asset Store)Systems included:- TrafficLaneGraphSingletonSystem — LaneGraph → ECS blob baking- TrafficLODCameraSystem — per-frame camera and frustum update- TrafficLODSystem — per-entity LOD tier classificationPublic API classes:- TrafficEngineLaneGraphAPI- TrafficEngineLODAPINo MonoBehaviours, no scene components, no authoring required. Pure DOTS runtime.



