cocos2djs 使用cc.motionStreak 用手机浏览器访问黑屏

在模拟器和crome调试的时候都没问题,但是用手机访问就会黑屏,连帧率都不显示,求助啊 !!
代码奉上:
var size = cc.winSize;

    this.ball = new cc.Sprite(res.CloseNormal_png);
    this.ball.setPosition(0, 0);
    this.addChild(this.ball, 1);

    var ball_texture = cc.textureCache.addImage(res.ball_png);  


    this.streak = new cc.MotionStreak(100,1,10,cc.color(255, 10, 10, 255),ball_texture);
    this.addChild(this.streak, 1);


    this.ball.runAction(new cc.MoveBy(2,cc.p(300, 600)));
    //cc.Particle(pos, startPos, color, deltaColor, size, deltaSize, rotation, deltaRotation, timeToLive, atlasIndex, modeA, modeB)
    this.scheduleUpdate();

难道我需要做一些其他的设置??

楼主解决了吗,我也遇到这问题了

你在pc浏览器上吧project.json 里面的renderMode值改为1再看看是不是也黑屏。