大约有 2,095 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0085 秒)
...odejs\node_global\npm\node_modules\layaair2-cmd\node_modules\rollup-plugin-typescript2\dist\rollup-plugin-typescript2.cjs.js:17194:30) at lodash_3 (D:\Program Files\nodejs\node_global\npm\node_modules\layaair2-cmd\node_modules\rollup-plugin-typescript2\dist\rollup-plugin-typescript2.cjs.js:24...
来源: Laya_社区 发布时间: 20200704
...,正方体3个物体,通过鼠标点击按钮切换注视目标。 ```typescript //up向量 private _up = new Laya.Vector3(0, 1, 0); ``` ```typescript //点击事件 this.changeActionButton.on(Laya.Event.CLICK, this, function(){ this.index++; if (this.index % 3 === 1 ){ //摄像机捕捉模型...
来源: Laya2.0_文档 发布时间: 20210715
...理反馈的。 没有刚体的物体设置触发器的方法如下: ```typescript //创建盒型MeshSprite3D var box = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(sX, sY, sZ))) as Laya.MeshSprite3D; //创建物理碰撞器 var staticCollider:Laya.PhysicsCollider = box.addCom...
来源: Laya2.0_文档 发布时间: 20210714
...的一个显示webview界面的接口来实现。 ### 1. 接口定义 ```typescript /** * 显示一个webview * @param url {string} 要显示的url地址。 * @param posx {number} weview的左上角位置 * @param posy {number} webivew的左上角位置 * @param width {number} webview的宽度 * @pa...
来源: Laya2.0_文档 发布时间: 20210714
...emo2/?language=ch&category=3d&group=Material&name=EffectMaterialDemo)): ```typescript var earth = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere())) as Laya.MeshSprite3D; earth.transform.position = new Laya.Vector3(0, 0, 0); //创建EffectMaterial材质 var material = new Laya....
来源: Laya2.0_文档 发布时间: 20210714
...D/useGLTF/CmShwoDemo.zip) #### 加载模型示例 1. 创建辅助对象 ```typescript // gltf 模型文件 gltfFile: any = { skeleton: { url: "res/skeleton.gltf", type: Loader.JSON }, face: { url: "res/face.gltf", type: Loader.JSON }, eyes: { url: "res/eyes.gltf", type: Loader.JSON }, ... } // 装...
来源: Laya2.0_文档 发布时间: 20210715
...鼠标脚本,并且给4个猴都添加了脚本。 > **脚本类**: ```typescript export default class MouseScript extends Laya.Script3D{ private meshsp:Laya.MeshSprite3D; constructor(){super();} /** * 覆写3D对象组件被激活后执行,此时所有节点和组件均已创建完毕,此...
来源: Laya2.0_文档 发布时间: 20210715
2.0 bate5.1 新建typescript 2D示例项目,编译报错 附件 : --> test.zip 2019-01-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 糖果。 赞同来自: 我这可以运行 检查下是不是node...
来源: Laya_社区 发布时间: 20190107
请问下,TypeScript如何导入JavaScript文件 导入方式和tsconfig配置如图,但是编译之后一直报错,其它代码也报错,这要怎么处理 附件 : --> 2018-12-22 添加评论 已悬赏10元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20181222
...段代码添加在 Main.ts 。 > 通过引用来导入着色器代码 ```typescript import simpleShaderFS from "./simpleShader.fs"; import simpleShaderVS from "./simpleShader.vs"; ``` > 初始化shader ```typescript //初始化我们的自定义shader initShader() { //所有的attributeMap属性 var...
来源: Laya2.0_文档 发布时间: 20210715