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

大约有 3,491 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0071 秒)

131. 图片之间拼接有缝隙的问题 [ 76%]

...了 Laya.stage.bgColor="#ffffff";    Laya.stage.scaleMode=Stage.SCALE_SHOWALL; 然后就只有一个UI页面 yyy.rar 2016-12-15 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 vvv123 相关问题 unity导出粒子文件问题 laya针...

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

132. 文本-自动调整文本尺寸 [ 76%]

...Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.setup(); } setup() { const Text = Laya.Text; // 该文本自动适应尺寸 var autoSizeText = this.createSampleText(); autoSizeText.overflow = Text.VISIBLE; autoSizeText.y = 50; ...

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

133. Sprite-节点控制 [ 76%]

...GN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; createApes(); })(); function createApes() { //显示两只猩猩 ape1 = new Sprite(); ape2 = new Sprite(); ape1.loadImage("../../res/apes/monkey2.png"); ape2.loadImage("../../res/apes...

来源: Laya_示例 发布时间: 20251130

134. 鼠标交互-自定义事件 [ 75%]

...GN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; createSprite(); })(); function createSprite() { sp = new Sprite(); sp.graphics.drawRect(0, 0, 200, 200, "#D2691E"); sp.pivot(100, 100); sp.x = Laya.stage.width / 2; sp.y = Laya.stage....

来源: Laya_示例 发布时间: 20251130

135. Sprite-轴心点 [ 75%]

...GN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; createApes(); })(); function createApes() { var gap = 300; sp1 = new Sprite(); sp1.loadImage("../../res/apes/monkey2.png", 0, 0); sp1.pos((Laya.stage.width - gap) / 2, Laya.stage.heig...

来源: Laya_示例 发布时间: 20251130

136. 计时器-间隔循环 [ 75%]

...Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); this.setup(); } setup() { let vGap = 100; this.rotateTimeBasedText = this.createText("基于时间旋转", Laya.stage.width / 2, (Laya.stage.height - vGap) / 2); this.rota...

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

137. 输入设备-摇一摇 [ 75%]

...Browser.height * picW / Browser.width); Laya.stage.scaleMode = Stage.SCALE_SHOWALL; showShakePic(); showConsoleText(); startShake(); })(); function showShakePic() { var shakePic = new Sprite(); shakePic.loadImage("../../res/inputDevice/shake.png"); Laya.stage.addChild(shakePic); } function showConso...

来源: Laya_示例 发布时间: 20251130

138. Sprite-节点控制 [ 75%]

...Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createApes(); } createApes() { const Sprite = Laya.Sprite; let monkey2Path = "res/apes/monkey2.png"; this.ape1 = new Sprite(); this.ape2 = new Sprite(); this.ape1.loadImage(monkey...

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

139. 文本-字符限制 [ 75%]

...Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; createTexts(); })(); function createTexts() { createLabel("只允许输入数字:").pos(50, 20); var input = createInput(); input.pos(50, 50); input.restrict = "0-9"; createLabel("...

来源: Laya_示例 发布时间: 20251130

140. list控件内字体大小设置无效 [ 75%]

...么fontSize都无法生效 why9 • 2017-08-31 16:42 label的fontSize在 showall模式下无效? 黄IP • 2018-08-16 18:10 @why9:问下解决了吗?貌似设置了showall模式就无效

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