/
xem
/
mini-m
Обзор
Документация
Войти
/
xem
/
mini-m
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
js/floatingText.js
17 строк
437 B
romican
first_commit
15 май 2026, 20:10
15 май 2026, 20:10
65014ec
Код
Авторство
О чём код?
// js/floatingText.js export class FloatingText { constructor(x, y, text, duration = 0.6) { this.x = x; this.y = y; this.text = text; this.duration = duration; this.elapsed = 0; this.opacity = 1; } update(dt) { this.elapsed += dt; this.y -= 30 * dt; this.opacity = 1 - (this.elapsed / this.duration); return this.elapsed < this.duration; } }