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

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

151. 骨骼动画-Spine事件 [ 89%]

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

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

152. 计时器-延迟调用 [ 89%]

...wordWrap = true; text.valign = "middle"; text.align = "center"; Laya.stage.addChild(text); } })();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Timer_CallLater { constructor() { // 不支持WebGL时自动切...

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

153. 三个图好像无法绑定不同的事件? [ 89%]

...r.ldc.layabox.com/demo/h5/res/apes/monkey2.png',100,100,90,90); Laya.stage.addChild(img1); img1.on(Laya.Event.CLICK,this, function(name){ console.log(name);},['图1']); var img2 = new Laya.Sprite(); img2.loadImage('https://layaair.ldc.layabox.com/demo/h5/res/apes/monkey2.png',200,300,90,90); Laya.st...

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

154. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 89%]

... "#FF0000"); var bounds:Rectangle  = sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` ​ getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 2. 设置容器的autoSize为true。 ```javascript var sp:Sprite = new Sprite(); sp.autoSize = tr...

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

155. UI-TextArea [ 89%]

... ta.padding = "70,8,8,8"; var scaleFactor = Browser.pixelRatio; Laya.stage.addChild(ta); } })();module laya { import Stage = Laya.Stage; import TextArea = Laya.TextArea; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_TextArea { private skin: ...

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

156. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 89%]

...00,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 1. 设置容器的autoSize为true。 ```javascript var sp=new Laya.Sprite(); sp.autoSize=true; sp.graphics....

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

157. UI-ColorPicker [ 89%]

...hangeHandler = new Handler(this, onChangeColor, [colorPicker]); Laya.stage.addChild(colorPicker); onChangeColor(colorPicker); } function onChangeColor(colorPicker) { console.log(colorPicker.selectedColor); } })();module laya { import Stage = Laya.Stage; import ColorPicker = Laya.ColorPicker; import ...

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

158. HTMLCanvas Laya.stage.addChild(HTMLCanvas); 挂载到舞台报错 [ 89%]

HTMLCanvas Laya.stage.addChild(HTMLCanvas); 挂载到舞台报错 想要加入百度图表 使用Html Canvas的代理类后 加入舞台时报错   示例代码:   var div=Laya.HTMLCanvas.create=new HTMLCanvas("2D");      div.size(600,400);      Laya.stage.addChild(div);      consol...

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

159. UI-TextArea [ 89%]

..."; ta.pos(100, 15); ta.size(375, 355); ta.padding = "70,8,8,8"; Laya.stage.addChild(ta); } } new UI_TextArea();module laya { import Stage = Laya.Stage; import TextArea = Laya.TextArea; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_TextArea {...

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

160. 计时器-延迟调用 [ 89%]

...wordWrap = true; text.valign = "middle"; text.align = "center"; Laya.stage.addChild(text); } } new Timer_CallLater();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Timer_CallLater { constructor() { // 不支持...

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