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

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

1141. Sprite-根据数据绘制路径 [ 70%]

..._CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; this.drawPentagram(); } private drawPentagram(): void { var canvas: Sprite = new Sprite(); Laya.stage.addChild(canvas); var path: Array = []; path.push(0, -130); path.push(33, -33); path.push(137, -30); path.push(55, 32); pat...

来源: Laya_示例 发布时间: 20241120

1142. 2.0 Beta3版本中,runtime脚本的的问题 [ 70%]

... 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: /*layaMaxUI.ts  *This class is automatically generated by LayaAirIDE, please do not make any modifications. */ import View=Laya.View; import Dialog=Laya.Dialog; import Scene=Laya.Scene; export module ui { export class BGPageUI extends View { ...

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

1143. [分享]实现颜色渐变 [ 70%]

...码把绘制过程理了一遍,找到了实现方式,这是代码: this.canvas = Laya.Render.canvas; this.context = this.canvas.getContext('2d'); var my_gradient = this.context.createLinearGradient(0,0,0,1136); //创建一个线性渐变 my_gradient.addColorStop(0,"#FF0000"); my_gradient.addCo...

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

1144. 对象池3D问题 [ 70%]

...题 Laya.loader.create("fish/denglongyu/layaScene.lh", Laya.Handler.create(this, function(){     var layaMonkey =Laya.Sprite3D.load("fish/denglongyu/layaScene.lh"); scene.addChild(layaMonkey) layaMonkey.transform.localScale = new Laya.Vector3(0.04,0.04,0.04); layaMonkey.transform.position = new ...

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

1145. 缓动动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 70%]

...java Tween.to(letterText, { y : 300 }, 1000, Ease.bounceIn, Handler.create(this,changeColor,[letterText]), i * 100); ``` 由于需要增加新的引用,这次贴出全部的示例代码。 TweenDemo.as: ```java package { import laya.display.Text; import laya.utils.Ease; import laya.utils.Handler...

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

1146. TimeLine标签删除失败,动效还是在播放 [ 70%]

...然后重置 就ok了 小丶kiss • 2018-12-19 21:31 结束动画 1)隐藏this.target.visible = false; 2)重置this.timeLine.reset();

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

1147. Skeleton骨骼动画内存泄漏 [ 70%]

...ton; private onKeyDown(e):void{ if(e.keyCode == 49 || e.keyCode == 97){ if(this.te == null){ this.te = new Laya.Templet(); this.te.on(Laya.Event.COMPLETE, this, this.teComplete); this.te.loadAni("res/wing_01_side.sk"); } } else if(e.keyCode == 50 || e.keyCode == 98) { if(this.te != null){ this.te.de...

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

1148. 物理刚体(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 70%]

...载模型 Laya.Sprite3D.load("Conventional/shoot.lh",Laya.Handler.create(this,function(sp){ //获取到Meshsprite3d var cube = scene.addChild(sp.getChildAt(0); //获取刚体 var cubeRigid = cube.getComponent(Laya.Rigidbody3D); })); ```

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

1149. 创建动画时画布的width和height与 实例化后的ani.size(width, height) 有什么区别 [ 70%]

...40x240的动画,代码如下_proto_.onAnimation_BirdSing = function () { this.aniBirdSing = new Laya.Animation(); this.aniBirdSing.loadAtlas("res/atlas/birdsing.json"); this.aniBirdSing.interval = 35; // 设置播放间隔(单位:毫秒) this.aniBirdSing.index = 0; // 当前播放索引 this...

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

1150. HTMLIframeElement加载html网页的问题 [ 70%]

....load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void { //实例UI界面 var testUI: TestUI = new TestUI(); Laya.stage.addChild(testUI); }运行会报错:见图:   求解~!   附件 : --> TestHtml.zip 2017-10-11 添加评...

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