Newer
Older
pixi.js / src / core / utils / maxRecommendedTextures.js
@Chad Engler Chad Engler on 18 Oct 2016 256 bytes 4.1.0
import Device from 'ismobilejs';

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

    // desktop should be ok
    return max;
}