API Referenceveextensionstech
Vehicle Points of Interest
Collects and exposes notable points on the vehicle (doors, trunk, hood, fuel cap) for use by external systems and scenario logic.
Collects and exposes notable points on the vehicle (doors, trunk, hood, fuel cap, hitch points) for use by external systems, scenario logic, and interaction systems that need to know where specific features are located.
Public API
| Function | Signature | Description |
|---|---|---|
collectVehiclePOIData | (callback) | Gathers all POI data and passes it to the callback function. |
Usage Example
-- Collect vehicle POI data
extensions.tech_vehiclePOI.collectVehiclePOIData(function(data)
for _, poi in ipairs(data) do
log("I", "poi", poi.name .. " at " .. tostring(poi.pos))
end
end)See Also
- Vehicle Searcher — Vehicle data collection
- TechCore — External API
Tyre Barrier
Sensor extension that detects when vehicle tires cross defined barrier boundaries. Used for track limits detection and racing scenario enforcement.
Vehicle Searcher
Collects comprehensive vehicle configuration and state data for search and indexing purposes. Returns a structured snapshot of the vehicle's current setup.