uniapp中使用threejs加载几何体

我的建议是使用这个库

https://github.com/deepkolos/three-platformize

为什么?我试了uniapp推荐的和threejs-miniprogram这个小程序官方库,都加载不出来我的obj模型。所有我推荐不要用obj模型最好,挺多都支持GLTF模型的,但是我不能改。

安装,使用pnpm比较快

pnpm install three-platformize

以下是完整代码

<template>
	<view class="content">
		<canvas type="webgl" id="webgl" style="width: 100vw; height: 100vh;" @touchstart="touchStart"
			@touchmove="touchMove" @touchend="touchEnd" />
	</view>
</template>

<script>
	import {
		WechatPlatform
	} from 'three-platformize/src/WechatPlatform';
	import * as THREE from 'three-platformize';
	//轨道控制器
	import {
		OrbitControls
	} from 'three-platformize/examples/jsm/controls/OrbitControls'
	export default {
		data() {
			return {
				platform: ''
			};
		},
		mounted() {
			uni.createSelectorQuery()
				.in(this)
				.select('#webgl')
				.fields({
					node: true
				})
				.exec(res => {
					console.log('res', res[0].node);
					const canvas = res[0].node;
					console.log('canvas', canvas);
					const platform = new WechatPlatform(canvas); // webgl canvas
					console.log('1111', platform);
					platform.enableDeviceOrientation('game'); // 开启DeviceOrientation
					THREE.PLATFORM.set(platform);
					this.platform = platform;
					var scene = new THREE.Scene();
					var camera = new THREE.PerspectiveCamera(75, canvas.width / canvas.height, 0.1, 1000);
					camera.position.set(0, 0, 10);
					scene.add(camera);
					const geometry = new THREE.BoxGeometry(1, 1, 1);
					const materials = new THREE.MeshBasicMaterial();
					const cube = new THREE.Mesh(geometry, materials);
					scene.add(cube);
					const light = new THREE.AmbientLight(0xffffff);
					scene.add(light);
					//注意,这里必须要添加一个{ canvas: canvas },不然会报createElementNS错误
					const renderer = new THREE.WebGLRenderer({
						canvas: canvas
					});
					renderer.setSize(canvas.width, canvas.height);
					const controls = new OrbitControls(camera, renderer.domElement);

					function animate() {
						//这里不再是requestAnimationFrame而是canvas.requestAnimationFrame
						canvas.requestAnimationFrame(animate);
						renderer.render(scene, camera);
					}
					animate();
				});


		},
		methods: {
			touchStart(e) {
				this.platform.dispatchTouchEvent(e);
			},
			touchMove(e) {
				this.platform.dispatchTouchEvent(e);
			},
			touchEnd(e) {
				this.platform.dispatchTouchEvent(e);
			}
		}
	}
</script>


<style>

</style>
相关推荐
耶啵奶膘7 小时前
uniapp+vue2全局监听退出小程序清除缓存
小程序·uni-app
我开心就好o14 小时前
uniapp点左上角返回键, 重复来回跳转的问题 解决方案
前端·javascript·uni-app
Random_index14 小时前
#Uniapp篇:支持纯血鸿蒙&发布&适配&UIUI
uni-app·harmonyos
初遇你时动了情1 天前
uniapp 城市选择插件
开发语言·javascript·uni-app
小小黑0071 天前
uniapp+vue3+ts H5端使用Quill富文本插件以及解决上传图片反显的问题
uni-app·vue
草字1 天前
uniapp input限制输入负数,以及保留小数点两位.
java·前端·uni-app
前端小胡兔1 天前
uniapp rpx兼容平板
uni-app
荔枝吖1 天前
uniapp实现开发遇到过的问题(持续更新中....)
uni-app
艾小逗1 天前
uniapp将图片url转换成base64支持app和h5
uni-app·base64·imagetobase64
halo14161 天前
uni-app 界面TabBar中间大图标设置的两种方法
开发语言·javascript·uni-app