- [XRframe] recordStart()录制屏幕的时间跟实际录制时间不一样吗?
屏幕录制的是不是跟屏幕刷新率有关? 我实际录制了10秒,显示7秒! async recordStart() { await this.scene.share.recordStart({ fps: 30, gop: 6, videoBitsPerSecond: 3000, width: this.data.sceneWidth, height: this.data.sceneHeight }); // this.triggerEvent('recordScreenRead'); console.log('开始录制', Date.now()); },
05-26 - 【XR-FRAME】为什么IOS识别出的图片是白色?
如下图 安卓端没问题能够显示 IOS不管是jpg还是png 都只显示白色 这个是bug吗 还是我的设置有问题 求大佬们看看 <!-- 图片 --> <xr-node wx:if="{{markerItem.renderType === 'image'}}"> <xr-mesh position="0 0.01 0" scale="{{markerWidth}} 1 {{markerHeight}}" cast-shadow geometry="plane" material="texture-mat-{{markerItem.id}}" states="cullOn: false, alphaMode: BLEND, renderQueue: 2500" /> </xr-node> [图片]
01-09