大约有 284 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0087 秒)
...rite: Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("myComp/loading_01.png"); //将遮罩设置给sprite sprite.mask = mask; } 如图所示,白色背景是遮罩的颜色,透明的是IDE中创建的。 附件 : --> 2021-10-02 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20211002
...撞无法触发OnTriggerEnter、OnTriggerStay、OnTriggerExit的bug image loadimage 加载网络图片BUG 问题状态 最新活动: 2017-11-06 12:03 浏览: 695 关注: 2 人 rabee • 2017-11-06 12:05 我控件有设置top,left了,但是他没把微信top栏算进去,这样就错误了啊 rabe...
来源: Laya_社区 发布时间: 20171106
...="#444"; var sprite=new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("img/bg.jpg"); } start(); 附件 : --> test-low-frame.zip 2020-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 layabox 赞...
来源: Laya_社区 发布时间: 20200507
...充满屏幕,代码如下: var bgSprite = new Laya.Sprite(); bgSprite.loadImage("war/background.png"); bgSprite.scaleX = Laya.stage.width / 480; bgSprite.scaleY = Laya.stage.height / 852; Laya.stage.addChild(bgSprite); 在安卓和其他的ios设备上都正常,但是在iphone xr上就遇...
来源: Laya_社区 发布时间: 20190525
... 1, 0, 0, 0, 0]; //A var balloon = this.balloon = new Laya.Sprite; balloon.loadImage(RES.balloon); balloon.pos(540,70); balloon.filters = [new Laya.ColorFilter(redMat)]; Laya.stage.addChild(balloon); 附件 : --> 2016-05-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20160525
...线绘制bug 自从layaflash起,就一直存在的bug 2.0iDE bug image loadimage 加载网络图片BUG 微信6.7.2版本3D显示BUG clearTextureRes无法恢复(另文本纹理释放有bug,经常出现文本渲染混乱) 问题状态 最新活动: 2018-07-13 18:37 浏览: 881 关注: 3 人 ...
来源: Laya_社区 发布时间: 20180622
...个蓝色方块,不被抠图 gameContainer = new Sprite(); gameContainer.loadImage("crazy_snowball.png", 0, 0, 600, 400); addChild(gameContainer); // 引导所在容器 guideContainer = new Sprite(); // 设置容器为画布缓存 guideContainer.cacheAs = "bitmap"; addChild(guideContainer); //绘...
来源: Laya_社区 发布时间: 20170315
...ction createCharacter(skin) { var character = new Laya.Sprite(); character.loadImage(skin, 0, 0, 200, 200, Laya.Handler.create(this, function () {console.log('KO!~'); })); character.graphics.drawLine(0, 200, 200, 0, "#ff0000", 1); character.graphics.drawLine(0, 0, 200, 200, "#ff0000", 1); character....
来源: Laya_社区 发布时间: 20170828
...e); } function showProgress() { progressBar=new Laya.Sprite(); progressBar.loadImage("comp/BG1.jpg",50,300); progressBar.width=300; progressBar.sizeGrid="5,5,5,5"; progressBar.changeHandler=new Handler(this,onChange); //当progressBar的value值改变时触发 Laya.stage.addChild(progressBar); oncha...
来源: Laya_社区 发布时间: 20170701
... = "none";//背景透明 var gameContainer = new Sprite(); gameContainer.loadImage("gameres/extend/micro/bg.png"); var mask = new Sprite(); mask.alpha = 0.3; mask.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, "#000000"); mask.on(Laya.Event.CLICK,this,chick); function chick(){ m...
来源: Laya_社区 发布时间: 20200603