Newer
Older
pixi.js / packages / settings / src / utils / maxRecommendedTextures.js
@Matt Karl Matt Karl on 31 Oct 2017 256 bytes Next Restructure for v5 (#4387)
import Device from 'ismobilejs';

export default function maxRecommendedTextures(max)
{
    if (Device.tablet || Device.phone)
    {
        // check if the res is iphone 6 or higher..
        return 4;
    }

    // desktop should be ok
    return max;
}