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

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

361. WebGL 绘制图形报错 [ 70%]

...e = new Sprite(); mask.graphics.save(); mask.graphics.drawRect( 0, 0, Laya.stage.width, Laya.stage.height, 0xff0000 ); mask.graphics.restore(); mask.x = 0; mask.y = 0; Laya.stage.addChild( mask ); 麻烦看下是什么问题。   附件 : --> 2017-02-16 添加评论 免费帖 --> 分享 微博 QZON...

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

362. 寻路系统(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 70%]

...对应的3D世界的路径数据 ```typescript //监听鼠标抬起 Laya.stage.on(Event.MOUSE_UP, this, function():void { index = 0; //获取每次生成路径 getGridIndex(path[curPathIndex % pointCount].x, path[curPathIndex++ % pointCount].z, startPoint); getGridIndex(path[nextPathIndex % pointCou...

来源: Laya2.0_文档 发布时间: 20210714

363. js环境下使用Loader加载图片在Sprite对象的.on函数无效 [ 70%]

...展示界面    Laya.init(scronw, scronh) //设置舞台背景色 Laya.stage.bgColor = '#999999'; //设置适配模式     Laya.stage.scaleMode = "exactfit";     // 无加载失败重试     Laya.loader.retryNum = 0; //加载的数据信息 https://layaair.ldc.layabox.co ... oader var...

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

364. tween对Text的缩放,何会抖动呢? [ 70%]

...txt.color = "#ff0000";     txt.fontSize = 30;     txt.pos(Laya.stage.width >> 1, Laya.stage.height >> 1);     Laya.stage.addChild(txt);          Laya.Tween.to(txt, { scaleX: 2, scaleY: 2 }, 5000);   5秒钟把文本放大2倍,感觉是 fontSize在...

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

365. graphics怎么画透明色 [ 70%]

....clear(); graphics.save(); graphics.alpha(0.6); graphics.drawRect(0,0,Laya.stage.width,Laya.stage.height,'#000000'); graphics.restore(); sprite.graphics=graphics; 2018-12-19 0 1 分享 微博 QZONE 微信 什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 dz5566 相关问...

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

366. FaceBook iPhone X 适配(其他正常) [ 70%]

....height 适配代码: Laya3D.init(1336, 750); Laya.init(1336, 750); Laya.stage.screenMode = "none"; Laya.stage.alignV = "middle"; Laya.stage.alignH = "center"; Laya.stage.bgColor = "#0000000"; if (Laya.Browser.onPC) { Laya.stage.scaleMode = "exactfit"; } else { Laya.stage.scaleMode = "fixedheight"...

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

367. 图片居中的问题 [ 69%]

...自: var bg = new Laya.Sprite(); bg.loadImage("res/bg-480x720.jpg"); Laya.stage.on(Laya.Event.RESIZE,this,onResize);   function onResize() {     var scale,scaleX,scaleY;     scaleX = Browser.clientWidth/480;     scaleY = Browser.clientHeight/720;     scale = scaleX > scaleY ? scaleX : sc...

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

368. 局部坐标转全局坐标结果与预期相差甚远 [ 69%]

...很远了 2018-12-19 0 4 分享 微博 QZONE 微信 LT 赞同来自: Laya.stage.addChild(this); Laya.timer.once(500,this,test); 转坐标放在后面加了个延时执行。。就没问题了。。应该是执行的时候组件还没有全部加进stage。。 2018-12-20 0 0 分享 微博 QZONE 微...

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

369. 在 tiledmap 插入一个精灵在上面 [ 69%]

...);   this.tiledMap.createMap("desert.json", new Laya.Rectangle(0, 0, Laya.stage.width, Laya.stage.height),   Laya.Handler.create(this,this.loadedMap)); }   loadedMap(){   this.sp=new Laya.Sprite();   this.sp.graphics.drawRect(0,0,100,100,"#FF0000");   var mapLayer = this.tiledMap.getLayerByInd...

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

370. 显示与切换图片(JavaScript-LayaAir基础篇(JS)-位图) [ 69%]

...代码如下: ```javascript (function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.cli...

来源: Laya2.0_文档 发布时间: 20210715