/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/utils/network/getResolutionOfUrl.ts
22 строки
647 B
Zyie
chore: add standard/advanced tags to documentation (#11448)
03 июн 2025, 10:12
Не верифицирован
03 июн 2025, 10:12
7d91234
Код
Авторство
О чём код?
import { Resolver } from '../../assets/resolver/Resolver'; /** * get the resolution / device pixel ratio of an asset by looking for the prefix * used by spritesheets and image urls * @category utils * @internal * @param {string} url - the image path * @param {number} [defaultValue=1] - the defaultValue if no filename prefix is set. * @returns {number} resolution / device pixel ratio of an asset */ export function getResolutionOfUrl(url: string, defaultValue = 1): number { const resolution = Resolver.RETINA_PREFIX?.exec(url); if (resolution) { return parseFloat(resolution[1]); } return defaultValue; }