Files
P42_UI/app/assets/json/threetobus/eventsMapping.json
T
2025-09-28 18:28:17 +00:00

55 lines
1.5 KiB
JSON

[
{
"chan": "gps:agents",
"events": [
{
"eventName": "moving",
"mappings": [
{
"id": "aid",
"assign": {
"position.x": "coords.x",
"position.z": "coords.y",
"position.y": "coords.z"
},
"tween": true,
"tweenDelay": 1000
}
]
},
{
"eventName": "rotating",
"mappings": [
{
"id": "aid",
"assign": {
"r": "rotangle"
},
"tween": true,
"tweenDelay": 500
}
]
}
]
},
{
"chan": "agent:*",
"events": [
{
"eventName": "aging",
"mappings": [
{
"id": "aid",
"assign": {
"fill": {
"arguments": ["age"],
"transformer": "rgb(${Math.round(255 * age / 10)},0,${Math.round(255 * (1 - age / 10))})"
}
}
}
]
}
]
}
]