vivo iqoo pro 5G 手机型号:V1916A 系统 Android11 微信版本 8.0.10 片段地址 https://developers.weixin.qq.com/s/FRDpzRmr7dsG
ThreeJs THREE.TextureLoader() 加载图片后,android无法显示?// 初始化一个加载器 var loader = new THREE.TextureLoader(); // 加载一个资源 loader.load( // 资源URL 'https://finfo.ushow.ink/locgame/a141f597-cd6d-4dac-9860-427c9e2bfc21.png', // onLoad回调 function (texture) { console.log('An see happened.') // in this example we create the material when the texture is loaded setTimeout(function(){ self.material3 = new THREE.MeshBasicMaterial({ map: texture }); const geometry = new THREE.BoxBufferGeometry(50, 20, 50); const mesh2 = new THREE.Mesh(geometry, self.material3 ); self.mesh.add(mesh2); mesh2.position.y = -100 },1000*10) }, // 目前暂不支持onProgress的回调 undefined, // onError回调 function (err) { console.error('An error happened.'); } ); 用这段代码加载了 纹理之后,ios 和 开发工具都能正常渲染,但是android 就不行了。 10秒的延迟就是为了看是不是纹理导致的。 外面本身还有一个绿色的方块,android加载纹理后就不见了
2021-08-27ctx.fillStyle = "#ffffff" ctx.font = "20px 黑体" ctx.fillText( "万年之后,", 100, screenHeight/2.0 - 200 ) 微信小游戏 只是这样写文字 都会 模糊 有锯齿,然后登录按钮没有模糊 [图片]
微信小游戏安卓版本字体显示糊采用Laya 引擎开发 使用Laya自带字体 在 IOS 真机中 全部正常高清 在Android 真机中 字体显示糊 能看到锯齿状 同手机 在浏览器中运行 也是高清的 以下截图 是同款手机 在 小游戏 与浏览器的贴图对比 希望官方能给个解决方案 [图片] [图片]
2019-09-30