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

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

541. laya.ui.List_API3.0 [ 76%]

...Children?: boolean): List Inherited from UIComponent.constructor Overrides Sprite.constructor Defined in laya/ui/UIComponent.ts:24 创建一个新的 Component 实例。 Parameters Default value createChildren: boolean = true Returns List Properties Optional _extra _extra: INodeExtra Inherited from ...

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

542. 我想移动容器来实现前进的动画,但是移动不了。这里的y有问题 但是又不知道改成什么 [ 75%]

...y有问题 但是又不知道改成什么 var MyMain=(function() {   var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL;   (function() { // 不支持WebGL时自动切换至Canvas Laya.init(400...

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

543. drawTexture 画出来的数据会有以前的数据 [ 75%]

drawTexture 画出来的数据会有以前的数据 private var iconSpr:Sprite; private var htmlCanvas:HTMLCanvas; private var texture:Texture; private var xNum:int = 0; private var yNum:int = 0; private var img:Image; public function TestView() { img = new Image("comp/lhjicon_5.png"); img.x = 640;...

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

544. 关于大量图片加载绘制后的内存暴增的疑问 [ 75%]

...图片资源加入到内存中,然后通过getRes 和 drawTexture 添加SPRITE对象到屏幕中。 预加载后的初始内存为29M左右 之后开始逐个添加SPRITE,在添加第1个到第80个头像的时候,内存显示稳定在29M 但是当添加第81个SPRITE头像的时候,内存...

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

545. 怎么获取手机相册内容 [ 75%]

... 提交 1 个回复 Laya_Aaron 赞同来自: package { import laya.display.Sprite; import laya.ui.Button; import laya.utils.Browser; import laya.utils.Handler; public class Main { public function Main() { //初始化引擎 Laya.init(500,500);//初始化引擎 var skins:Array = [ "res/button-1.png" ]...

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

546. graphics如何实现橡皮擦效果 [ 75%]

graphics如何实现橡皮擦效果 // 增加一个容器 var box = new Sprite(); // 设置容器为画布缓存 box.cacheAs = "bitmap"; this.layCanvas.addChild(box); // 绘制红色方块 var red = new Sprite(); red.graphics.drawRect(0, 0, 150, 150, "#ff0000"); box.addChild(red); // 绘制一个...

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

547. graphics 绘制线条粗细不一样 [ 75%]

...00,100,null,"#000000",2) 效果: 代码:             var sp:Sprite = new Sprite();             this.addChild(sp);             sp.pos(200, 200);             sp.graphics.drawRect(0, 0, 200, 200, "#ff0000", "#000000", 2);   附件 : --> 2018-05-10 添加评论...

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

548. 分享:改变图片皮肤,保持图片原样宽高显示 [ 75%]

...2:使用graphics.drawTexture的方式】 package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.resource.Texture; import laya.utils.Handler; public class LayaAirDemo { private var sp:Sprite; public function LayaAirDemo() { Laya.init(800,600); sp=new Spr...

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

549. 使用 new Animation 报错 e.indexOf [ 75%]

...什么? 已上传 Demo 附件 TS项目使用matter.js库无智能提示 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale 微信小游戏如何使用ttf字体? LayaAirIDE下如何使用mask? 使用3D时候,Property 'getComponentByType' does not exist on type 'Node'...

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

550. 如果更换Sprite图片 [ 75%]

如果更换Sprite图片 statusBar = new Sprite(); statusBar.loadImage("7seedkin220161218094632691ru.png@120w.png",0,0, 60,60); statusBar.x = 20; statusBar.y = -70; this.addChild(statusBar); 如何通过动态事件更换Sprite图片? 2017-01-12 添加评论 免费帖 --> 分享 微博 QZONE 微...

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