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

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

531. UI运行时 · LayaAir3.0文档 · LAYABOX [ 66%]

...过的UI组件,直接使用this.即可使用。例如下面的代码: onAwake(): void { // Button添加鼠标事件,让Image不显示 this.Button.on( Laya.Event.MOUSE_DOWN, this, ()=>{ this.Image.visible = false; }); } 运行此场景来看看效果,如动图2-7所示。 (动图2-7) U...

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

532. 请问我用下面的代码发送个简单的http get请求,为什么在电脑上能得到成功输出,在手机上总是得到失败输出呢? [ 66%]

...能得到成功输出,在手机上总是得到失败输出呢? function myfunc() { var url = "http://43.254.151.248/sf_serve ... 3B%3B alert("url=" + url); var req = new laya.net.HttpRequest(); req.on(laya.events.Event.COMPLETE, null, cb_onSuccess); req.on(laya.events.Event.ERROR, null, cb_onFai...

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

533. laya.events.EventDispatcher [ 66%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames EventDispatcherMethods Packagelaya.eventsClasspublic class EventDispatcherInheritanceEventDispatcher ObjectSubclasses HttpRequest, Loader, LoaderManager, Node, Socket, Sound, SoundChannel, Texture, TimeLine EventDispatche...

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

534. 【音效BUG】在游戏失焦后再次返回游戏导致音效播放异常的问题与解决方案 [ 65%]

...是否因为失焦而自动暂停,监听游戏失焦事件:Laya.stage.on(Laya.Event.BLUR,this,this.method); 在失焦的回调里设置: Laya.SoundManager.musicMuted = true; Laya.SoundManager.stopMusic(); 将正在播放的音乐路径存为成员变量;   2.监听游戏获取焦点事件...

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

535. Sprite-新手引导 [ 65%]

...TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var HitArea = Laya.HitArea; var WebGL = Laya.WebGL; var red; var guideContainer; var tipContainer; var guideSteps = [ { x: 151, y: 575, radius: 150, tip: "../../res/gui...

来源: Laya_示例 发布时间: 20241119

536. laya.media.VideoTexture_API3.0 [ 65%]

...ch Preparing search index... The search index is not available layaair Options All Public Public/Protected All Inherited Externals Only exported Menu Globals "laya/media/VideoTexture" VideoTexture Class VideoTexture VideoTexture 多媒体纹理 Hierarchy BaseTexture VideoTexture Index Constructors c...

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

537. UI-Clip [ 65%]

...TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Stage = Laya.Stage; var Button = Laya.Button; var Clip = Laya.Clip; var Image = Laya.Image; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var buttonSkin = "../../res/ui/button-7.png"; var clipSkin = "../../re...

来源: Laya_示例 发布时间: 20241119

538. Sprite-新手引导 [ 65%]

...: 583, radius:110, tip:"res/guide/help3.png", tipx:900, tipy:300 } ], gameContainer, guideContainer, maskArea, interactionArea, hitArea, tipContainer, guideStep = 0; class Sprite_Guide { constructor() { const WebGL = Laya.WebGL, Stage = Laya.Stage; // 不支持WebGL时自动切换至Canvas Laya.init...

来源: Laya2.0_示例 发布时间: 20241119

539. WebSocket connection to 'ws://192.168.0.8:8102/' failed: Invalid frame header [ 65%]

WebSocket connection to 'ws://192.168.0.8:8102/' failed: Invalid frame header 一开始连接正常,密集发送消息到服务器后,就会给服务器程序发送关闭连接的信息。WebSocket connection to 'ws://192.168.0.8:8102/' failed: Invalid frame header WebSocket connection to 'ws:/...

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

540. 分享:为List组件下Item(Box)下的Button(或其他组件)进行监听! [ 65%]

分享:为List组件下Item(Box)下的Button(或其他组件)进行监听! 以下是JS的写法,AS/TS思路一样,请根据自己的需求进行修改即可!var Loader = laya.net.Loader; var Handler = laya.utils.Handler; var Event = laya.events.Event; // 创建TestPageUI的子类 function...

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