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

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

391. 字体切片组件 · LayaAir3.0文档 · LAYABOX [ 66%]

...完毕,此方法只执行一次 onAwake(): void { this.fontclp.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置 this.fontclp.size(500, 60); //大小 this.fontclp.pivot(this.fontclp.width/2, this.fontclp.height/2); //轴心点 this.fontclp.skin = "atlas/comp/fontClip_num.png...

来源: Laya3.0_文档 发布时间: 20241014

392. 微信小游戏,横屏,小游戏不全屏显示 [ 66%]

...全部注释,不能全屏(不注释也出现同样的问题) //Laya.stage.screenMode="horizontal"; //Laya.stage.alignH="center"; //Laya.stage.alignV="middle"; //Laya.stage.scaleMode="noborder"; 2020-03-05 添加评论 已悬赏50元 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

393. 使用webgl之后toDataUrl返回黑色的图像 [ 66%]

...Sprite#drawToCanvas() 这片文档,我使用以下代码应该ok   Laya.stage.getChildAt(0).drawToCanvas(100, 100, 0, 0).getCanvas().toDataURL(); 但在WebGL的模式下,实现在laya.core.js的20644行,drawToCanvas返回的是pixels:Uint8Array,这东西怎么变成HTMLCanvas?   如果...

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

394. tiledMap问题,getTileProperties获取地图属性不能获取到 [ 66%]

...a.TiledMap(); this.map.createMap(this.MAP_URL, new Laya.Rectangle(0,0,Laya.stage.width, Laya.stage.height), new Laya.Handler(this, this.onMap)) }  private onMap(){ var idx = this.map.getLayerByIndex(0).getTileDataByScreenPos(20,20); var pass = this.map.getTileProperties(0,idx - 1,'pass'); console.l...

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

395. 关于event中只读属性touches,问题,求解 [ 66%]

...DemoTouch { public function DemoTouch() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; var txt:Text = new Text(); txt.text = "hello"; txt.color = "#FF00FF"; txt.width = 100; txt.height = 100; txt.x = 200; txt.y = 100; txt.fontSize = 50; txt.on("click", this, onFunc); Laya.stage.addChi...

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

396. 微信小游戏中iPhoneX的适配问题 [ 66%]

...a.init(750, 1334, Laya.WebGL);     //设置适配模式     Laya.stage.scaleMode = "exactfit";     //实例一个背景     var bg = new Laya.Image();     bg.skin = "res/bg.png";     Laya.stage.addChild(bg); })();    在layaIDE,微信开发者工具模拟器,...

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

397. 物理Bodies绑定Laya.Sprite [ 66%]

...画布,使用 WebGL 渲染,不支持时会自动切换 Canvas Laya.stage.alignV = 'top'; // 适配垂直对齐方式 Laya.stage.alignH = 'middle'; // 适配水平对齐方式 Laya.stage.screenMode = this.Stage.SCREEN_HORIZONTAL; // 始终以横屏展示 Laya.stage.scaleMode = "fixedwidth"; //...

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

398. Button属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 66%]

...染模式 Laya.init(600, 400,Laya.WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ffffff"; //按钮资源路径 var skin = "./res/img/btn_test.png"; //加载资源成功后,执行onLoaded回调方法 Laya.loader.load(skin,Laya.Handler.create(this,onLoaded)); function onLoaded(){ //创建...

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

399. Button属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 65%]

...染模式 Laya.init(600,400,Laya.WebGL); //设置舞台背景颜色 Laya.stage.bgColor = "#ffffff"; //加载资源成功后,执行onLoaded回调方法 Laya.loader.load(this.skin,Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //创建一个Button实例 var btn:Laya.Button = ne...

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

400. 小游戏如何在iphone x下真正全屏 [ 65%]

...e x下真正全屏 游戏开发使用: Laya.init(750, 1334, WebGL); Laya.stage.scaleMode = Stage.SCALE_SHOWALL; 如果在iphone x下让游戏全屏不变形? 2018-08-03 添加评论 已悬赏20元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 ...

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