- 微信小游戏导入第三方库时出现问题
用的是pixijs,pixi通过 import * as PIXI from "../libs/pixi.min.js"; 没有问题,开发正常 但最近想用一些粒子效果,使用这个https://github.com/pixijs/pixi-particles 通过 import particles = require('pixi-particles.js');或者 import particles from "../libs/pixi-particles.js" 甚至 import "../libs/pixi-particles.js" 都报如下错误 VM1755:1 gameThirdScriptError Object prototype may only be an Object or null: undefined TypeError: Object prototype may only be an Object or null: undefined 网上查了一下好像和打包有关,求解如何解决这个问题????不甚感激!!
2018-09-14 - 请教for循环animation的问题
请教,我想通过for循环,把animation分别绑定到对象上,该怎做? 目前我按如下方法尝试,但似乎没有效果 <view class='replyPieceAll' wx:for='{{arr_replyL}}' animation="{{arr_an}}" style='transform:rotate({{arr_replyL[index].angle}}deg); transform-origin:{{needLeft}}rpx 20rpx;'> this.data.arr_an[0].opacity(0).step(); this.setData( { arr_an: this.doAn(), } doAn:function () { this.data.arr_an[0].opacity(0).step().export(); return this.data.arr_an }
2018-07-24