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

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

521. 排坑:Laya.HttpRequest()无效 [ 78%]

...a.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE, this, completeHandler); xhr.once(Event.ERROR, this, errorHandler); xhr.on(Event.PROGRESS, this, processHandler); xhr.send("http://www.baidu.com", "", "get", "text"); function processHandler(data) { console.log...

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

522. 关于HttpRequest报错问题 [ 78%]

...nt-Type","application/x-www-form-urlencoded; charset=utf-8"); xmlHttp.once(Event.COMPLETE,this,onHttpRequestComplete); xmlHttp.once(Event.ERROR,this,errorHandler); xmlHttp.on(Event.PROGRESS,this,processHandler); function onHttpRequestComplete(e){ }; function processHandler(data){ console.log(data); ...

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

523. laya.d3.core.Sprite3D_API3.0 [ 78%]

...ve addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChildAt getChildByName getChildIndex getComponent getComponents hasHideFlag hasListener isAncestorOf off offAll offAllCaller on on...

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

524. 重复背景,全方向地图拖动Demo [ 78%]

...is.downMouseY = 0 Laya.loader.load(['bg/world_bg.jpg']) Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown) Laya.stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp) this.moveMap(this.offsetX,this.offsetY) } moveMap(x,y){ let X = -x00 let Y = -y00 this.map0.x = X this.map0.y = Y this.map3.x = X + 18...

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

525. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 78%]

...n()     {         createMap();          Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledM...

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

526. 能否知道当前是不是在调用手机键盘? [ 78%]

...盘会导致游戏舞台发生改变,你可以为你的舞台监听一个Event.RASIZE事件,判断Browser.width和Browser.height是否发生改变,如果发生改变,表示已经调用了键盘事件,如果Browser.width和Browser.height依然等于原始宽高,表示没有调起键盘,...

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

527. FrameAnimation complete事件回掉参数为undefinend [ 78%]

...var ani1:Laya.FrameAnimation = this.ani1; ani1.play(0,false); ani1.on(laya.events.Event.COMPLETE,this,this.onPlayEnd); onPlayEnd(evt) { //evt 居然是undefinend。事件机制还能用吗? } 2017-09-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

528. laya.ui.Tree [ 78%]

...| All Classes | Index | Frames No Frames TreeProperties | Methods | Events Packagelaya.uiClasspublic class TreeInheritanceTree Box UIComponent Sprite Node EventDispatcher ObjectImplements IRender Tree 控件使用户可以查看排列为可扩展树的层次结构数据。 Public Properties ...

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

529. 如何实现鼠标左键点中按钮,然后按钮随鼠标拖动 [ 78%]

...过多种方式实现,以下几个方法仅供参考 1、给button监听Event.DOWN事件,在Down的回调函数中监听Event.MOVE事件,在Move事件的回调中让button.x=laya.stage.mouseX,button.y=laya.stage.mouseY 2、直接在Event.DOWN回调函数下,设置button.startDrag()方...

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

530. laya.display.Input [ 78%]

... All Classes | Index | Frames No Frames InputProperties | Methods | Events | Constants Packagelaya.displayClasspublic class InputInheritanceInput Text Sprite Node EventDispatcher Object Input 类用于创建显示对象以显示和输入文本。 Input 类封装了原生的文本输入框...

来源: laya_api 发布时间: 20170929