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

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

101. laya2.0 截图功能分享,直接截取屏幕上所有对象 [ 84%]

...全部截取下载,测试小游戏正常可用 private static _sp: Laya.Sprite = null; private static tempTexture2D: Laya.Texture2D; private static tempTexture: Laya.Texture; /**截图 */ public static drawScreenshot(width, height, x, y) { if (!SwitchHelper.screenDraw) { return null; }  if (!this...

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

102. Sprite中的width,height和size(width,height)感觉没作用啊 [ 84%]

Sprite中的width,height和size(width,height)感觉没作用啊 我的图片是800*600,懒得修改图片,想在程序中直接修改图片显示大小,可是貌似显示的还是800*600。width,height,size(width,height)是我理解问题,还是我写错了呢。。。。 ...

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

103. 3D+2D场景截屏,在不同浏览器显示效果不一致 [ 84%]

...s = Laya.Browser.document.getElementById("layaCanvas"); var spi = new Laya.Sprite(); var spi1 = new Laya.Sprite(); var spi2 = new Laya.Sprite(); this.tempTexture2D.loadImageSource(cans, true); spi.texture = spi1.texture = spi2.texture = this.tempTexture; //创建模糊滤镜实例 var blurFilter = n...

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

104. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 84%]

...要知道。 1. 使用getBounds/ getGraphicBounds。 ```javascript var sp:Sprite = new Sprite(); sp.graphics.drawRect(0, 0, 100, 100, "#FF0000"); var bounds:Rectangle  = sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` ​ getBounds可以满足多数多数需求,但由于其需要计...

来源: Laya2.0_文档 发布时间: 20210715

105. 在开启webgl模式下,每次运行texture类的getPixels方法内存都会增加 [ 84%]

...加 我使用的版本是1.7.12 测试代码如下:module Main { import Sprite = Laya.Sprite import Texture = Laya.Texture import Handler = Laya.Handler export class MaskDemo { private Res: string; private img: Laya.Image; constructor() { //Laya.init(400, 640, Laya.WebGL); //设置舞台背景色 ...

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

106. 发布ios,sprite无法设置宽高 [ 84%]

发布ios,sprite无法设置宽高 在浏览器上可以运行,但是发布到ios端,场景无法显示,并且在其他项目中,new一个Sprite或者Image的时候,不能设置宽高,只能scale,这个demo只有一个场景,一张图片,但是在app上,黑屏,什么都没...

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

107. 请问物理引擎为什么设置body的透明度无效 [ 84%]

...上应该是透明度,但是设置无效? 2 在body的render属性下有个sprite有个texture是设置纹理,但是在初始化后无法重置为其他图片纹理? 2018-06-11 添加评论 已悬赏5元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...

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

108. laya2.3图集含空白裁切后,锚点旋转bug,demo重现 [ 84%]

...ya.Texture = Laya.loader.getRes("test2.png");         var sp3:Laya.Sprite = new Laya.Sprite();         sp3.texture = Laya.Texture.create(tx3,0,0,315,315,134,134,582,582);          sp3.pivot(315/2,315/2);//锚点使用实际裁切后的中心反而是对的,这按理是bug...

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

109. 在父sprite中添加子sprite ,移动父Spritesprite为什么不动? [ 84%]

在父sprite中添加子sprite ,移动父Spritesprite为什么不动? (function(){ // 配置数据 var data = configJSON; // 目标等级 var target = { "tower":{"level":1}, "aeroboat":{"level":1}, "mountain":{"level":1}, "statue":{"level":1}, "angel":{"level":1} }; var towerLel = target.to...

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

110. BlurFilter的strength属性设置到5以上就没效果了 [ 83%]

...更模糊的效果?   public static function getScreenshot(bl:int=15):Sprite{    var htmlC:HTMLCanvas =_self.drawToCanvas(1334,750,0,0);    var _texture:Texture = new Texture(htmlC);    var sp2:Sprite = new Sprite();    sp2.graphics.drawTexture(_texture,0,0,1334,750);    var blurFi...

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