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

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

181. 再问:tween对象的回收利 [ 68%]

...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调函数。 * @para...

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

182. 在微信小游戏中,主域中显示开发域的list为什么显示不全? [ 68%]

.../激活资源版本控制 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION);  function beginLoad(){     Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(null, onLoaded)); }*/  function updateItem(cell, index) { ...

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

183. 位图字体的制作与使(ActionScript-LayaAir基础篇(AS3)-文本) [ 67%]

... import laya.display.Text; import laya.resource.Texture; import laya.utils.Handler; import laya.display.BitmapFont; public class TestBitmapFont { //自定义文件名称 private var mFontName:String = "diyFont"; private var mBitmapFont:BitmapFont; public function TestBitmapFont() { Laya.init(550, 40...

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

184. WXOpenDataViewer 微信开放数据域 是不是不能响应鼠标拖动事件呢? [ 67%]

...main.ts 里面 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); 和 Laya.AtlasInfoManager.enable("fileconfig.json", Laya.Handler.create(this, this.onConfigLoaded)); 都要删掉。 内涵tv何吓...

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

185. 关于位图字体的valign属性问题 [ 67%]

...t; import laya.display.Sprite; import laya.display.Text; import laya.utils.Handler; public class GraphicCircle extends Sprite { private var mFontName:String="dataFont"; private var mBitmap:BitmapFont; public function GraphicCircle() { super(); Laya.init(550,400); mBitmap=new BitmapFont(); mBitmap.lo...

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

186. Uncaught Error: Laya3D:unknown mesh version [ 67%]

... Laya.loader.create("LayaScene_yuanwenj2/Conventional/yuanwenj2.ls", Laya.Handler.create(this, function() {             console.log("sssssssssssss");         })); 或者使 Laya.Scene3D.load('LayaScene_yuanwenj2/Conventional/yuanwenj2.ls',Laya.Handler.create(this,this.onComple...

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

187. 粒子中引的图片能合图吗 [ 67%]

...ER; Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void {     Laya.loader.load("res/comp/dian.part", Handler.create(this, this.onPartLoaded)); } function onPartLoaded(data: any) {     let part = new Laya.Particle...

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

188. sprite.loadImage加载图片怎么设置要显示的x,y坐标和宽高? [ 67%]

...height); this.tMap.createMap("res/mario_map/new_map2.json", viewRect, Laya.Handler.create(this,this.initMap)); } private initMap(): void { var layer = this.tMap.getLayerByIndex(9); var gs = layer.getObjectByName('others1'); var sp: Laya.Sprite = new Laya.Sprite(); sp.loadImage("res/smallWalkRight.pn...

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

189. Laya.util.Ease这个类是来配合Tween的,可是怎么使?没有任何资料啊。 [ 67%]

...下 var ease:*=Ease.backIn(100,100,100,100); Tween.to(sp,{x:400},1000,ease,Handler.create(this,onTween)); 2017-01-05 0 0 分享 微博 QZONE 微信 shaotianhk 赞同来自: var ease:*=Ease.backIn(100,100,100,100); 这句是什么鬼,放在js里直接报错 2018-04-02 0 0 分享 微博 QZONE 微信...

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

190. 分享:IDE使SWF动画的销毁与反复创建 [ 67%]

...laya.events.Event;     import laya.net.Loader;     import laya.utils.Handler;     import view.TestView;          public class LayaUISample {                  public function LayaUISample() {             //初始化引擎             Laya.init(600, 400); ...

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