Голосование за лучший ответ
Вай?
Мастер
(2026)
1 год назад
const speed = game.vehicle.getCurrentSpeedKmHour();
const textBlock = game.velocityTextBlock;
// game.respawn() - функция перехода в стартовое положение
if(speed > 24) game.respawn();
const speedFixed = speed.toFixed();
textBlock.text = "Скорость " + speedFixed;
Диего Марадона
Просветленный
(20371)
1 год назад
const speed = game.vehicle.getCurrentSpeedKmHour(); const textBlock = game.velocityTextBlock; // game.respawn() - функция перехода в стартовое положение if(speed > 24) game.respawn(); const speedFixed = speed.toFixed(); textBlock.text = "Скорость " + speedFixed;