這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)微信小游戲中three.js實(shí)現(xiàn)離屏畫(huà)布,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

在微信小游戲中,把three.js的3D內(nèi)容在離屏畫(huà)布處理,然后復(fù)制到在屏畫(huà)布,方法是:
let c_toolbarHeight=140;
let sysInfo=wx.getSystemInfoSync();
require('./js/libs/weapp-adapter.js');
var canvas_webGL=window.canvas;
canvas_webGL.width = sysInfo.screenWidth * sysInfo.pixelRatio;
canvas_webGL.height = (sysInfo.screenHeight-c_toolbarHeight) * sysInfo.pixelRatio;
var ctx_webGL=canvas_webGL.getContext('webgl');
let options={context: ctx_webGL}
let renderer = new THREE.WebGLRenderer(options);
renderer.setSize(sysInfo.screenWidth, sysInfo.screenHeight-c_toolbarHeight);
renderer.setPixelRatio(sysInfo.pixelRatio);
function render(){
//清除canvas_bkg的3D區(qū)域
wx.tmGlobal.eraseZone(0,
c_toolbarHeight,
sysInfo.screenWidth,
sysInfo.screenHeight);
renderer.render(scene, camera);
wx.tmGlobal.ctx_bkg.drawImage(canvas_webGL,
0,c_toolbarHeight*sysInfo.pixelRatio);
//畫(huà)一條橫的紅線
wx.tmGlobal.ctx_bkg.strokeStyle = '#FF8C00';
wx.tmGlobal.ctx_bkg.lineWidth = 2;
wx.tmGlobal.ctx_bkg.beginPath();
wx.tmGlobal.ctx_bkg.moveTo(0,
(c_toolbarHeight)*sysInfo.pixelRatio);
wx.tmGlobal.ctx_bkg.lineTo(
sysInfo.screenWidth*sysInfo.pixelRatio,
(c_toolbarHeight)*sysInfo.pixelRatio);
//畫(huà)游戲結(jié)束臨界線
wx.tmGlobal.ctx_bkg.moveTo(0,
(c_toolbarHeight+c_yugaoHeight)*sysInfo.pixelRatio);
wx.tmGlobal.ctx_bkg.lineTo(
sysInfo.screenWidth*sysInfo.pixelRatio,
(c_toolbarHeight+c_yugaoHeight)*sysInfo.pixelRatio);
wx.tmGlobal.ctx_bkg.stroke();
//把canvas_bkg畫(huà)到在屏畫(huà)布
wx.tmGlobal.ctx_main.clearRect(0,0,
wx.tmGlobal.canvas_main.width,wx.tmGlobal.canvas_main.height);
wx.tmGlobal.ctx_main.drawImage(wx.tmGlobal.canvas_bkg,0,0);
}
本文名稱:微信小游戲中three.js實(shí)現(xiàn)離屏畫(huà)布-創(chuàng)新互聯(lián)
鏈接地址:http://chinadenli.net/article6/ejcig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、做網(wǎng)站、虛擬主機(jī)、微信公眾號(hào)、靜態(tài)網(wǎng)站、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容