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

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

51. 官方视频教程中飞机大战 "this.addChild is not a function" [ 76%]

...tion(){ (function Game(){ Laya.init(480,852); this.bg = BackGround(); Laya.stage.addChild(this.bg); })(); })(); src/BackGround.jsvar BackGround = (function(_super){ function BackGround(){ BackGround.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("war/background.png"); this.addChild(th...

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

52. hitArea怎么用 [ 76%]

...640,1136,'#ff0000');         container.size(640,1136)         Laya.stage.addChild(container);                       var bg2Sprite =  new Sprite();         bg2Sprite.graphics.drawRect(0,0,640,1136,'#ff0000');         bg2Sprite.size(640,1136)         container.hitArea ...

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

53. 关于闭包的问题 [ 75%]

...terList.length) * z, 0, bg.width / letterList.length, bg.height / 2); Laya.stage.addChild(letter); letter.on("click", this, (function(para){ console.log("z:"+z+";para:"+para+";letterList[para]:"+letterList[para]); return function () { alert("z:"+z+";para:" + para + "I'm letter " + letterList[para]);...

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

54. js继承模式 [ 75%]

...s); this.img = []; this.init(); } Class.prototype.init = function() { Laya.stage.addChild(this); this.bg(); Laya.timer.frameLoop(1, this, this.loop); }; Class.prototype.bg = function() { for (var i = 0; i < 2; i++) { this.img[i] = new Laya.Image('background.png'); this.addChild(this.img[i]); } th...

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

55. 【简单跑酷--JS版】---Lv.6 终篇 [ 74%]

...y = 32 * 4; this.addChild(this.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(laya.events.Event.MOUSE_UP, this, this.onMouseUp); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop ...

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

56. "Background is not defined"怎么会没定义呢???求救 [ 74%]

...nction Game(){ Laya.init(600,800); this.bg = new window.Background(); Laya.stage.addChild(this.bg); })(); })();Background.js var Background = (function(_super){ function Background(){ Background.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("res/background.png"); this.addChild(this.b...

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

57. 就这两句话,很简单的逻辑,为什么调起来如此费劲, 缩放到底影响了什么,坐标设置都不好使了吗? [ 74%]

...放到底影响了什么,坐标设置都不好使了吗? var bg = Laya.stage.getChildByName("G_Background"); bg.scale(StandardRatio*2.56,StandardRatio*2.56); bg.pos(0,ScreenHeight + 425*bg.scaleY); 2017-12-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...

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

58. 加载-销毁Texture使用的图片资源 [ 73%]

...ureRes { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = ...

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

59. dialog的lock属性没出现 [ 73%]

...不对,可以参考下我下面的例子 package { import laya.display.Stage; import laya.ui.Button; import laya.ui.Dialog; import laya.ui.Image; import laya.utils.Handler; import laya.webgl.WebGL; public class DialogCenterClose { private const DIALOG_WIDTH:int = 220; private const DIALOG_HEIGHT:i...

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

60. 监听不到Laya.Event.RESIZE事件 [ 73%]

监听不到Laya.Event.RESIZE事件 init():void{ Laya.stage.on(Laya.Event.RESIZE,this,this.onStageChange); } protected onStageChange(event:Event):void { this.bg.y = 180; alert("11111111111111") var desWidth:Number; var desHeight:Number; //获取窗口显示区的宽度。 desWidth=window.innerWidth...

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