大约有 2,771 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0069 秒)
Laya_社区(2231) Laya2.0_示例(116) Laya_示例(97) Laya3.0_api(93) Laya2.0_api(79) laya_api(68) Laya2.0_文档(68) Laya3.0_文档(19)
...V = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; createMap(); })(); function createMap() { tiledMap = new TiledMap(); tiledMap.createMap("../../res/tiledMap/orthogonal-test-movelayer.json", new Rectangle(0, 0,...
来源: Laya_示例 发布时间: 20241124
...Laya.stage.alignH = "left"; Laya.stage.screenMode = "vertical"; Laya.stage.scaleMode = Stage.SCALE_FULL; spr = new Sprite var te:Text = new Text(); te.fontSize = 50; te.text = "内容测试"; spr.addChild(te); Laya.stage.addChild(spr); Laya.stage.on(Event.CLICK, this, function():void { if (Laya.stag...
来源: Laya_社区 发布时间: 20170801
...ndifined 对一张图片设置width=0 之后获取width为1e-7 设置适配SCALE_FIXED_WIDTH,结果少部分andriod机型不能正确适配屏幕 SCALE_FIXED_WIDTH适配屏幕的问题 我打印laya.stage时看到有个_width 但是我打印laya.stage._width 得到值和之前看到的不一样 SC...
来源: Laya_社区 发布时间: 20161227
...once(700, this, this.FlashTween); } private FlashTween ():void { this.hand.scale(2, 2); this.hand.alpha = 1 Tween.to(this.hand, {scaleX:1, scaleY:1, alpha:1}, 300, null, Laya.Handler.create(this, this.DoFlash)); } 循环Tween 缩放一个图片, 从scale=2 缩小到scale=1但是在VIVO手机上看...
来源: Laya_社区 发布时间: 20211109
...V = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createMap(); } createMap() { const TiledMap = Laya.TiledMap; let tiledMap = new TiledMap(); tiledMap.createMap("res/tiledMap/orthogonal-test-movelayer.json...
来源: Laya2.0_示例 发布时间: 20241124
关于适配有点疑惑 在http://layaair.ldc.layabox.com/demo/?SmartScale_Scale_SHOW_ALL 这个demo中,我修改js代码测试几种适配模式,有一些困惑 我分别用noscale, fixedwidth, fixedheight进行试验, 代码如下:var rect; (function() { Laya.init(550, 400); // Laya.s...
来源: Laya_社区 发布时间: 20170206
...V = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#ffffff"; Stat.show(); this.startFun(); } startFun() { const Templet = Laya.Templet, Event = Laya.Event; const mAniPath = "res/spine/spineRes1/dragon.sk"; mFactory = new ...
来源: Laya2.0_示例 发布时间: 20241124
...ColumnsGrid numColumnsTile numRowsGrid numRowsTile orientation renderOrder scale tileHeight tileWidth width x y Methods changeViewPort changeViewPortBySize createMap destroy getLayerByIndex getLayerByName getLayerObject getMapProperties getSprite getTexture getTileProperties getTileUserData mapSprit...
来源: Laya3.0_api 发布时间: 20231115
...port: <meta name='viewport' content='width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no' /> 第二步、使用 <meta name="viewport" content="user-scalable=no,target-densitydpi=device-dpi" />此句话替换,然后重新编译,运行。模...
来源: Laya_社区 发布时间: 20151223
...100,100) ani.setBounds(rec) var bounds = ani.getGraphicBounds(); ani.scale(100/bounds.width,100/bounds.height) 我想把动画宽高都设置成100 100 可是这2种方法都不能实现 该怎么去实现 2017-06-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20170629