Newer
Older
pixi.js / src / core / utils / maxRecommendedTextures.js
@Chad Engler Chad Engler on 27 Sep 2016 256 bytes Huge refactor to match a new shiny eslint file.
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;
}