大约有 2,627 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0085 秒)
Laya_社区(2117) Laya2.0_文档(119) Laya3.0_api(106) Laya_示例(84) Laya2.0_api(57) Laya2.0_示例(55) laya_api(53) Laya3.0_文档(36)
... { var t = Laya.loader.getRes("../../res/apes/monkey2.png"); var ape = new Sprite(); ape.graphics.drawTexture(t, 0, 0); ape.graphics.scale(1.01, 1) Laya.stage.addChild(ape); ape.pos(200, 0); })); 上面这段代码并没有得到图片缩放的效果,看到的现象是图片一直在往左移动 201...
来源: Laya_社区 发布时间: 20170609
...100], ["lineTo", px+0, py+0], ["closePath"]]; private var bg:Sprite; bg = new Sprite(); bg.loadImage("pic/2.jpg",0,0); Laya.stage.addChild(bg); maskSP = new Sprite(); maskSP.graphics.drawPath(0, 0,maskS...
来源: Laya_社区 发布时间: 20161116
...复被折叠 要回复问题请先登录 发起人 leeq3000 相关问题 sprite旋转以后,但是原来碰撞检测rect没有旋转 招聘:H5游戏开发 坐标:深圳南山 使用了u3D导出来的粒子,不停的显示移除并销毁其克隆对象,统计面板的显存和内存就会...
来源: Laya_社区 发布时间: 20161226
....TiledMap; var Rectangle = Laya.Rectangle; var Handler = Laya.Handler; var Sprite = Laya.Sprite; var MapLayer = Laya.MapLayer; var loadMap = (function (_super) { function loadMap() { loadMap.super(this); } Laya.class(loadMap,"loadMap",_super); var _proto = loadMap.prototype; _proto.init = function()...
来源: Laya_社区 发布时间: 20170605
...出了一个lh文件,打算复用。 var shelf0 = Laya.Sprite3D.load("DoorShelf/shelf.lh"); this.scene.addChild(shelf0); shelf0.transform.translate(new Laya.Vector3(-4,1.2,35)); var shelf3 = Laya.Sprite3D.load("DoorShe...
来源: Laya_社区 发布时间: 20180301
...戏初始化后,建立自己的层级管理类, 比如: var UILayer:Sprite = new Sprite(); Laya.stage.addChild(UILayer); var dialogLayer:Sprite = new Sprite(); Laya.stage.addChild(dialogLayer); dialogLayer.addChild(Dialog.manager); 这样Dialog.manager的层级就会一直在UILayer层级上...
来源: Laya_社区 发布时间: 20170113
...行代码注释掉就正常了. function createImg(){ var img = new Laya.Sprite(); var r = Math.random(); var s = r > 0.66 ? "img/flower1.jpg" : r > 0.33 ? "img/flower2.png" : "img/flower3.jpg" img.loadImage(s); img.on(Laya.Event.CLICK, this, () => { img.y -= 10; }) img.pos(100, 300) Laya.s...
来源: Laya_社区 发布时间: 20180412
...: boolean = false Inherited from Text._ownGraphics Defined in laya/display/Sprite.ts:252 _scene _scene: Node Inherited from Node._scene Defined in laya/display/Node.ts:641 _scene3D _scene3D: any Inherited from Scene._scene3D Defined in laya/display/Scene.ts:28 _skinBaseUrl _skinBaseUrl: string Inher...
来源: Laya3.0_api 发布时间: 20231115
...ot后,精灵位置显示位置不正确 我的版本是1.7.14,设置了sprite的pivot和pos,结果位置不正确 // 程序入口 class GameMain { private sp: Laya.Sprite; constructor() { Laya.init(2000, 1500); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" this.sp = new Laya.Sprite();...
来源: Laya_社区 发布时间: 20171230
...个圆形,示例代码如下: ```javascript (function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; (function() { //初始化舞台 Laya.init(500, 300); drawSomething(); })(); ...
来源: Laya2.0_文档 发布时间: 20210715