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

大约有 2,307 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0059 秒)

561. 骨骼动画-藤蔓 [ 73%]

...装(相当耗费内存) mArmature = mFactory.buildArmature(1); Laya.stage.addChild(mArmature); mArmature.pos(mStartX, mStartY); mArmature.scale(0.5, 0.5); mArmature.on(Event.STOPPED, this, this.completeHandler); this.play(); } completeHandler() { this.play(); } play() { mCurrIndex++; let aniNum = mA...

来源: Laya2.0_示例 发布时间: 20251209

562. 一个关于getPixels的问题 [ 73%]

... txt.pos(200, 200); txt.color = "#FFFFFF"; txt.text = "000000"; Laya.stage.addChild(txt);  var spr = new Sprite(); spr.size(50, 50); Laya.stage.addChild(spr);  spr.texture = "images/circle.png";  txt.text = spr.texture.getPixels(25,25,1,1);希望通过使用getPixels方法使txt的文本内容变...

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

563. rigidBody.applyForce 物体不会移动 [ 73%]

... Laya.Scene3D(); //将场景加到舞台上 this.scene = scene; Laya.stage.addChild(scene); //添加方向光 var directionlight: Laya.DirectionLight = scene.getChildByName( "Directional Light" ) as Laya.DirectionLight; this.directionlight = directionlight; //加入子層人物腳色到舞台 var li...

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

564. 文本在屏幕不垂直居中 [ 73%]

...idth /2 ,tx.height / 2); tx.align="center"; tx.valign="middle"; Laya.stage.addChild(tx); } })()   2017-11-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 修改后的代码...

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

565. laya.d3.animation.AnimationNode [ 73%]

...2Array = null) 创建一个新的 AnimationNode 实例。 AnimationNode  addChild(child:AnimationNode):void 添加子节点。 AnimationNode  clone():* 克隆。 AnimationNode  cloneTo(destObject:*):void 克隆。 AnimationNode  getChildByIndex(index:int):AnimationNode 根据索引获取子...

来源: Laya2.0_api 发布时间: 20190513

566. 关于button的click监听 [ 73%]

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

567. 骨骼动画-橡胶人 [ 73%]

...装(相当耗费内存) mArmature = mFactory.buildArmature(1); Laya.stage.addChild(mArmature); mArmature.pos(mStartX, mStartY); // mArmature.scale(0.5, 0.5); mArmature.on(Event.STOPPED, this, this.completeHandler); this.play(); } completeHandler() { this.play(); } play() { mCurrIndex++; let aniNum =...

来源: Laya2.0_示例 发布时间: 20251209

568. HTMLIframeElement加载html网页的问题 [ 73%]

...uper(); var iHtml: HTMLIframeElement = new HTMLIframeElement(); Laya.stage.addChild(iHtml); iHtml.href = "https://www.baidu.com/"; } } // 程序入口 Laya.init(600, 400); Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded()...

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

569. Tree属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 73%]

...ree.width) / 2; tree.y = (Laya.stage.height - tree.height) / 2; Laya.stage.addChild(tree); } } } import Box = Laya.Box; import Clip = Laya.Clip; // 此类对应的json对象: // {"child": [{"type": "Clip", "props": {"x": "13", "y": "0", "left": "12", "height": "24", "name": "selectBox", "skin": "u...

来源: Laya2.0_文档 发布时间: 20210714

570. 文本基础样式(ActionScript-LayaAir基础篇(AS3)-文本) [ 73%]

... = new Text(); txt.text = "hello_world"; txt.color = "#ffffff"; Laya.stage.addChild(txt); } } } ``` 这个时候我们就可以看到txt已经添加到舞台上了,显示了txt中 白色的hello_world。 接着我们给我们的文本添加一些其他的字体样式,粗体、斜体、字体大...

来源: Laya2.0_文档 发布时间: 20210714