大约有 821 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(448) Laya3.0_api(77) laya_api(70) Laya2.0_api(64) Laya2.0_文档(50) Laya2.0_示例(39) Laya_示例(37) Laya3.0_文档(36)
... img.graphics.drawTexture(txture); img.size(txture.width,txture.height); } } } 运行后在 LayaSample.max.js 692行提示异常if (!tex.loaded){ tex.once("loaded",this,this._textureLoaded,[tex,args]); 编辑了好几次...
来源: Laya_社区 发布时间: 20170918
...可以另外建一个圆形比如 var mapMask = new Laya.Sprite(); mapMask.size(100,100); mapMask.pos(50,50); mapMask.graphics.drawCircle(0, 0, 50, "#000000") 我这么获得mapMask的matrix,然后放进graphics.drawTexture中呢? 不要说直接用mask,因为微信小游戏不支持,谢谢 ...
来源: Laya_社区 发布时间: 20181125
... Projection 投射。Perspective 透视投影,Orthography正交投影。 Size 大小。当设置了正交摄影机时的视口大小。 Field of View 视野范围。相机的视角宽度,以及纵向的角度尺寸。 Clipping Planes 裁剪平面。从摄影机到开始渲染和停止渲染的...
来源: Laya2.0_文档 发布时间: 20210714
...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; this.txt.size(200,100); //这里没看出来是什么意思 this.txt.x=Laya.stage.width-this.txt.width>>1; this.txt.y=Laya.stage.height-this.txt.height>>1; this.txt.borderColor="#ffff00"; this...
来源: Laya_社区 发布时间: 20170810
....Panel; constructor() { super(); this.panel = new Laya.Panel(); this.panel.size(720, 1136); this.panel.vScrollBarSkin = "comp/vscroll.png"; Laya.stage.addChild(this.panel); var img:Laya.Image = new Laya.Image(); img.skin = "res/GameBG2.jpg" this.panel.addChild(img) var img1:Laya.Image = new Laya.Ima...
来源: Laya_社区 发布时间: 20180529
...程序中如果用sprite对ape进行添加显示,请务必为sprite设置size或hitArea 【此效果,如果单纯的用sprite去创建,由于image本身包含空白区域,所以鼠标响应的区域是个Rectangle(含透明区),并非单纯的肉眼可视的显示区域,这就会出...
来源: Laya_社区 发布时间: 20161115
...t h = canvasInfo.h//tex.height; let w = tex.width; let h = tex.height; ctx.size(w,h); ctx.asBitmap = true; // ctx.clearRect(0,0,w,h); let _targets= ctx['_targets']; _targets.start(); ctx.clear(); this.drawTex(ctx,this.bUrl,x,0); // this.drawTex(ctx,this.cUrl,x,0); ctx.flush(); _targets.end(); _targe...
来源: Laya_社区 发布时间: 20230328
...商,面向AS/JS/TS开发者提供HTML5开发技术方案!\n" ;this.txt.size(200,100);this.txt.borderColor = "#ffff00";this.txt.fontSize = 20;this.txt.color = "#ffffff";Laya.stage.addChild(this.txt);this.txt.on(Laya.Event.MOUSE_DOWN,this,startScrollText);}/*开始滚动文本*/function startScrol...
来源: Laya_社区 发布时间: 20180125
... class[MiniAdpter] already exist: Object {init: } ShaderCompile use time:7 size:1426/6889 GradientDataNumber warning:the forth key is be force set to 1. GradientDataNumber warning:data count must lessEqual than 4 GradientDataNumber warning:the forth key is be force set to 1. GradientDataNumber warni...
来源: Laya_社区 发布时间: 20190301
...Button(label) { var w = 110; var h = 40; var button = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } function onPlayMusic(e) { console.log("...
来源: Laya_社区 发布时间: 20170527