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

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

1. 屏幕适配的缩放模式详解(JavaScript-2D基础篇(JS)-屏幕适配) [ 100%]

...     bg.skin = "res/img/loadingBg.jpg";         Laya.stage.addChild(bg);               //实例一个文本         txt = new Text();         txt.text = "适配模式("+modes+") ";         txt.bold = true;         txt.pos(10, 350); ...

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

2. 屏幕适配的缩放模式详解(ActionScript-2D基础篇(AS3)-屏幕适配) [ 99%]

...     bg.skin = "res/img/loadingBg.jpg";         Laya.stage.addChild(bg);            //实例一个文本         txt = new Text();         txt.text = "适配模式("+Stage.SCALE_EXACTFIT+") ";         txt.bold = true;         txt.pos(1...

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

3. 屏幕适配的缩放模式详解(TypeScript-2D基础篇(TS)-屏幕适配) [ 99%]

...     bg.skin = "res/img/loadingBg.jpg";         Laya.stage.addChild(bg);             //实例一个文本         this.txt = new Text();         this.txt.text = "适配模式("+this.modes+") ";         this.txt.bold = true;         thi...

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

4. 圆环不跟随 sprite 一起缩放[ 92%]

...this._rootSp.hitArea = new Laya.Rectangle(0, 0, 10000, 10000) this._rootSp.addChild(this.firstSp); Laya.stage.addChild(this._rootSp); }  private MouseWheel(e: Laya.Event) { let xs = this.firstSp.scaleX; if (e.delta > 0) { xs = xs * 1.2; } else { xs /= 1.2; } this.firstSp.scale(xs, xs); } } new G...

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

5. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 92%]

...eenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scene3D; var camera = scene.addChild(new Laya.Camera(0, 0.1, 0)) as Laya.Camera; camera.transform.translate(new Laya.Vector3(0, 2, 20)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0)...

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

6. 屏幕适配-缩放-No Scale [ 91%]

...Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); updateRectPos(); } function updateRectPos() { rect.x = Laya.stage.width / 2; rect.y = Laya.stage.height / 2; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; export class SmartScale...

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

7. 屏幕适配-缩放-No Border [ 91%]

...Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); updateRectPos(); } function updateRectPos() { rect.x = Laya.stage.width / 2; rect.y = Laya.stage.height / 2; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; export class SmartScale...

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

8. 屏幕适配-缩放-Show All [ 91%]

...Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); updateRectPos(); } function updateRectPos() { rect.x = Laya.stage.width / 2; rect.y = Laya.stage.height / 2; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; export class SmartScale...

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

9. 屏幕适配-缩放-Extract Fit [ 91%]

...Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); updateRectPos(); } function updateRectPos() { rect.x = Laya.stage.width / 2; rect.y = Laya.stage.height / 2; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; export class SmartScale...

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

10. 圆不跟谁 sprite 一起缩放[ 91%]

...this._rootSp.hitArea = new Laya.Rectangle(0, 0, 10000, 10000) this._rootSp.addChild(this.firstSp); Laya.stage.addChild(this._rootSp); }  private MouseWheel(e: Laya.Event) { let xs = this.firstSp.scaleX; if (e.delta > 0) { xs = xs * 1.2; } else { xs /= 1.2; } this.firstSp.scale(xs, xs); } } new G...

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