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

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

201. laya.display.Text [ 54%]

...更改文字样式,建议使用此接口,能提高效率。 Text clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node customRender(context:Context, x:Numbe...

来源: Laya2.0_api 发布时间: 20190513

202. laya.ui.Label [ 54%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node toolTip : * 鼠标悬停提示。 可以赋值为文本 String 或函数 Handler ,用来实现自定义样式的鼠标提示和参数携带等。 Component top : Nu...

来源: laya_api 发布时间: 20170929

203. laya.map.MapLayer_API3.0 [ 54%]

...ation scaleX scaleY scene scrollRect skewX skewY stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer contains customRender destroy destroy...

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

204. laya.ui.Box [ 54%]

...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node customRender(context:Context, x:Numbe...

来源: Laya2.0_api 发布时间: 20190513

205. laya.ui.DialogManager_API3.0 [ 54%]

...ation scaleX scaleY scene scrollRect skewX skewY stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer close closeAll closeByGroup contains ...

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

206. laya.ani.swf.MovieClip_API3.0 [ 54%]

...caleX scaleY scene scrollRect skewX skewY source stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clearTimer contains customRender destro...

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

207. pos会影响精灵缩放效果的问题 [ 54%]

...在哪呢?? 关于逻辑贞更新间隔机制、时间和其他一些Timer相关的问题 想让一个2D的图形被鼠标点击时缩放一下,或左右摇晃一下,最后回到原大小或原位置,应该用什么缓动模式 ios原生回调问题 写了个边缘光的自定义shader,...

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

208. laya.ui.ComboBox [ 54%]

...被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.timer。Node toolTip : * 鼠标悬停提示。 可以赋值为文本 String 或函数 Handler ,用来实现自定义样式的鼠标提示和参数携带等。 Component top : Nu...

来源: laya_api 发布时间: 20170929

209. 资源加载清除问题 [ 54%]

...            sp.graphics.drawTexture(e);             Laya.timer.once(1000, this, function():void             {    trace("clear")                 Loader.clearRes(mapBit, true);}             );         }   如果把延时里面的方法改成Loa...

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

210. Handler.create的回收问题 [ 54%]

...r.load("res/img/1.png", this.h1); } private loadPicComplete(): void { Laya.timer.once(2000, this, this.actT); } private actT(): void { this.h2 = Laya.Handler.create(this, this.loadPicComplete, null, true); console.log(this.h1 == this.h2);//为什么是false } } } new laya.Test(); 2017-12-21 添加...

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