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

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

131. 求助关于TiledMap的版本问题 [ 66%]

... import laya.maths.Rectangle; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class LayaSample { private var tMap:TiledMap; public function LayaSample() { //初始化引擎 Laya.init(1136, 640,WebGL); //创建TiledMap实例 tMap = new TiledMap(); //创建Rectang...

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

132. Dialog中的closeHandler 并没有回调按钮name 是不是BUG? [ 65%]

Dialog中的closeHandler 并没有回调按钮name 是不是BUG? 版本:1.7.2beta   测试用例:http://layaair.ldc.layabox.com/demo/?UI_Dialog   里面加一段 dialog.closeHandler = Handler.create(this,function(name){ alert(name) }) 测试结果 name 并没有被传值   2017-03-30 添...

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

133. Laya.loader.load 教程代码出错 [ 65%]

...isplay.Text;     import laya.display.Sprite;     import laya.utils.Handler;     import laya.resource.Texture;     public class LayaSample {         private var img:Sprite ;         private var index:int ;         public function LayaSample() {         ...

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

134. LayaNative端使用.ttf字体 [ 65%]

...Text; import laya.net.Loader; import laya.utils.Browser; import laya.utils.Handler; public class Test { public function Test() { Laya.init(550,400); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load("hu.ttf",Handler.create(this,onLoaded),null,Loader.BUFFER); } private function onLoaded():void { var arr...

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

135. HTMLIframeElement加载html网页的问题 [ 65%]

...:import test = ui.test.TestPageUI; import Label = laya.ui.Label; import Handler = laya.utils.Handler; import Loader = laya.net.Loader; import HTMLIframeElement = Laya.HTMLIframeElement; class TestUI extends ui.htmlUI { constructor() { super(); var iHtml: HTMLIframeElement = new HTMLIframeElement()...

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

136. 区块地图-等角地图 [ 65%]

...ater.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), Laya.Handler.create(this, this.mapLoaded), null, new Point(1600, 800)); } onStageClick() { let p = new Laya.Point(0, 0); // 通过屏幕坐标来获取选中格子的索引 this.layer.getTilePositionByScreenPos(Laya.stage.mouseX, ...

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

137. 如何实现类似AS3下的BitmapData.draw去截取区域图片? [ 65%]

...play.Sprite;     import laya.resource.Texture;     import laya.utils.Handler;     public class CupPhone     {         public function CupPhone()         {             Laya.init(550,400);             Laya.loader.load("walk.png",Handler.create(this,onLoaded));...

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

138. layaAir支持xml加载和使用吗 [ 65%]

...同来自: 代码如下package { import laya.net.Loader; import laya.utils.Handler; public class XmlDemo { public function XmlDemo() { Laya.init(550,400); Laya.loader.load("data.xml",Handler.create(this,onLoaded),null,Loader.XML); } private function onLoaded():void { // TODO Auto Generated method st...

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

139. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 65%]

...回调方法绘制图片并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 L...

来源: Laya2.0_文档 发布时间: 20210715

140. 如何用代码控制panel的vscroll滚动幅度 [ 65%]

...ay.Sprite; import laya.net.Loader; import laya.ui.Panel; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(600,600); Laya.stage.bgColor='#EEFFCC'; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function...

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