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

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

301. laya.display.Sprite_API3.0 [ 46%]

...ild(sprite);//将此 sprite 对象添加到显示列表。 sprite.on(Event.CLICK, this, onClickSprite);//给 sprite 对象添加点击事件侦听。 shape = new Sprite();//创建一个 Sprite 类的实例对象 sprite 。 shape.graphics.drawRect(0, 0, 100, 100, "#ccff00", "#ff0000", 2);//绘制一...

来源: Laya3.0_api 发布时间: 20231115

302. LayaAir和原生DOM交互(JavaScript-2D进阶篇(JS)-扩展模块) [ 46%]

...r url = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,clickHandler); this.qrcodeSp = new Laya.Sprite(); Laya.stage.addChild(this.qrcodeSp); function clickHandler(){ var url = this.qrcode._oDrawing._elImage.src;//获取,注意这里是异步的,开发者可以加...

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

303. 分享:DrawToCanvas内存释放问题! [ 46%]

...Canvas命令按钮 var btnDraw:Sprite=CreateBtn(100,400); btnDraw.on(Event.CLICK,this,onClickBtnDraw); } //创建按钮 private function CreateBtn(xx:int,yy:int):Sprite { var btn:Sprite=new Sprite(); btn.graphics.drawRect(0,0,200,50,"#FF0000"); btn.pos(100,400); var text:Text=new Text(); text.text="...

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

304. 弹窗视图组件 · LayaAir3.0文档 · LAYABOX [ 45%]

... extends RuntimeScriptBase { onAwake(): void { this.closeBtn.on(Laya.Event.CLICK, this, () => { this.close(); }); } } 1.3.3 关联场景 设置好弹窗之后,需要用代码将Dialog与所需要用到该Dialog的场景管关联起来。回到初始场景Scene,在Scene2D的属性设置面板...

来源: Laya3.0_文档 发布时间: 20241014

305. LayaAir和原生DOM交互(TypeScript-2D进阶篇(TS)-扩展模块) [ 45%]

...tring = "http://layabox.com/"; this.qrcode.makeCode(url); Laya.stage.once("click",this,this.clickHandler); this.qrcodeSp = new Laya.Sprite(); Laya.stage.addChild(this.qrcodeSp); } private clickHandler():void{ var url:string = this.qrcode._oDrawing._elImage.src;//获取,注意这里是异步的,...

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

306. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 44%]

...FFFFFF,#FFFFFF,#FFFFFF"; this.controller.size(84, 30); this.controller.on('click', this, this.onClipSwitchState); this.controller.x = (Laya.stage.width - this.controller.width) / 2; this.controller.y = (Laya.stage.height - this.controller.height) / 2 + 110; Laya.stage.addChild(this.controller); } pr...

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

307. 淘宝创意互动分包指南(TypeScript-小游戏适配文档-淘宝创意互动) [ 44%]

...载分包和资源 ``` onConfigLoaded(): void { Laya.stage.on(Laya.Event.CLICK, this, this.toPage2) } toPage2(): void { my.redirectTo({ url: "/subpackage1/page2/index", success: function () { console.log("success") }, fail: function (err) { console.log("2222", err) } }) } ``` 注意:在加载资...

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

308. 请大家帮助优化一下这个抛物线的代码 [ 44%]

...e.width / 2; this.ball.y = Laya.stage.height / 2; Laya.stage.on(Laya.Event.CLICK,this,this.onClick); Laya.timer.frameLoop(1,this,this.onEnterFrame); } private onEnterFrame():void{ if(this.points.length>0){ if(this.i<this.points.length){ this.ball.x = this.points[this.i].x; this.ball.y = this.p...

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

309. 请问,如何获得StandardMaterial,为什么transformUV始终是null [ 42%]

...0 * Laya.Browser.pixelRatio);         changeActionButton.on(Laya.Event.CLICK, this, function () {             if (++curStateIndex % 2 == 1) {                 debugModel = true;                 changeActionButton.label = "网格模式";             }             ...

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

310. Clip属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 42%]

..., 30); //按钮点击事件——计数器状态控制 controller.on(Event.CLICK, this, onClipState); //按钮位置 controller.x = (Laya.stage.width - controller.width) / 2; controller.y = (Laya.stage.height - controller.height) / 2 + 110; //加载到舞台 Laya.stage.addChild(controller); } /***...

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