大约有 166 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(93) Laya3.0_文档(23) laya_api(19) Laya3.0_api(13) Laya2.0_文档(9) Laya2.0_api(5) Laya_示例(2) Laya2.0_示例(2)
...ByName("xxx") /** * 根据子节点的名字,获取子节点对象。 * @param name 子节点的名字。 * @return 节点对象。 */ getChildByName(name: string): Node { for (let child of this._children) { if (child && child.name === name) return child; } return null; } 当我们找到...
来源: Laya3.0_文档 发布时间: 20241014
...矢量矩形。该方法的详细说明如下: /** * 绘制矩形。 * @param x 开始绘制的 X 轴位置。 * @param y 开始绘制的 Y 轴位置。 * @param width 矩形宽度。 * @param height 矩形高度。 * @param fillColor 填充颜色,或者填充绘图的渐变对象。 * @param li...
来源: Laya3.0_文档 发布时间: 20241014
... * 缓动对象的props属性到目标值。 * @param target 目标对象(即将更改属性值的对象)。 * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(th...
来源: Laya_社区 发布时间: 20180425
... /** * 绘制圆角矩形。 * @param x 开始绘制的 X 轴位置。 * @param y 开始绘制的 Y 轴位置。 * @param width 矩形宽度。 * @param height 矩形高度。 ...
来源: Laya_社区 发布时间: 20210123
... * 从 EventDispatcher 对象中删除侦听器。 * @param type 事件的类型。 * @param caller 事件侦听函数的执行域。 * @param listener 事件侦听函数。 * @param onceOnly (可选)...
来源: Laya_社区 发布时间: 20180314
...法的基础说明: /** * 从props属性,缓动到当前状态。 * @param target 目标对象(即将更改属性值的对象)。 * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param d...
来源: Laya3.0_文档 发布时间: 20241014
...浏览: 797 关注: 2 人 wq • 2018-02-27 10:29 /** * 绘制纹理。 * @param tex 纹理。 * @param x (可选)X轴偏移量。 * @param y (可选)Y轴偏移量。 * @param width (可选)宽度。 * @param height (可选)高度。 * @param m (可选)矩阵信息。 * @param al...
来源: Laya_社区 发布时间: 20180226
...。如下,我启动了3个任务。 Laya.timer.loop(delay,this,onLoop,[param1]); Laya.timer.loop(delay,this,onLoop,[param2]); Laya.timer.loop(delay,this,onLoop,[param3]); 在条件满足后清理定时器,目前只有如下接口 Laya.timer.clear(this,onLoop); 导致的问题:我本来有三...
来源: Laya_社区 发布时间: 20171107
...rvice.MessageListener,YIMService.AudioPlayListener { /** * 登录回调 * @param userId 用户Id * @param errcode 错误码 */ @Override public void onLogin(final String userId, Integer errcode){ Log.e("YOUMEJ", "用户: " + userId + " 登录成功"); if (errcode == YIMService.Errorcode.Success){ Ex...
来源: Laya_社区 发布时间: 20170722
...s的这个方法 /** * 绘制多边形。 * @param x 开始绘制的 X 轴位置。 * @param y 开始绘制的 Y 轴位置。 * @param points 多边形的点集合。 * @param fil...
来源: Laya_社区 发布时间: 20180416