大约有 374 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)
RopeJoint代码动态创建 无法设置otherbody等属性 var img:Sprite = new Sprite(); //加载显示图片,坐标位于100,50 img.loadImage("res/layabox.png"); img.x=(Laya.stage.width-256)/2; //添加到舞台 Laya.stage.addChild(img); var img2:Sprite = new Sprite(); //加载显示图片,...
来源: Laya_社区 发布时间: 20200217
...无法绑定不同的事件? Laya.init(400, 400, laya.webgl.WebGL); var img1 = new Laya.Sprite(); img1.loadImage('https://layaair.ldc.layabox.com/demo/h5/res/apes/monkey2.png',100,100,90,90); Laya.stage.addChild(img1); img1.on(Laya.Event.CLICK,this, function(name){ console.log(name);},['图1']); v...
来源: Laya_社区 发布时间: 20180621
...tance; } private init() { } private skins: Array<string>; private mapImg:Laya.Image; private constructor() { } public GetMap():Laya.Image { if(this.mapImg==null) { this.mapImg=new Laya.Image(); } return this.mapImg; } public LoadMapResource() { this.skins=[ "res/img/map/1.jpg", "res/img/map/2....
来源: Laya_社区 发布时间: 20171124
laya图片路径问题 var urls = [ "/public/test/img/food/f1.png", "/public/test/img/food/f2.png", "/public/test/img/food/f3.png", "/public/test/img/food/f4.png", "/public/test/img/food/f5.png", "/public/test/img/food/f6.png", "/public/test/img/food/f7.png", "/public/test/img/food/f8.png", "/publi...
来源: Laya_社区 发布时间: 20170718
...设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //原始位图 createImg(200,50); //红色滤镜 creteRedFilter(); //创建发光滤镜位图**/ createGlowFilter(); //创建阴影滤镜位图 createShadeFilter(); //创建糊滤滤镜位图 createBlurFilter(); /**创建位图方...
来源: Laya_社区 发布时间: 20170811
htmlDiv中img图片大小问题 // 程序入口 class GameMain{ constructor() { Laya.init(600,400); let htmlDiv = new Laya.HTMLDivElement(); let imgUrl = 'images/kb-emoji-U+E056.png'; // origin width/height: 64/64px; //let imgStr = `<img src="${imgUrl}" width="30" height="30"></img>`; l...
来源: Laya_社区 发布时间: 20170511
...tends(Class, Laya.Sprite); function Class() { Laya.Sprite.call(this); this.img = []; this.init(); } Class.prototype.init = function() { Laya.stage.addChild(this); this.bg(); Laya.timer.frameLoop(1, this, this.loop); }; Class.prototype.bg = function() { for (var i = 0; i < 2; i++) { this.img[i] = ...
来源: Laya_社区 发布时间: 20170619
...--------------- updateItem(cell:Item,index:number){ var img1 = cell.getChildByName("img1") as Laya.Image; var img2 = cell.getChildByName("img2") as Laya.Image; img1.on("click",this,this.onRefresh,[index]) //当索引相同时 BOX 高...
来源: Laya_社区 发布时间: 20190522
我就问一下一个遮罩的问题 const img:Laya.Image = new Laya.Image() img.skin = 'xxxx' // 图片url路径 this.addChild(img) const imgMask:Laya.Sprite = new Laya.Sprite() img.mask = imgMask 我就问一下,这个时候img是能显示还是不能显示? 答案是,如果Laya.init...
来源: Laya_社区 发布时间: 20190328
...ze设置后,精灵不能点击. 这两个函数基本上是一样的,但是img是可以点击,f不能点击.但是吧size那行代码注释掉就正常了. function createImg(){ var img = new Laya.Sprite(); var r = Math.random(); var s = r > 0.66 ? "img/flower1.jpg" : r > 0.33 ? "img/flower2.p...
来源: Laya_社区 发布时间: 20180412