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

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

511. 关于graphics.drawPath手机端和PC端不一致的问题 [ 48%]

...); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#ffffff"; this.sp = new Sprite(); Laya.stage.addChild(this.sp); this.sp.graphics.drawPath(100, 100, [["moveTo", 100, 0], ["arcTo", 200, 0, 200, 100, 100], ["arcT...

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

512. laya.ui.AutoBitmap_API3.0 [ 48%]

..."#ff0000"。 textAlign: string 文本对齐方式,可选值:"left","center","right"。 lineWidth: number 镶边线条宽度。 borderColor: string 定义镶边文本颜色。 Returns FillTextCmd fillText fillText(text: string | WordText, x: number, y: number, font: string, color: string, tex...

来源: Laya3.0_api 发布时间: 20231115

513. ios下没有办法强制全屏,横屏,地址栏仍然存在 [ 48%]

...tage.screenMode = Stage.SCREEN_HORIZONTAL; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.bgColor = "#C0C0C0"; index.html和myLaya.max.html里增加如下: <meta name='full-screen' content='true' /> <meta name='screen-orientation' content='lands...

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

514. 引擎示例中的新手引导自己写了一次,不知道为什么无法实现点击。 [ 48%]

...tage; var loader = Laya.loader; stage.bgColor = "#00ffff"; stage.alignH = "center"; stage.alignW = "middle"; stage.scaleMode = "showall"; loader.load("../../res/guide/crazy_snowball.png", Handler.create(this, init)); function init(e) { var width = stage.width; var height = stage.height; var bg = new...

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

515. 1.70beta Dialog增加动画后第二次执行popup不显示弹窗 [ 48%]

...); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; assets = ["../../res/ui/dialog (1).png", "../../res/ui/close.png"]; Laya.loader.load(assets, Handler.create(this, onSkinLoadComplete)); })();...

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

516. 在微信小游戏中使用list,兼听不到mouseHandler跟selectHandler。 [ 48%]

...  Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER;   Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628";   setup(); })();   function setup() { var list = new List();   list.itemRender = Item;   list.repeatX = 1; list.repeatY = 4;   list.x...

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

517. 报告bug: graphics.drawCircle在layaair调试时,改变外框尺寸,半径未能自适应调整 [ 48%]

...aya.WebGL); //stage水平对齐方式 Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; //stage竖直对齐方式 Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; //设置适配模式 Laya.stage.scaleMode = "showall"; //添加Sprite var sp = new Laya.Sprite(); Laya.stage.addChild(sp); //将sp移动到横坐...

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

518. 性能测试-虫子(慎入) [ 48%]

...); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); wrapBounds = new Rectangle(-padding, -padding, Laya.stage.width + padding * 2, Laya.stage.height + padding * 2); Laya.loader.loa...

来源: Laya2.0_示例 发布时间: 20241119

519. 分享:销毁龙骨动画! [ 47%]

...0"); button.graphics.fillText(label, w / 2 , 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } private function parseComplete(fac:Templet):void { //创建模式为1,可以启用换装 mArmature = mFactory.buildArmature(0); mArmature.x = 400; mArmature.y = 500; m...

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

520. 通过laya设计模式制作的,要怎么给按钮绑定事件呢? [ 47%]

... = "showall"; Laya.stage.alignV = 'middle'; Laya.stage.alignH = 'center'; Laya.stage.screenMode = "vertical"; Laya.stage.bgColor = "#101825"; this.init() } init() { // 预加载图集 Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(this, this.onLo...

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