大约有 331 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Laya_社区(224) Laya3.0_文档(30) laya_api(28) Laya2.0_文档(22) Laya3.0_api(17) Laya2.0_api(6) Laya2.0_示例(2) Laya_示例(2)
...ion is associated with the specified object, and has the specified initial parameters. * @param thisArg An object to which the this keyword can refer inside the new function. * @param argArray A list of arguments to be passed to the new function. */ bind(this: Function, thisArg: any, ...argArray: an...
来源: Laya_社区 发布时间: 20180130
...发送参数和接收数据在主域这边进行下步处理 * @param message * @param caller * @param callback */ public static wxPostMessage(message:any,caller:any,callback:Function):void{ let wx = Laya.Browser.window.wx; ...
来源: Laya_社区 发布时间: 20180529
... declare module laya.wx.mini { class MiniAdpter { /** * 初始化回调 * @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false * @param isSon 是否是子域,默认为false */ static init(isPosMsg?:boolean,isSon?:boolean): void; } } 类库...
来源: Laya_社区 发布时间: 20180612
.../** *@private *设置内容的宽度、高度(以像素为单位)。 *@param width 宽度。 *@param height 高度。 */ __proto.setContentSize=function(width,height){ //... this.setContentHitArea(); } /**@private */ __proto.changeScroll=function(){ //... this.setContentHitArea(); }另外需要...
来源: Laya_社区 发布时间: 20170610
...Laya 编辑器:LayaAir IDE 语言:TS 代码: /** * 震动时间 * @param time 毫秒数 */ function vibrate(time: number) { let count = time / 15; let index = 0; let obj = { count: count, index: index }; Laya.timer.loop(16, obj, function...
来源: Laya_社区 发布时间: 20190401
...ui //3d坐标转2d屏幕坐标 /** * * @param {*} point 3d世界坐标 * @param {*} camera 摄像机 */ worldToViewportPoint(point, camera) { let pos = new Laya.Vector3(point.x, point.y, point.z);; ...
来源: Laya_社区 发布时间: 20201110
...可用// 头像缓存 var headCache = {}; /** * 微信头像获取器 * @param {头像Url} headUrl * @param {显示头像Img} showImg */ function getWXHead(headUrl, showImg){ if(headCache[headUrl] != undefined){ showImg.skin = (headCache[headUrl]); }else{ // 创建请求 let httpRequest = new Laya.H...
来源: Laya_社区 发布时间: 20190430
...享 微博 QZONE 微信 逸辰 赞同来自: /** 创建动画模板 * @param name 动画的资源模板名称 * @param len 动画关键帧的长度,有多少资源,就创建多少个动画关键帧 */ private createAniTemplate(name: string, len: number = 8): void { let aniFrames: Arr...
来源: Laya_社区 发布时间: 20230707
... let data = this._tableInfo; alert(param.players[0].uid +' '+App.uid +' '+param.players[0].gold); for (var key in data.players) { if(data.players[key].uid ==App.uid) ...
来源: Laya_社区 发布时间: 20180109
...e var _wordsH:Number=0; /** * @param skin 位图字体皮肤 * @param sheet 位图字体内容,空格代表换行 */ public function FontClip(skin:String = null, sheet:String = null) { 2018-04-16 1 1 分享 微...
来源: Laya_社区 发布时间: 20180414