大约有 258 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
...abel = new Laya.Label("test"); te.fontSize = 200; te.color = "#000000"; te.bgColor = "#d90f0b"; jm.albedoTexture = te.size(500, 500).drawToCanvas(500, 500, 0, 0).getTexture() 附件 : --> 2019-07-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...
来源: Laya_社区 发布时间: 20190724
...el'); contentText.text = value; contentText.color = '#fff'; // contentText.bgColor = '#141111'; contentText.padding = '0,20,0,20'; contentText.leading = '6'; contentText.fontSize = fontSize+2; contentText.valign = 'middle'; contentText.height = 0; contentText.wordWrap = true; contentText.width = par...
来源: Laya_社区 发布时间: 20180305
...{ Laya.init(800, 500, WebGL); Laya.stage.bgColor = "#ffffff"; console.log(Laya.Render._mainCanvas); Laya.Render._mainCanvas.source.style.top = "50px"; this.setup(); const parent = document.getElementById("preview"); ...
来源: Laya_社区 发布时间: 20201130
... Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#336699"; showApe(); } private function showApe():void { var t:Text = new Text(); t.text = "asdfasd"; ...
来源: Laya_社区 发布时间: 20170406
... 示例:public function Main() { Laya.init(1240,800,WebGL); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load([{url:"res/atlas/comp.json",type:Loader.ATLAS},{url:"bg2.png"}],Handler.create(this,onCom)); } private function onCom():void { var img:Image=new Image(); img.skin="bg2.png"; panel=new Panel()...
来源: Laya_社区 发布时间: 20161103
...n HelloLaya() { Laya.init(Browser.width, Browser.height,WebGL); Laya.stage.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,300,"#000fff"); Laya.stage.addChild(sp); sp.size(200,300); sp.pivot(sp.width/2,sp.height/2); sp.pos(200,200); Laya.timer.frameLoop(1,this,onLoopRotat...
来源: Laya_社区 发布时间: 20170830
...14 15:50 public function LateTest() { Laya.init(400,400,WebGL); Laya.stage.bgColor = "#ff0000"; // trace(Laya.timer.toString()); // Laya.timer.callLater(this,onLater); // trace(Laya.timer.toString()); var assets:Array = []; assets.push({url:[ "fish_6.png" ],type:Loader.IMAGE}); L...
来源: Laya_社区 发布时间: 20180314
...(2)this.camera.clearColor = new Vector4(0, 0, 0, 0); (3)Laya.stage.bgColor = null; 第一句,是让Canvas的WebGL上下文支持透明。 第二句,是在draw渲染时清除的颜色和透明。 第三句,是把Canvas的style背景色清除。 --------------------- 作者:sjt223857...
来源: Laya_社区 发布时间: 20181030
...给circle设置点击区域试下、 Laya.init(600, 300,WebGL); Laya.stage.bgColor="white"; var drawCir:Sprite=new Sprite(); //方法1,在drawCircle中改变纹理位置 //drawCir.graphics.drawCircle(50,50,50,"#eeffcc"); //方法2、hitArea drawCir.graphics.drawCircle(0,0,50,"#eeffcc"); drawCir.hi...
来源: Laya_社区 发布时间: 20170905
...tage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; Laya.stage.bgColor = "#ffffff";我暂时就是上面这么干的 让高度多一些满足iphoneX 这样点击区域就没 问题了,而且用fiexed宽度来做适配 也比较方便 2018-07-18 添加评论 免费帖 --> 分享 微博 ...
来源: Laya_社区 发布时间: 20180718