大约有 1,738 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0067 秒)
Laya_社区(1374) Laya2.0_文档(82) Laya3.0_api(68) Laya2.0_api(57) laya_api(53) Laya3.0_文档(45) Laya_示例(32) Laya2.0_示例(27)
...更改图片的大小。 而我把同样事件绑定到直接在代码中new Sprite出来的一图片时,点击一次 就可以更改。 这个点击两次的问题如何处理。 代码在附件中 左边的要点两次 右边的只需点一次 附件 : --> layaclick.rar 2017-02-17 添加评...
来源: Laya_社区 发布时间: 20170217
...unction MousePickingScene() { MousePickingScene.super(this); this.camera = new Laya.Camera(0,0.1,100); this.addChild(this.camera); this.camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; this.skyBox = new Laya.SkyBox(); this.camera.sky = this.skyBox; this.skyBox.textureCube = Laya.TextureCube.load("s...
来源: Laya_社区 发布时间: 20170323
...同的。像Flash会在cs中把2个资源弄成一个元件,在代码中new一下就可以复制出来使用。我现在是把组合元件放到一个view中,然后在代码中new,若是使用VIew是不是会开销有点大?有没有其他思路呢?谢谢回复! 2018-06-25 添加评论 ...
来源: Laya_社区 发布时间: 20180625
...,其他图片可以 ,下面附上背景demo //创建背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("ui/BG/play-bg.png", 0, 0, 720, 5120); //把背景图显示在容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并显示...
来源: Laya_社区 发布时间: 20181105
... Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; camera.transform.translate(new Laya.Vector3(0, 0.8, 1.5)); camera.transform.r...
来源: Laya_社区 发布时间: 20161201
...ya.stage.addChild(_list); } protected function createList():void { _list = new List(); _list.itemRender = RecordItem; _list.repeatX = 1; _list.repeatY = 13; _list.spaceY = 3; _list.vScrollBarSkin = ""; _list.renderHandler = new Handler(this, renderHandler); } protected function createItems():void { ...
来源: Laya_社区 发布时间: 20170323
...件,放到index.html中。代码如下: ```typescript var myWorker = new Worker("my_task.js"); myWorker.onmessage = function (oEvent) { console.log("Called back by the worker!\n"); }; myWorker.postMessage("start"); // start the worker. ``` 新建一个my_task.js文件,代码如下: ```typesc...
来源: Laya2.0_文档 发布时间: 20210715
...rivate function onLoadComplete():void { //实例化进度条 progressBar = new ProgressBar("../../../../res/ui/progressBar.png"); //设置宽度 progressBar.width = 400; //设置显示位置,在舞台居中 progressBar.x = (Laya.stage.width - progressBar.width ) / 2; progressBar.y = Laya.stage.hei...
来源: Laya2.0_文档 发布时间: 20210715
... //实例一个背景 var bg:Image = new Image(); bg.skin = "res/img/loadingBg.jpg"; Laya.stage.addChild(bg); //实例一个文本 txt = new Text(); txt.text = "适配模...
来源: Laya2.0_文档 发布时间: 20200307
...te(this, onLoadComplete)); })(); function onLoadComplete() { progressBar = new ProgressBar("res/ui/progressBar.png"); progressBar.width = 400; progressBar.x = (Laya.stage.width - progressBar.width) / 2; progressBar.y = Laya.stage.height / 2; progressBar.sizeGrid = "5,5,5,5"; progressBar.changeHandle...
来源: Laya2.0_文档 发布时间: 20210715