• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 411 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)

81. 3D基础显示对象 · LayaAir3.0文档 · LAYABOX [ 69%]

...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

82. Sprite optimizeScrollRect = true 似乎有问题 [ 68%]

...(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

83. graphics使用matrix的异常情况 [ 68%]

... 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

84. 真机测试时 有3d模型的界面尺寸就会错乱 [ 68%]

...始有问题 问题代码:  _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

85. 关于button的click监听 [ 68%]

...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

86. 如何获得box单独每个面的material [ 68%]

...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

87. 动画挂点(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 68%]

...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

88. 动画挂点(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 68%]

...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

89. Laya2.0.1动态批处理的bug? [ 68%]

...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

90. 关于panel的content的鼠标响应区域 [ 67%]

... · 一个panel对象,高度500 · 一个box对象,高度1000 · panel.addChild(box)· 设置panel的垂直滚动skin,让它可以响应鼠标滚动   运行后发现: 能响应鼠标事件的位置只有box的上半部分(上面的500 px) (把box滚动到最下面,就无法再滚...

来源: Laya_社区 发布时间: 20170622