大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0087 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...s/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh",Laya.Handler.create(null, function(sp){ //Laya.Sprite3D.load("res/layatest.lh",Laya.Handler.create(null, function(sp){ this.box=scene.addChild(sp); this.box.transform.rotate(new Laya.Vector3...
来源: Laya_社区 发布时间: 20190514
...e; private var rowHeight:int = 30; private var rowSpacing:int = 10; public function DOM_Form() { Laya.init(600, 400); Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL; Laya.stag...
来源: Laya2.0_示例 发布时间: 20241127
...ui页面里下on事件无法触发 类代码如下: var GameStartView = function () { GameStartView.super(this); this.Start.on(Laya.Event.CLICK, this, this.open); console.log(this.Start); GameStartView.prototype.open = function(){ console.log("Open is ok"); } }; Laya.class(GameStartView,"GameStart...
来源: Laya_社区 发布时间: 20180213
...ugtool调试报错了 Uncaught TypeError: sprite._getBoundPointsM is not a function at Function.showDisBound (laya.debugtool.js:3365) at dhtmlXTreeObject.<anonymous> (laya.debugtool.js:4840) at dhtmlXTreeObject.e.callEvent (eval at init (laya.debugtool.js:4050), <anonymous...
来源: Laya_社区 发布时间: 20200420
... laya.net.Loader; import laya.utils.Handler; public class XmlDemo { public function XmlDemo() { Laya.init(550,400); Laya.loader.load("data.xml",Handler.create(this,onLoaded),null,Loader.XML); } private function onLoaded():void { // TODO Auto Generated method stub var xml:XmlDemo=Laya.loader.getRes("...
来源: Laya_社区 发布时间: 20160914
...; public class Dialog_Example { private var dialog:Dialog_Instance; public function Dialog_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/btn_close.png", Handler.create(this, o...
来源: Laya3.0_api 发布时间: 20231115
... 使用chrome进行性能测试时看到这样的图表,想问一下在function call之间的空白是代表idle吗?是什么原因引起的,是否有方法尽量缩减每帧当中的空白部分让每帧的总耗时尽可能小? 附件 : --> 2018-06-26 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20180626
...utils.Handler;import ui.EffectAnimationDemoUI; public class Main{public function Main(){//初始化舞台Laya.init(1334,750);//设置舞台背景色Laya.stage.bgColor = "#ffffff" //加载图集资源,加载成功后添加到舞台Laya.loader.load("./res/atlas/ui.atlas",Handler.create(this,onL...
来源: Laya_社区 发布时间: 20190708
...请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: function TestUI() { var Event = laya.events.Event; TestUI.super(this); this.ani1.play(15);//play的第一个参数是从第几帧开始播放 Laya.stage.on(Laya.Event.CLICK,this,onClick); } Laya.class(TestUI, "TestUI", TestPag...
来源: Laya_社区 发布时间: 20170526
...e addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, method:Function):void 清理定时器。功能同Lay...
来源: laya_api 发布时间: 20170929