大约有 249 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
...:Boolean 检测指定事件类型是否是鼠标事件。 EventDispatcher loadImage(url:String, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, complete:Handler = null):Sprite 加载并显示一个图片。功能等同于graphics.loadImage方法。支持异步加载。 注意:多...
来源: laya_api 发布时间: 20170929
...ILetterBox(letter, width) { UILetterBox.super(this); letter = letter; this.loadImage('res/jiezou/wenzi2.png'); Laya.loader.load("res/parts/qipao.part", Handler.create(this, onAssetsLoaded), null, Loader.JSON); } function onAssetsLoaded(settings) { settings.colorComponentInter = true; sp = new Partic...
来源: Laya_社区 发布时间: 20161230
... EventDispatcher load(url:String):void 加载粒子文件 Particle2D loadImage(url:String, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, complete:Handler = null):Sprite 加载并显示一个图片。功能等同于graphics.loadImage方法。支持异步加载。 注意:多...
来源: laya_api 发布时间: 20170929
...rite: Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("myComp/loading_01.png"); //将遮罩设置给sprite sprite.mask = mask; } 如图所示,一个正常,一个显示白色背景,不知道是不是bug。 附件 : --> 2021-10-02 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20211002
...,用于观察Curmem变化 //添加被截屏对象 sp= new Sprite(); sp.loadImage("bg2.png"); Laya.stage.addChild(sp); //创建DrawToCanvas命令按钮 var btnDraw:Sprite=CreateBtn(100,400); btnDraw.on(Event.CLICK,this,onClickBtnDraw); } //创建按钮 private function CreateBtn(xx:int,yy:int):Spri...
来源: Laya_社区 发布时间: 20170822
...egion(); } private createApe(): void { this.ape = new Sprite(); //this.ape.loadImage(this.ApePath); Laya.stage.addChild(this.ape); //这里是我注释掉的代码 //var texture: Texture = Laya.loader.getRes(this.ApePath); //this.ape.pivot(texture.width / 2, texture.height / 2); this.ape.x = Laya.st...
来源: Laya_社区 发布时间: 20171106
...:Boolean 检测指定事件类型是否是鼠标事件。 EventDispatcher loadImage(url:String, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, complete:Handler = null):Sprite 加载并显示一个图片。功能等同于graphics.loadImage方法。支持异步加载。 注意:多...
来源: laya_api 发布时间: 20170929
...的,比如代码 var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); ape.pos(400,400); var sprite2 = new laya.display.Sprite(); sprite2.graphics.drawRect(0,0,50,50,"#fff9900"); ape.mask = sprite2; 你可以看下效果 2017-12-21 0 1 分享 微博 Q...
来源: Laya_社区 发布时间: 20171221
... sp = new Sprite(); sp.loadImage('./../img/psh_freq.png'); sp.pos(500, 400); sp.on("mousedown", this, callback); Laya.stage.addChild(sp); ...
来源: Laya_社区 发布时间: 20161128
...n HtmlDemo() { Laya.init(800, 480,WebGL); Stat.show(); sp=new Sprite(); sp.loadImage("background.jpg"); Laya.stage.addChild(sp); Laya.stage.on(Event.CLICK,this,onClick); function onClick():void { // TODO Auto Generated method stub Laya.stage.off(Event.CLICK,this,onClick); Laya.stage.removeChild(sp);...
来源: Laya_社区 发布时间: 20160905