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

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

1721. loadAnimation无法获取动画文件 [ 72%]

....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

1722. laya.ui.Label_API3.0 [ 72%]

...例。 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

1723. 浏览器报错时获取不到详情 [ 72%]

...浏览器错误时的detail是未定义的:   Browser.window.onerror = function(msg:String, url:String, line:String, column:String, detail:*):void {                     if (erralert++ < 5 && detail)                         alert("出错啦,请把此信...

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

1724. 超过最大调用堆栈大小 [ 72%]

...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

1725. laya.d3.graphics.StaticBatchManager [ 72%]

... StaticBatchManagerConstructor DetailStaticBatchManager()Constructorpublic function StaticBatchManager() 创建一个 StaticBatchManager 实例。 Method Detailcombine()method public static function combine(staticBatchRoot:Sprite3D, renderableSprite3Ds:Vector.<RenderableSprite3D> = null):void ...

来源: Laya2.0_api 发布时间: 20190513

1726. ja语言怎么样创建一个工具类在其他地方调用 [ 72%]

...调用 我需要写一个工具类进行一些逻辑的处理 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

1727. laya.spine.SpineSkeleton_API3.0 [ 72%]

...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

1728. dialog 遮挡 [ 72%]

...的链接 提交 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

1729. websocket服务端显示连接成功,客户端未进行回调 [ 72%]

...中包含一些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

1730. 播放声音出错,求指教 [ 71%]

...背景音乐 //=========================================================== function playbgm() { SoundManager.playMusic("comp/bgm.mp3", 1, new Handler(this, bgmComplete)); } function bgmComplete() { console.log("播放完成"); }   附件 : --> 2018-03-06 添加评论 免费帖 --> 分享 微博 QZO...

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