大约有 976 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0069 秒)
Laya_社区(598) Laya2.0_文档(80) Laya3.0_api(67) Laya2.0_api(60) laya_api(56) Laya2.0_示例(41) Laya_示例(37) Laya3.0_文档(37)
... 0); // 通过屏幕坐标来获取选中格子的索引 this.layer.getTilePositionByScreenPos(Laya.stage.mouseX, Laya.stage.mouseY, p); // 通过地图坐标得到屏幕坐标 this.layer.getScreenPositionByTilePos(Math.floor(p.x), Math.floor(p.y), p); this.sprite.pos(p.x, p.y); } mapLoaded() { this...
来源: Laya2.0_示例 发布时间: 20241118
...坐标转全局坐标结果与预期相差甚远 在某个地方使用var pos:Point = img.localToGlobal(new Point(img.width/2, img.height/2));转换坐标 结果是完全正确的。但最近又有地方需要用到 于是写了trace(soil_1.localToGlobal(new Point(soil_1.width/2, soil_1.height/2)));...
来源: Laya_社区 发布时间: 20181219
...t1; var transform = box.transform; var pos = transform.position; pos.setValue(point[index].x, 0, point[index].z); transform.position = pos; //创建刚体碰撞器 var rigidBody = box.addComp...
来源: Laya_社区 发布时间: 20201120
...r panelParent = uiUtils.createPanel( 611, 115, "panelParent"); panelParent.pos(0, h); panelParent.hScrollBarSkin = ""; panelParent.hScrollBar.isVertical = false; this.addChild(panelParent ); _putChild: function (parentName, path, col, row, cellSize, offset, scale) { var root = this.getChil...
来源: Laya_社区 发布时间: 20170410
... sk.play(1,true) sk.pos(200,200) Laya.stage.addChild(sk); })) Laya.timer.once(2000,this,function(){ ...
来源: Laya_社区 发布时间: 20180828
...滚动条皮肤 this.hscroll.width = 300;//滚动条的宽度 this.hscroll.pos(300, 300);//滚动条的位置 this.hscroll.min = 0;//滑块的最小滚动位置 this.hscroll.max = 10;//滑块的最大滚动位置 this.hscroll.scrollSize = 1;//点击按钮的滚动量 } } 二、通过代码创建HScr...
来源: Laya3.0_文档 发布时间: 20241014
...滚动条皮肤 this.vscroll.width = 300;//滚动条的宽度 this.vscroll.pos(300, 300);//滚动条的位置 this.vscroll.min = 0;//滑块的最小滚动位置 this.vscroll.max = 10;//滑块的最大滚动位置 this.vscroll.scrollSize = 1;//点击按钮的滚动量 } } 二、通过代码创建VScr...
来源: Laya3.0_文档 发布时间: 20241014
...ya.stage.bgColor = "#232628"; //画一个圆 sprite = new Sprite(); sprite.pos(500,500); var graphics:Graphics = new Graphics(); graphics.drawCircle(0,0,100,"#00CC33"); sprite.graphics = graphics; Laya.stage.addChild(sprite); //画一条直线,添加进圆 var sprite2:Sprite = new Sprite(); var gr...
来源: Laya_社区 发布时间: 20190515
...切后的中心反而是对的,这按理是bug吧 // sp3.pos(Laya.stage.width/2,0); Laya.stage.addChild(sp3); Laya.timer.frameLoop(2,null,function() { sp3.rotation = sp3.rotation+10; ...
来源: Laya_社区 发布时间: 20191112
...): void { var t1: Text = this.createText(); t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2: Text = this.createText(); t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3: Text = this.createText(); t3.overflow = Text.HIDDEN; t3.pos(10, 210); } private createText(): Text { var txt: Text = new Text(...
来源: Laya2.0_文档 发布时间: 20210715