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

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

211. spine动画,微信模拟器正常,真机动画图片颠倒!!!引擎大bug!!! [ 65%]

...建动画播放对象 let hero = this.templet.buildArmature(1); hero.pos(200, 0); //切换动画皮肤 hero.showSkinByIndex(0); //播放 hero.play(0, true); this.img_sample.addChild(hero); this.sk_hero = hero; Laya.timer.once(200, this, () => { hero.on(Laya.Event.CLICK, this, this.onHeroClick); l...

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

212. 关于位图字体的valign属性问题 [ 65%]

...isterBitmapFont(mFontName,mBitmap); var text:Text=new Text(); text.pos(300,200); text.size(200,80); text.pivotY=text.height>>1; text.valign="middle"; text.align="left"; text.borderColor="#ffffff"; text.text="hello!LayaBox!"; text.font=mFontName; Laya.stage.addChild(text); } } }测试结果: ...

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

213. 屏幕适配-屏幕适配 [ 64%]

...text = "点击我切换适配模式(noscale)"; txt.bold = true; txt.pos(0, 200); txt.fontSize = 30; txt.on("click", this, onTxtClick); Laya.stage.addChild(txt); //实例一个小人,放到右上角,并相对布局 var boy1 = new Image(); boy1.skin = "../../res/cartoonCharacters/1.png"; boy1.top ...

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

214. 屏幕适配-屏幕适配 [ 64%]

...击我切换适配模式(noscale)"; this.txt.bold = true; this.txt.pos(0, 200); this.txt.fontSize = 30; this.txt.on("click", this, this.onTxtClick); Laya.stage.addChild(this.txt); //实例一个小人,放到右上角,并相对布局 let boy1 = new Image(); boy1.skin = "res/cartoonCharacters/1.pn...

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

215. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 64%]

...esponseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObje...

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

216. 截屏drawToCanvas的疑问 [ 64%]

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

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

217. tween有这个一个bug [ 63%]

...)},800,Laya.Ease.backOut,null,i*400); if(i%2==1 && i!=9){ point.x-=200; }else{ point.x+=200; } } 2018-01-18 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 zszen 相关问题 两个对象new了一个相同的对象,调用第一...

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

218. 打包成APK后,POST请求会先去Download请求的地址 [ 63%]

...t的地址。然后有时候会卡住,大概5秒后会出现Download end:200的log,这之后才会真正把post请求发出去。有时候Download会直接超时报错。   网页版没问题。   超时log:↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 03-09 21:14:...

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

219. 请教下微信小游戏的内存和数据缓存? [ 63%]

...   在内存优化方面,考虑到低端机,都是尽可能优化到200M以下。 2018-01-22 1 0 分享 微博 QZONE 微信 hill_0219 赞同来自: 补充问题 2018-01-20 0 0 分享 微博 QZONE 微信 hill_0219 赞同来自: 再询问下 2018-01-22 0 0 分享 微博 QZONE 微信 hill_0219 赞...

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

220. 在Laya中使用Matter.js的最简示例 (JS) [ 63%]

...gine }); // create two boxes and a ground var boxA = Bodies.rectangle(400, 200, 80, 80); var boxB = Bodies.rectangle(450, 50, 80, 80); var ground = Bodies.rectangle(400, 500, 810, 60, { isStatic: true }); // add all of the bodies to the world World.add(engine.world, [boxA, boxB, ground]); // run the...

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