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

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

21. 最新版本 1.7.5 beta fontClip [ 86%]

...        this.graphics.drawTexture(te, i * te.width, 0, te.width, te.height);                     } else {                         this.graphics.drawTexture(te, this.width - ((splitArr.length - i) * te.width), 0, te.width, te.height);                ...

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

22. 动画实例在调用含有名字参数的时候获取不到边界 [ 85%]

...t[i].getGraphicBounds(); this.playerUnit[i].pivot(bounds.width / 2, bounds.height / 2); this.playerUnit[i].scaleX=300/bounds.width; this.playerUnit[i].scaleY = 300/bounds.height; this.playerUnit[i].pos(200,400); Laya.stage.addChild(this.playerUnit[i]); } this.playerUnitReady+=1; } enemyUnitLoaded(){...

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

23. 动画不显示 [ 83%]

...               m_Role.pos((Laya.stage.width - 27)/2,(Laya.stage.height - 75)/2);             }             else{                 m_Role.pos((Laya.stage.width - 14)/2 + 15,(Laya.stage.height - 75)/2);             }             m_mapLayer.pos(...

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

24. Laya引擎bug [ 82%]

...this._currBitmapFont.getMaxWidth();             this._charSize.height=this._currBitmapFont.getMaxHeight();             }else {             var measureResult=Browser.context.measureText(Text._testWord);             this._charSize.width=measureResult.wid...

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

25. 其他引擎的Demo-Example_05 [ 82%]

...// 不支持WebGL时自动切换至Canvas Laya.init(Browser.width, Browser.height, WebGL); Stat.show(); Laya.stage.scaleMode = Stage.SCALE_FULL; setup(); })(); function setup() { Laya.stage.on(Event.RESIZE, this, onResize); makeObject(0); for (var i = 0; i objs) { current = 0; } makeObject(current);...

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

26. 其他引擎的Demo-Example_05 [ 82%]

...// 不支持WebGL时自动切换至Canvas Laya.init(Browser.width, Browser.height, WebGL); Stat.show(); Laya.stage.scaleMode = Stage.SCALE_FULL; setup(); })(); function setup() { Laya.stage.on(Event.RESIZE, this, onResize); makeObject(0); for (var i = 0; i objs) { current = 0; } makeObject(current);...

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

27. 关于Button Skin 切图问题 [ 82%]

...rt os import math from PIL import Image  # if png pngs=[] maxWith = 0 maxHeight = 0 for idx in range(1,4): fname = os.path.join( os.path.curdir, "btn_{0}.png".format(idx)) if os.path.exists( fname) : im=Image.open( fname) pngs.append( im) maxWith = max( maxWith, im.width) maxHeight = max( maxHeigh...

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

28. 计时器-延迟调用 [ 82%]

...WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; demonstrate(); })(); function demonstrate() { for (va...

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

29. Sprite-缓存为静态图像 [ 82%]

....x = Math.random() * Laya.stage.width; text.y = Math.random() * Laya.stage.height; textBox.addChild(text); } //缓存为静态图像 textBox.cacheAsBitmap = true; Laya.stage.addChild(textBox); } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Text = Laya.Text; impor...

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

30. getimagedata直接调用无法获取有效像素问题 [ 81%]

...ure的 getpixels 得到有效数据。__proto.getPixels=function(x,y,width,height){ if (Render.isWebGL){ return RunDriver.getTexturePixels(this,x,y,width,height); }else { Browser.canvas.size(width,height); Browser.canvas.clear(); Browser.context.drawTexture(this,-x,-y,this.width,this.height,0,0); va...

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