问题解决了吗
canvasContext.fillText在安卓客户端不显示- -当前 Bug 的表现(可附上截图) ctx.fillText的文字,在开发工具上可见,在iOS客户端可见,在安卓客户端不可见 1. 2. -预期表现 在安卓客户端可见 -复现路径 -提供一个最简复现 Demo import * as THREE from './libs/three.min.js' let ctx = canvas.getContext('webgl') let cameraOrtho, sceneOrtho let width,height let stepText let texture3 let stepCanvas = wx.createCanvas('canvas') let stepContext = stepCanvas.getContext('2d') let stepNum=0 init(); animate(); function init(){ width = window.innerWidth; height = window.innerHeight; sceneOrtho = new THREE.Scene(); cameraOrtho = new THREE.OrthographicCamera(- width/ 2, width / 2, height / 2, - height/ 2, 1, 10); cameraOrtho.position.z = 10; StepText() ; renderer = new THREE.WebGLRenderer({ antialias: true, context: ctx }); renderer.setClearColor(0x454545); renderer.setSize(window.innerWidth, window.innerHeight); renderer.autoClear = false; document.body.appendChild(renderer.domElement); } function StepText() { stepCanvas.width =128; stepCanvas.height = 64; stepContext.font = "20px Arial"; stepContext.fillStyle = '#00ff00'; stepContext.clearRect(0, 0, stepCanvas.width, stepCanvas.height); stepContext.fillText("步数:" + stepNum, 0, 48, stepCanvas.width, stepCanvas.height); texture3 = new THREE.CanvasTexture(stepCanvas); let material3 = new THREE.SpriteMaterial({ transparent: true, opacity: 1 }); material3.map = texture3; let width3 = stepCanvas.width; let height3 = stepCanvas.height ; stepText = new THREE.Sprite( material3 ); stepText.scale.set( width3, height3, 1); stepText.visible = false; stepText.position.set( -width / 2 + 80, height / 2 - 72, 1); sceneOrtho.add(stepText ); } function animate() { requestAnimationFrame(animate); texture3.needsUpdate = true; render(); } function render(){ renderer.clear(); renderer.render(sceneOrtho, cameraOrtho); }
2020-07-10有官方的人员来解答吗?
wxBindCanvasTexture 这个 api 什么时候能支持安卓?wxBindCanvasTexture 这个 api 什么时候能支持安卓?
2020-07-101.安卓经常会出现刷新 小游戏子域的时候 模糊 导致页面多出控件都出现模糊的现象 cocos creator引擎
开发工具问题无故刷新以及安卓手机显示问题两个问题 一个是 开发工具总是刷新页面的问题, 当点击内页的时候,会刷新又跳回首页。 之前以为是小程序问题,后来换了其他小程序还是一样的情况,必须点几次让它刷新几次后就好了。 之前的版本是没有这个问题的。 麻烦官方看看。 第二个问题是 ios 没有,唯独 安卓 显示不出页面来,然后打印出来的错误信息是: [图片] 使用的是腾讯云证书,Linux nginx 服务器 然后查了下 证书版本是 1.2 的 很奇怪的问题。
2018-06-08