安装 ionic
npm install Ionic -g
安装 three.js
1.three 模块化使用THREE.js npm install three.js 后 example中的js文件夹下插件没有被包含。
替代方案: npm install three-full
使用typeScript:npm install three.js -> npm install @types/three 安装完后安装three类型库
单独安装 npm install three-full 没有对应的类型库 使用时没有 方法提示
较方便方案: npm install three.js -> npm install @types/three
import * as THREE from 'three' 使用时有语法提示
npm install three-full import { OBJLoad } from 'three-full' 单独引入THREE中没有包含的插件,这部分没有提示
网友评论