• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 258 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)

171. 在开启webgl模式下,每次运行texture类的getPixels方法内存都会增加 [ 51%]

...() { //Laya.init(400, 640, Laya.WebGL); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" Laya.Stat.show() //资源路径 this.Res = "test.png"; this.img = new Laya.Image(); this.img.pos(200, 200) //获取图片资源,绘制到画布 this.img.skin = this.Res //添加到舞台 Laya.stage.addCh...

来源: Laya_社区 发布时间: 20171211

172. mac平台1.7.20.2beta版本下compileTargets设置不生效 [ 51%]

...显示起点位置X,Y txt.pos(60, 100); //设置舞台背景色 Laya.stage.bgColor = '#23238E'; //将文本内容添加到舞台 Laya.stage.addChild(txt); } } }  2. 修改.as3proj文件相应标签如下 <compileTargets> <compile path="src\HelloWorld.as" /> </compileTargets> 3. ...

来源: Laya_社区 发布时间: 20180914

173. 请问老师为什么我按照官网的实例播放音频没反应呢? [ 51%]

....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; setup(); })(); function setup() { var gap = 10; //创建一个Sprite充当音效播放按钮 var soundButton = createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width * 2 + gap...

来源: Laya_社区 发布时间: 20170527

174. 使用laya官方示例代码制作微信小游戏无法显示 [ 51%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { this.createLabel("#FFFFFF", null).pos(30, 50); this.createLabel("#00FFFF", null).pos(290, 50); this.createLabel("#FFFF00", "#FFFFFF").pos(30, 100); this.createLabel...

来源: Laya_社区 发布时间: 20180529

175. 如何用代码控制panel的vscroll滚动幅度 [ 51%]

...yaAirDemo { public function LayaAirDemo() { Laya.init(600,600); Laya.stage.bgColor='#EEFFCC'; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { //panel 切记设置宽高,否则panel不显示 var panel:Panel=new Panel(); p...

来源: Laya_社区 发布时间: 20170719

176. 类似抠图、挖空效果的实现 [ 50%]

...            Laya.init(1200, 800);             Laya.stage.bgColor = "#efefef";             Laya.stage.alignH = Stage.ALIGN_CENTER;             Laya.stage.alignV = Stage.ALIGN_MIDDLE;                          //绘制一个蓝色方块,不被抠...

来源: Laya_社区 发布时间: 20161122

177. 在UI类里调用启动类的静态函数失败了 [ 50%]

...序入口 class GameMain { constructor() { Laya.init(600, 400); Laya.stage.bgColor = "#123456"; Laya.loader.load([ { url: "res/beijing/beijing2.png", type: Laya.Loader.IMAGE }, { url: "res/atlas/comp.png", type: Laya.Loader.IMAGE }, { url: "res/atlas/comp.atlas", type: Laya.Loader.ATLAS }], Laya.Han...

来源: Laya_社区 发布时间: 20180507

178. 事件绑定不触发bug [ 50%]

...      Laya.stage.scaleMode = "showall";             Laya.stage.bgColor = "#232628";                           sp = new Sprite();              sp.loadImage('./../img/psh_freq.png');              sp.pos(500, 400);                           sp.on("...

来源: Laya_社区 发布时间: 20161128

179. laya微信打包问题很多呀,就是加了一些绘图api,就报错 [ 50%]

....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; this.drawSomething(); } private drawSomething(): void { this.sp = new Sprite(); Laya.stage.addChild(this.sp); //画线 this.sp.graphics.drawLine(10, 58, 146, 58, "#ff0000", 3); //画连续直线 this.sp.g...

来源: Laya_社区 发布时间: 20180115

180. putimagedata 不起作用 [ 50%]

....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; showApe(); })(); function distort (imageData) { console.log(imageData) var data = imageData.data, copy = Array.prototype.slice.apply(data, [0]), w = imageData.width, h = imageData.height, i = 0, l = data....

来源: Laya_社区 发布时间: 20171130