获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 当xr-gltf里面的内容修改时,anim-autoplay失效
当xr-gltf里面的内容修改时,anim-autoplay失效,没办法播放新的动画,特别是没有动画名字的时候,用 animator.play("gltfAnimation#0");也不好使 希望官方出一个playAll的api,能够直接播放所有动画, https://developers.weixin.qq.com/miniprogram/dev/component/xr-frame/gltf/specification.html
2023-10-24 - 手势识别在真机上无效
https://developers.weixin.qq.com/miniprogram/dev/component/view.html
2023-10-19 - canvas 里面设置referrerPolicy=origin
canvas 里面设置referrerPolicy=origin没有效果啊。防盗链过不去 const bgImage = canvas.createImage() await new Promise(resolve => { bgImage.onload = resolve; bgImage.referrerPolicy = 'origin'; bgImage.src = this.data.uiIconsPath.photoBgIcon; // 要加载的图片 url bgImage.onerror = function(e) { console.log("onerror"+JSON.stringify(e)); } })
2023-10-07