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

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

871. laya.ui.HBox_API3.0 [ 45%]

...rDeserialize onAwake onDestroy onDisable onEnable once parentRepaint pivot pos reCache refresh removeChild removeChildAt removeChildByName removeChildren removeSelf render repaint replaceChild runCallLater scale setChildIndex setGraphics setSelfBounds set_anchorX set_anchorY set_bottom set_dataSourc...

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

872. 将字节数组转为图片 [ 45%]

...loadImage(url);             addChild(sp);             sp.pos(100, 200);             trace("url=" + url);//blob:file%3A///1c4effc4-4022-4ab5-8feb-e39ff76b7410             trace(sp.width);//0             /**              * 其他调试信息打印...

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

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

...板创建动画播放对象 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.onHeroCli...

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

874. sprite做的按钮点击无反应? [ 45%]

...0.5-43, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(btn); btn.pos((stageWd - w) * 0.5, (stageHt - h) * 0.5-50); 2017-01-20 0 1 分享 微博 QZONE 微信 ohkei - as3、as2、h5 赞同来自: 感谢感谢!! 2017-01-20 0 0 分享 微博 QZONE 微信 lei159130 赞同来自: 研究了n...

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

875. 发布项目“是否压缩混淆js(耗时)”的bug [ 45%]

...n name «of», expected punc «;»","filename":"0","line":107395,"col":26,"pos":3691880} 2018-04-13 0 0 分享 微博 QZONE 微信 131*****785 赞同来自: 我直接用uglifyjs 压缩是报这样的错误: E:\new_work\uglify>uglifyjs code.js > code.min.js Parse error at code.js:107395,26  ...

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

876. IOS的safari浏览器打开h5项目demo,游戏场景偏移(附件有完整demo) [ 45%]

...txt.text = "适配模式("+Laya.stage.scaleMode+") "; txt.bold = true; txt.pos(10, 350); txt.fontSize = 60; txt.color = "#fff000"; Laya.stage.addChild(txt); } } } 附件 : --> LayaAir1_7_beta.rar 2017-02-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

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

...Text.registerBitmapFont(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

878. ComboBox属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 45%]

... var cb: ComboBox = this.createComboBox(this.skin); cb.autoSize = true; cb.pos((Laya.stage.width - cb.width) / 2, 100); cb.autoSize = false; } private createComboBox(skin: String): ComboBox { var comboBox: ComboBox = new ComboBox(this.skin, "item0,item1,item2,item3,item4,item5"); comboBox.labelSize ...

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

879. Spine适配版(JavaScript-LayaAir基础篇(JS)-动画基础) [ 45%]

...templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Browser.width / 2, Browser.height / 2 + 100); this.skeleton.scale(0.5, 0.5); this.skeleton.on(Event.STOPPED, this, this.play) this.play(); } private onError(): void{ console.log("parse error"); } private play(): void { co...

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

880. 画了一个封闭的曲线,获取鼠标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture? [ 45%]

...ite = new Sprite(); spr.graphics.drawTexture(tex); this.addChild(spr); spr.pos(90, 0);*/ } private function getPixel(tex:Texture):int { var pixelCount:int = 0; var arr:Array = tex.getPixels(0, 0, tex.width, tex.height); for(var i:int = 0; i < arr.length; i++) { if(arr[i] > 0) { pixelCount++; }...

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