大约有 2,159 项符合查询结果, 库内数据总量为 31,671 项。 (搜索耗时: 0.0057 秒)
Laya3.0_api(672) Laya_社区(472) Laya2.0_api(357) laya_api(289) Laya_示例(150) Laya2.0_示例(112) Laya2.0_文档(98) Laya3.0_文档(9)
.../filters/Filter" Filter constructor _filter Legend Object literal Variable Function Type alias Class Class with type parameter Constructor Enumeration Interface Static method
来源: Laya3.0_api 发布时间: 20231115
...Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION); function beginLoad(){ Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(null, onLoaded)); }*/ function updateItem(cell, index) { cell.setImg(cell.dataSource); } function onLoaded(): void { var...
来源: Laya_社区 发布时间: 20180507
...ort laya.ui.Label; import laya.webgl.WebGL; public class UI_Label { public function UI_Label() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stag...
来源: Laya2.0_示例 发布时间: 20260106
...位置x++ private var sp2:Sprite;//用于显示截屏后的纹理 public function LayaAirDemo() { Laya.init(Browser.width, Browser.height);//引擎初始化 Laya.stage.bgColor = "#ffcccc";//背景颜色 Stat.show();//显示帧频,用于观察Curmem变化 //添加被截屏对象 sp= new Sprite(); s...
来源: Laya_社区 发布时间: 20170822
... once 的 回调参数,如何传递和接收? once () method public function once(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响...
来源: Laya_社区 发布时间: 20180304
...:int渲染区宽度。Constructor DetailRenderContext3D()Constructorpublic function RenderContext3D() 创建一个 RenderContext3D 实例。 Mon May 13 2019, 02:40 PM +08:00
来源: Laya2.0_api 发布时间: 20190513
... popupBgColor showButtons touchScrollEnable Legend Object literal Variable Function Type alias Class Class with type parameter Enumeration Interface Static property
来源: Laya3.0_api 发布时间: 20231115
... private const MCWidth:int = 318; private const MCHeight:int = 406; public function Animation_SWF() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scal...
来源: Laya2.0_示例 发布时间: 20260106
...icsSettings fixedTimeStep flags maxSubSteps Legend Object literal Variable Function Type alias Class Class with type parameter Property Enumeration Interface
来源: Laya3.0_api 发布时间: 20231115
...a.net.Loader; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(500,400); Laya.loader.load("unpack.json",Handler.create(this,onLoaded),null,Loader.JSON); } private function onLoaded():void { var json:JSON=Laya.loader.getRes("unpack.json"); var str:String...
来源: Laya_社区 发布时间: 20170802