大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0088 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
....load(aniArr, Handler.create(this, onAni), null, Loader.ATLAS); private function onAni():void { var role:SimpleRole = new SimpleRole(); Laya.stage.addChild(role); } SimpleRole类: public function SimpleRole() { roleAni = new Animation(); roleAni.loadAnimation...
来源: Laya_社区 发布时间: 20170619
...例。 package { import laya.ui.Label; public class Label_Example { public function Label_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 onInit(); } private function onInit():void { var label:Label = new La...
来源: Laya3.0_api 发布时间: 20231115
...浏览器错误时的detail是未定义的: Browser.window.onerror = function(msg:String, url:String, line:String, column:String, detail:*):void { if (erralert++ < 5 && detail) alert("出错啦,请把此信...
来源: Laya_社区 发布时间: 20170212
...6 0 0 分享 微博 QZONE 微信 variation8 赞同来自: _proto.connect = function() { socket = new Socket(); //socket.connect("echo.websocket.org", 80); socket.connectByUrl("ws://127.0.0.1:8383"); output = socket.output; ...
来源: Laya_社区 发布时间: 20171206
... StaticBatchManagerConstructor DetailStaticBatchManager()Constructorpublic function StaticBatchManager() 创建一个 StaticBatchManager 实例。 Method Detailcombine()method public static function combine(staticBatchRoot:Sprite3D, renderableSprite3Ds:Vector.<RenderableSprite3D> = null):void ...
来源: Laya2.0_api 发布时间: 20190513
...调用 我需要写一个工具类进行一些逻辑的处理 var Load_ = (function (_super) { function Load_() { Load_.super(this); } //注册类 Laya.class(Load_, "Load_", _super); var _proto = Load_.prototype; _proto.run_Fast = function () { console.log("逻辑处理"); } return Load_; })(Laya.Sp...
来源: Laya_社区 发布时间: 20180705
...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...
来源: Laya3.0_api 发布时间: 20231115
...的链接 提交 1 个回复 cuixueying 赞同来自: 请参考:private function onSkinLoadComplete(e:*=null):void { createDialog("111",100,100); createDialog("222",200,200); createDialog("333",300,300); createDialog("444",400,400); createDialog("555",500,500); Laya.stage.on(Event.CLICK,this,onCli...
来源: Laya_社区 发布时间: 20170606
...中包含一些tcp udp //创建server服务 var server = net.createServer(function (conn) { console.log('new connection is connecting') conn.write('\n hello buddy') }); server.listen(8081, function () { console.log('server is listening') // server.emit('connection'); }); 2019-04-23 添加评论 免...
来源: Laya_社区 发布时间: 20190423
...背景音乐 //=========================================================== function playbgm() { SoundManager.playMusic("comp/bgm.mp3", 1, new Handler(this, bgmComplete)); } function bgmComplete() { console.log("播放完成"); } 附件 : --> 2018-03-06 添加评论 免费帖 --> 分享 微博 QZO...
来源: Laya_社区 发布时间: 20180306