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

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

881. 飞机大战js源码中判断语句问题 [ 45%]

...图2 bg2.loadImage("res/background.png"); //设置背景图2的坐标 bg2.pos(0, -852); //把背景2添加到容器 box.addChild(bg2); //设置一个帧循环处理函数,用于背景位置的更新,实现背景滚动效果。 Laya.timer.frameLoop(1, this, onLoop); })() /** * 在onLoop函数内...

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

882. 引擎示例中的新手引导自己写了一次,不知道为什么无法实现点击。 [ 45%]

...ontainer.graphics.clear(); tipContainer.loadImage(guide.tip); tipContainer.pos(guide.tipx, guide.tipy); } } })(); 2017-10-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 麻...

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

883. 1.70beta Dialog增加动画后第二次执行popup不显示弹窗 [ 45%]

...g); var button = new Button(assets[1]); button.name = Dialog.CLOSE; button.pos(DIALOG_WIDTH - CLOSE_BTN_WIDTH - CLOSE_BTN_PADDING, CLOSE_BTN_PADDING); dialog.addChild(button); dialog.dragArea = "0,0," + DIALOG_WIDTH + "," + DIALOG_HEIGHT; console.log("SHOW"); dialog.show(); Laya.timer.once(3000, thi...

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

884. laya.device.media.Video_API3.0 [ 45%]

...e onAwake onDestroy onDisable onEnable once parentRepaint pause pivot play pos reCache reload removeChild removeChildAt removeChildByName removeChildren removeInputChild removeSelf render repaint replaceChild runCallLater scale setChildIndex setSelfBounds set_height set_scaleX set_scaleY set_transfo...

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

885. LayaBox HelloWorld实战 [ 44%]

...tton.name = Laya.Dialog.CLOSE; button.width=260; button.height=500; button.pos(35, 35); dialog.addChild(button); dialog.dragArea = '0,0,300,600'; dialog.show(); } onEnable() { this.btnShow.on(Laya.Event.CLICK,this,this.onBtnShowClick); } onDisable() { } } 是不是以为到了这一步就结束了...

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

886. List 组件做的手风琴Demo [ 44%]

...         var img2 =new Laya.Image("bg1.png");         this.pos(0,0);         img1.size(100,30);         img2.size(100,50);         img1.name ="img1";         img2.name ="img2";         img2.visible =false; //默认img2隐藏         img...

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

887. 仿照laya官方demo做了一个视频播放的UI,为啥在微信里不能用? [ 44%]

...Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(reference); reference.pos(0, 0); reference.size(Laya.stage.width, Laya.stage.height); reference.graphics.drawRect(0, 0, reference.width, reference.height, "#CCCCCC"); let tipElmt = Laya.Browser.createElement("img"); tipElmt.src = getResURI("ui/gui...

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

888. 添加或修改物理ChainCollider属性points时,报错 [ 44%]

...temByCreateFun("bullet", this.bullet.create, this.bullet); flyer.pos(Laya.stage.mouseX, Laya.stage.mouseY); this._gameBox.addChild(flyer); this._chains.points="118,99,158,70,218,99,258,70,318,99,358,70,418,99,458,70,518,99,558,70"; } /**开始游戏,通过激活本脚本方式...

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

889. 截屏drawToCanvas的疑问 [ 44%]

...用htmlCanvas创建Texture          * var sp:Sprite = new Sprite().pos(0, 200);//创建精灵并把它放倒200位置          * sp.graphics.drawTexture(texture);//把截图绘制到精灵上          * Laya.stage.addChild(sp);//把精灵显示到舞台          *  ...

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

890. LayaAir下加载阿拉伯TTF字体,手机上显示时左右顺序反了。 [ 44%]

...(); text.font="hu"; text.fontSize=50; text.text="لحسن نهر123"; text.pos(100, 100); text.width = 500; text.height = 500; Laya.stage.addChild(text); }   参考该贴加载字体方式: https://ask.layabox.com/question/332 附件 : --> LayaFontTest.zip 2018-07-05 添加评论 已悬赏10元 -...

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