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

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

81. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 77%]

...加载问题。 官方的飞机大战案例中,加载地图用的是bg.loadImage,而这边先预加载后再用如下方式加载。这里的方式肯定是较优,但如果我预加载后,再用loadImage方法加载同一张图片,系统是会重新加载还是直接调用本地缓存的...

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

82. 输入设备-摇一摇 [ 77%]

...ePic() { const Sprite = Laya.Sprite; let shakePic = new Sprite(); shakePic.loadImage("res/inputDevice/shake.png"); Laya.stage.addChild(shakePic); } showConsoleText() { const Text = Laya.Text; console = new Text(); Laya.stage.addChild(console); console.y = picH + 10; console.width = Laya.stage.width;...

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

83. Laya.Handler.create 回调参数问题 [ 77%]

...ite();     Laya.stage.addChild(ape); var ag = ["lsd",ape,1,"str"]; ape.loadImage("../laya/assets/res/to1.png",0,0,0,0,Laya.Handler.create(this,graphicsImg,ag));   graphicsImg(ag); }  function graphicsImg(args) { console.log(args); }   //loadImage 的回调函数只传递出来了第一个参...

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

84. list ,增加item ,我想在末尾增加,但是每次都给我翻倍的增加,如何解决 [ 77%]

...pos(50,150); this.addChild(this.roombg); var button = new Sprite(); button.loadImage($mj.Curr_Game_ImagePath + "hall/room_jiesan.png"); button.pos(300, 0); this.roombg.addChild(button); button.on(Event.MOUSE_DOWN, this, function (e) { list.addItem(1); }); function Item() { Item.__super.call(this); t...

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

85. sprite添加click监听事件反应迟钝 [ 77%]

...awyuan.graphics.drawCircle(0,0,50,"#232628");//反应非常迟钝 drawyuan.loadImage("../laya/assets/comp/textinput.png");//反应没有问题 drawyuan.size(100, 100); var x = Math.random() * Laya.stage.width; var y = Math.random() * Laya.stage.height; console.log(x + "" + y); drawyuan.pos(x,y); ret...

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

86. laya.display.Animation [ 77%]

...画的播放实质就是定时切换Graphics对象。 使用set source、loadImages(...)、loadAtlas(...)、loadAnimation(...)方法可以创建动画模版。使用play(...)可以播放指定动画。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefin...

来源: laya_api 发布时间: 20170929

87. Sprite图片显示不了 [ 77%]

...      Laya.stage.addChild(t);             // 方法1:使用loadImage             var ape:Sprite = new Sprite();             Laya.stage.addChild(ape);             ape.loadImage("aaa.png", 100, 100, 256, 256);         } } 照抄官方例子但显示不...

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

88. 设置滤镜(TypeScript-LayaAir基础篇(TS)-位图) [ 77%]

...ild.y; } private createApe(): Sprite { var ape: Sprite = new Sprite(); ape.loadImage("../../res/apes/monkey2.png"); Laya.stage.addChild(ape); return ape; } } } new laya.Main(); ``` 在上面的代码中,我们创建了一个原始位图、一个红色滤镜效果位图、一个灰色滤镜效果...

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

89. 设置滤镜(ActionScript-LayaAir基础篇(AS3)-位图) [ 76%]

...} private function createApe():Sprite { var ape:Sprite = new Sprite(); ape.loadImage(ApePath); Laya.stage.addChild(ape); return ape; } } } ``` 在上面的代码中,我们创建了一个原始位图、一个红色滤镜效果位图、一个灰色滤镜效果位图。运行效果如图1所示: ![...

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

90. 获取sprite对象的 width和height为0 [ 76%]

...t:Laya.Sprite; constructor() { super() this.bt = new Laya.Sprite() this.bt.loadImage("res/boat.png") this.addChild(this.bt) } } /** * 游戏背景 */ class BackGround extends Laya.Sprite { //背景图 private bg:Laya.Sprite; constructor(){ super(); this.init(); } init():void{ this.bg = new Laya.Spri...

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