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

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

361. laya.media.VideoNode_API3.0 [ 58%]

...ble volume width x y zOrder Methods _initialize _processActive _setX _setY addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater canPlayType clearTimer contains customRender destroy destroyChildren drawToCanvas drawToTexture drawToTexture3D event frameLoop frameOnce...

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

362. HTMLDivElement中图文混排怎么获取实际内容大小 [ 58%]

...: " + imageHtml.contextWidth + ", " + imageHtml.contextHeight); Laya.stage.addChild(imageHtml);   上述代码在Laya中运行 正确显示了 图片 控制台输出: size: 200, 200 contextSize: 0, 0   如何获取真实大小?   2017-11-18 添加评论 免费帖 --> 分享 微博 QZONE 微...

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

363. laya.ui.Button [ 58%]

...tring = null, label:String) 创建一个新的 Button 类实例。 Button addChild(node:Node):Node 添加子节点。 Node addChildAt(node:Node, index:int):Node 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node addComponent(type:Class):* 添加...

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

364. laya.ui.TextInput [ 58%]

...extInput(text:String) 创建一个新的 TextInput 类实例。 TextInput addChild(node:Node):Node 添加子节点。 Node addChildAt(node:Node, index:int):Node 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node addComponent(type:Class):* 添加...

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

365. Animation如何获取图集单帧实际宽高 [ 58%]

...model+".atlas",Handler.create(this,onLoad)); function onLoad():void { this.addChild(ani); var bounds:Rectangle = ani.getBounds(); Control.showLog(bounds.toString()); } 附件 : --> 2018-03-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

366. 动画实例在调用含有名字参数的时候获取不到边界 [ 58%]

...i].scaleY = 300/bounds.height; this.playerUnit[i].pos(200,400); Laya.stage.addChild(this.playerUnit[i]); } this.playerUnitReady+=1; } enemyUnitLoaded(){ for(let i in this.enemyUnit){ Laya.Animation.createFrames(this.aniUrls("stand",4),"enemy"+i+"stand") this.enemyUnit[i...

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

367. LayaBox如何多点触摸? [ 58%]

...(bmd); bmp.width = 960; bmp.height = 640; var sp:Sprite = new Sprite(); sp.addChild(bmp); this.addChildAt(sp, 0); Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; sp.addEventListener(TouchEvent.TOUCH_BEGIN, onTouchBegin); } protected function onTouchBegin(event:TouchEvent):void { log(event.to...

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

368. laya.display.Scene_API3.0 [ 58%]

... viewport visible width x y zOrder root Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer close contains customRender destroy destroyChildren drawToCanvas drawToTexture drawToTexture3D event frameLoop frameOnce fresh...

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

369. 浏览器最小化后降帧的问题 [ 58%]

...rite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); Browser.window.setInterval(function():void { sp.x+=5; },100); 2017-06-02 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 w445015385 相关问题 发...

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

370. 鼠标 MOUSE_DOWN Event 回来的信息不符合 [ 58%]

...ite() { picture = new Sprite(); picture.loadImage(picturePath); Laya.stage.addChild(picture); var texture = Laya.loader.getRes(picturePath); picturePath.pivot(texture.width / 2, texture.height / 2); picture.x = Laya.stage.width / 2; picture.y = Laya.stage.height / 2; picture.scale(cardScaleValue, ca...

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