大约有 494 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)
Laya_社区(287) Laya3.0_api(63) Laya2.0_api(58) laya_api(54) Laya2.0_示例(14) Laya2.0_文档(8) Laya_示例(7) Laya3.0_文档(3)
...onkey2.png"], Handler.create(this, this.onAssetLoaded2)); } onAssetLoaded1(texture) { // 使用texture } onAssetLoaded2() { const Loader = Laya.Loader; let pic1 = Loader.getRes("res/apes/monkey0.png"); let pic2 = Loader.getRes("res/apes/monkey1.png"); let pic3 = Loader.getRes("res/apes/monkey2.png")...
来源: Laya2.0_示例 发布时间: 20241118
可以通过base64构造Texture对象吗? 事实上我想做的事情是我得到了一张base64的图片,现在我需要提取出其中的一个部分,比如从x:100,y:100开始,截取宽100,高100的一张图。请教一下如何实现! 感恩!!! 2017-11-03 添加评论 免费...
来源: Laya_社区 发布时间: 20171103
微信真机下游戏MAX_TEXTURE_SIZE 在微信模拟器里运行一切正常。 在苹果手机上,第一个场景正常,跳转场景以后开始报info.屏幕是黑的。fps信息可以正常显示。 用安卓机测试,没有遇到同样的问题。一切正常。 [wxgl]Warning: Image [...
来源: Laya_社区 发布时间: 20180523
...graphics绘制的图像位置偏移 let sprite: Sprite = new Sprite(); let texture: Laya.Texture = Laya.loader.getRes(this.skin_img1); sprite.graphics.drawTexture(texture, 0, 0, texture.width, texture.height); sprite.size(texture.width, texture.height); let x: number = 300; let y: number = 100; let ...
来源: Laya_社区 发布时间: 20170821
native 获取Texture上的某个区域的像素点 getPixels中有报错 代码如下: let tex: Laya.Texture = new Laya.Texture(); tex.load("res/img/108879.png",Laya.Handler.create(this,function(): void{ tex.getPixels(0,0,1,1); ...
来源: Laya_社区 发布时间: 20190625
Texture的getPixels()在Android下调用提示is not a function layaAir调试 和 chrome调试 和 android下的字偏移都不一样。社区里一些帖子的回复是自己去做偏移调整。我尝试把fontSize从20~200的label,画到texture,然后去得到第一个像素值不为0...
来源: Laya_社区 发布时间: 20190508
...tage; import Event = Laya.Event; import Rectangle = Laya.Rectangle; import Texture = Laya.Texture; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class Interaction_Drag { private ApePath: string = "../laya/monkey2.png"; private ape: Sprite; private dr...
来源: Laya_社区 发布时间: 20171106
... laya.display.Stage; import laya.filters.ColorFilter; import laya.resource.Texture; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { private const ApePath:String = "res/img/monkey1.png"; private var apeTexture:Texture; public function Main() { // 不...
来源: Laya2.0_文档 发布时间: 20210715
sprite添加texture后,sprite无法触发点击事件? this.item.graphics.drawTexture(Laya.loader.getRes(IMG_RES[this.name])); Laya.stage.addChild(this.item); this.item.on(Laya.Event.CLICK, this, () => { this.item.destroy(); }); 2017-08-26 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170826
...载失败 Laya.loader.on(Event.ERROR, this, this.onError); } onAssetLoaded(texture) { // 使用texture console.log("加载结束"); } // 加载进度侦听器 onLoading(progress) { console.log("加载进度: " + progress); } onError(err) { console.log("加载失败: " + err); } } new Loader_Progress...
来源: Laya2.0_示例 发布时间: 20241118