• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,852 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)

221. 引擎 TiledMap 居然不支持图块翻转 [ 85%]

...                if (this.x < 0 || this.x > this._map.viewPortWidth || this.y < 0 || this.y > this._map.viewPortHeight) {                     this.hide();                 }                 else {                     this.show();           ...

来源: Laya_社区 发布时间: 20220627

222. image的uv动画不能平铺 [ 85%]

..._bitmap.source.uv; var uv:any[] = []; uv[0] = ss[0] + 2/this.testScrollImg.width; uv[1] = ss[1]; uv[2] = ss[2] + 2/this.testScrollImg.width; uv[3] = ss[3]; uv[4] = ss[4] + 2/this.testScrollImg.width; uv[5] = ss[5]; uv[6] = ss[6] + 2/this.testScrollImg.width; uv[7] = ss[7]; this.testScrollImg._bitmap...

来源: Laya_社区 发布时间: 20180321

223. 龙骨skeleton鼠标点击区域的设置 [ 85%]

...置龙骨动画的点击区域 首先通过getBounds获取龙骨动画的width和height(可以通过延迟timer来获取) 然后这是龙骨的hitArea(-width,-height,width,height) 参考示例: mArmature = mFactory.buildArmature(1); mArmature.play(0,true); Laya.stage.addChild(mArmatu...

来源: Laya_社区 发布时间: 20161122

224. 移动端横竖屏适配(类似锁屏效果)? [ 85%]

...ts.Event; import laya.utils.Browser; public class ShiPei { private var fillWidth:Number=Browser.width; private var fillHeight:Number=Browser.height; public function ShiPei() { //设置初始化 Laya.init(fillWidth,fillHeight); //设置横屏显示 Laya.stage.screenMode="horizontal"; //默认触发...

来源: Laya_社区 发布时间: 20160718

225. 这种进度条怎么实现? [ 85%]

...ult class Test extends Sprite{ public DEF_SIZE: number = 200 public CIRCLE_WIDTH: number = 20 public $circleSprite: Sprite = new Sprite() public startY: number = -90 constructor() { super() this._init() } private _init() { this.cacheAs = "bitmap" this.size(this.DEF_SIZE,this.DEF_SIZE) this.pos(200,2...

来源: Laya_社区 发布时间: 20180123

226. Sprite-轴心点 [ 85%]

...tion() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; createApes(); })(); function createApes() ...

来源: Laya_示例 发布时间: 20241117

227. dialog的lock属性没出现 [ 85%]

...rt laya.webgl.WebGL; public class DialogCenterClose { private const DIALOG_WIDTH:int = 220; private const DIALOG_HEIGHT:int = 275; private const CLOSE_BTN_WIDTH:int = 43; private const CLOSE_BTN_PADDING:int = 5; private var assets:Array; public function DialogCenterClose() { // 不支持WebGL时自...

来源: Laya_社区 发布时间: 20170706

228. Uint8Array的像素数据在ios中无法改变图片纹理,安卓正常 [ 85%]

...testSetPixels() { let data = this.test1.texture.getPixels(0, 0, this.test1.width, this.test1.height); let width = this.test1.width; let height = data.length / 4 / width; let tex2d = new Laya.Texture2D(width, height, 1); tex2d.setPixels(data); this.imgAr.texture.setTo(tex2d); } 附件 : --> demo.zip ...

来源: Laya_社区 发布时间: 20210114

229. 位图字体的排版与注册点问题 [ 85%]

...然后想将其注册点设为文本中心,这样写,text.pivotX=text.width>>1; text.pivotY=text.height>>1; 然后将文本置于屏幕中心,理论上应该文本框居中 但结果是这样   附件 : --> 2016-06-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

来源: Laya_社区 发布时间: 20160617

230. 骨骼动画-适配版Spine [ 85%]

...aniPath = "res/bone/spineboy-pma.skel"; this.index = -1; Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.scaleMode = Stage.SCALE_NOSCALE; Laya.stage.bgColor = "#232628"; Stat.show(); this.startFun(); } startFun() { this.templet = new SpineTemplet(Laya.SpineVersion.v3_8); this.templet.loa...

来源: Laya2.0_示例 发布时间: 20241117