大约有 411 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(129) Laya3.0_api(69) Laya2.0_api(64) laya_api(59) Laya2.0_文档(46) Laya3.0_文档(25) Laya_示例(12) Laya2.0_示例(7)
...l(); boxRender.sharedMaterial = boxMaterial; // 添加到场景 this.scene.addChild(box); // 设置位置 box.transform.position = new Laya.Vector3(2.0, 0.25, 0.6); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); /* 球体 */ let sphere = new Laya.Sprite3D; let sphereMesh = sphere.ad...
来源: Laya3.0_文档 发布时间: 20241014
...(0, 0, this.width, this.height); this.mask.optimizeScrollRect = true; this.addChild(this.mask); } this.initContent = function () { this.content = new Box(); this.content.width = this.width; this.content.autoSize = true; this.content.y = this.scrollMode == DOWN_TO_TOP ? this.height : 1; this.mask.add...
来源: Laya_社区 发布时间: 20161118
... ape.graphics.drawTexture(t, 0, 0); ape.graphics.scale(1.01, 1) Laya.stage.addChild(ape); ape.pos(200, 0); })); 上面这段代码并没有得到图片缩放的效果,看到的现象是图片一直在往左移动 2017-06-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20170609
...始有问题 问题代码: _modePnl是场景里的节点 一执行addChild()这句话 界面布局就会乱 请问是什么问题呢 let { x, y } = this._modelPnl.localToGlobal(new Laya.Point(0, 0)) let { x: x2, y: y2 } = this._modelPnl.localToGlobal(new Laya.Point(this._m...
来源: Laya_社区 发布时间: 20200401
...Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");}); 请问 这样监听不到button的点击事件吗?如果我创建一个ui.view a a.on 也监听不到吗 2017-11-28 添加评论 免...
来源: Laya_社区 发布时间: 20171128
...oxWidth, ConstValue.boxWidth, ConstValue.boxHeight); var box = this.parent.addChild(new Laya.MeshSprite3D(mesh)); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); box.transform.position = new Laya.Vector3(ConstValue.boxOutScreen,ConstValue.boxHeight/2,0); var material = new Laya.Stand...
来源: Laya_社区 发布时间: 20180113
...ntional/SceneMonkey.ls",Laya.Handler.create(this,function(res){ Laya.stage.addChild(res); //用于挂点的精灵 var box = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1,1,1)); var material = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(this, funct...
来源: Laya2.0_文档 发布时间: 20210715
...ntional/SceneMonkey.ls",Laya.Handler.create(this,function(res){ Laya.stage.addChild(res); //用于挂点的精灵 var box = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1,1,1)); var material = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(this, funct...
来源: Laya2.0_文档 发布时间: 20210714
...Laya.PrimitiveMesh.createQuad(1, 1); var model1: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(quda)) as Laya.MeshSprite3D; var model2: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(quda)) as Laya.MeshSprite3D; var model3: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3...
来源: Laya_社区 发布时间: 20190424
... · 一个panel对象,高度500 · 一个box对象,高度1000 · panel.addChild(box)· 设置panel的垂直滚动skin,让它可以响应鼠标滚动 运行后发现: 能响应鼠标事件的位置只有box的上半部分(上面的500 px) (把box滚动到最下面,就无法再滚...
来源: Laya_社区 发布时间: 20170622