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

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

681. laya.ui.CheckBox_API3.0 [ 54%]

... CheckBox 实例。 package { import laya.ui.CheckBox; import laya.utils.Handler; public class CheckBox_Example { public function CheckBox_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/check...

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

682. layabox打包有问题用cordova打包没问题 [ 54%]

...ace("---------------loadBaseConfAfterGame"); Laya.loader.load( temploaArr, Handler.create(this,loadAllBaseConfFun,[_afterGameConfigArr])/*,progressHandler*/); } private function loadAllBaseConfFun(configURLArr:Array):void { trace("-------------loadAllBaseConfFun------------"); } loadconfig这个...

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

683. 通过laya设计模式制作的,要怎么给按钮绑定事件呢? [ 54%]

...// 预加载图集 Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(this, this.onLoaded ), null, Laya.Loader.ATLAS) } onLoaded(){ Laya.stage.addChild(new TopUI()) Laya.stage.addChild(new TabUI()) this.getGold.on(Laya.Event.MOUSE_DOWN,this,function(){ console.log("点击事...

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

684. AS代码如何new一个js库中的类并且使用这个类 [ 54%]

... 3)new需要的类   //加载 Laya.loader.load(getModuleJSPath("abc.js"), Handler.create(this,loadedHandler)); function loadedHandler(data:*):void{       //加载完回调       __JS__('window.eval(data + "//# sourceURL=" + "abc.js")');     //new需要的类       var loginView:* = __JS_...

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

685. 关于纹理的显示问题 [ 54%]

...    at LayaUISample.__proto.onLoaded (LayaUISample.max.js:1135)     at Handler.__proto.runWith (LayaUISample.max.js:701)     at ResInfo.loadComplete (LayaUISample.max.js:18073)     at EventHandler.__proto.runWith (LayaUISample.max.js:702)     at ResInfo.__proto.event (LayaUISample.max.js:4...

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

686. 垂直滑动条组件 · LayaAir3.0文档 · LAYABOX [ 53%]

...图片资源来自“引擎API使用示例” Laya.loader.load(skins, Laya.Handler.create(this, this.placeVSlider)); } private placeVSlider(): void { let vs: Laya.Slider = new Laya.VSlider(); vs.skin = "vslider.png"; vs.height = 300; vs.pos(400, 50); vs.min = 0; vs.max = 100; vs.value = 50; vs.tick ...

来源: Laya3.0_文档 发布时间: 20241014

687. 水平滑动条组件 · LayaAir3.0文档 · LAYABOX [ 53%]

...图片资源来自“引擎API使用示例” Laya.loader.load(skins, Laya.Handler.create(this, this.placeHSlider)); } private placeHSlider(): void { let hs: Laya.Slider = new Laya.HSlider(); hs.skin = "hslider.png"; hs.width = 300; hs.pos(50, 500); hs.min = 0; hs.max = 100; hs.value = 50; hs.tick =...

来源: Laya3.0_文档 发布时间: 20241014

688. 取色器组件 · LayaAir3.0文档 · LAYABOX [ 53%]

...colorPicker.skin = this.skin; colorPicker.pos(100, 100); colorPicker.changeHandler = new Laya.Handler(this, this.onChangeColor, [colorPicker]); this.owner.addChild(colorPicker); this.onChangeColor(colorPicker); } private onChangeColor(colorPicker: Laya.ColorPicker, e: any = null): void { console.log...

来源: Laya3.0_文档 发布时间: 20241014

689. 可能有个昵称叫做“syy”的一只掉进粪坑里的猪会在下面乱叫 [ 53%]

...问题中有介绍方法   {Laya.loader.create("prefab/预设名字.json",Handler.create(this,onComplete));}private function onComplete(obj:Object):Void{一个预设变量.json = ojb一个sprite = Pool.getItemByCreateFun("自己起一个名字", this.一个预设变量.create, this.一个预设变...

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

690. 加载SK文件时,报错如下:Uncaught getUint16 error - Out of bounds [ 53%]

...ader.load(['res/spine/knight/effect1.png', 'res/spine/knight/effect1.sk'], Handler.create(this, init)); 2018-03-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: 骨骼数太大了吧 2018-03-23...

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