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

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

21. 屏幕适配-缩放-No Border [ 90%]

...); })(); function createCantralRect() { rect = new 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;...

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

22. 被遮罩的显示对象的子显示对象再添加遮罩,则子显示对象显示不正确 [ 90%]

...常显示。 let bigMask:Laya.Sprite = new Laya.Sprite(); bigMask.graphics.drawRect(0, 0, 300, 200, "#ffffff"); this.mask = bigMask; // let imgMask:Laya.Sprite = new Laya.Sprite(); imgMask.graphics.drawRect(0, 0, 100, 300, "#ffffff"); this.img.mask = imgMask; Laya.Tween.to(this.img, {x:100}, 10000)....

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

23. 屏幕适配-缩放-Show All [ 90%]

...); })(); function createCantralRect() { rect = new 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;...

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

24. 屏幕适配-缩放-Extract Fit [ 90%]

...); })(); function createCantralRect() { rect = new 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;...

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

25. 屏幕适配-缩放-Extract Fit [ 90%]

...{ const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_EXTRACT_FIT()...

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

26. 屏幕适配-缩放-Show All [ 90%]

...{ const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_SHOW_ALL();mo...

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

27. 被遮罩的对象的子显示对象再添加遮罩,子显示对象的遮罩显示不正确 [ 89%]

...常显示。 let bigMask:Laya.Sprite = new Laya.Sprite(); bigMask.graphics.drawRect(0, 0, 300, 200, "#ffffff"); this.mask = bigMask; // let imgMask:Laya.Sprite = new Laya.Sprite(); imgMask.graphics.drawRect(0, 0, 100, 300, "#ffffff"); this.img.mask = imgMask; Laya.Tween.to(this.img, {x:100}, 10000)....

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

28. 类似抠图、挖空效果的实现 [ 89%]

...    var blue:Sprite = new Sprite();             blue.graphics.drawRect(0, 0, 500, 500, "#004080");             blue.pos(150, 150);             blue.size(500, 500);             blue.on("click", this, onClick);             Laya.stage.addChild(blue);   ...

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

29. 输入设备-贪吃蛇(重力感应) [ 89%]

...{ Segment.super(this); Segment.prototype.init = function() { this.graphics.drawRect(-height / 2, -height / 2, width + height, height, "#FF7F50"); } // 获取关节另一头位置 Segment.prototype.getPinPosition = function() { var radian = this.rotation * Math.PI / 180; var tx = this.x + Math.cos(ra...

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

30. hitArea用法问题 [ 88%]

... 请指教!  // 写法一 let g:Laya.Graphics = new Laya.Graphics(); g.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.closeBtn.width+20,this.closeBtn.height+20,"#FF0000"); let hitA:Laya.HitArea = new Laya.HitArea(); hitA.hit = g; this.closeBtn.hitArea = hitA; // 写法二 this.closeBtn.graph...

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