大约有 331 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(224) Laya3.0_文档(30) laya_api(28) Laya2.0_文档(22) Laya3.0_api(17) Laya2.0_api(6) Laya2.0_示例(2) Laya_示例(2)
...过摄像机的原点。 /** * 计算从屏幕空间生成的射线。 * @param point 屏幕空间的位置位置。 * @param out 输出射线。 */ viewportPointToRay(point: Vector2, out: Ray): void { this._rayViewport.x = this.viewport.x; this._rayViewport.y = this.viewport.y; this._rayViewport.wi...
来源: Laya3.0_文档 发布时间: 20241014
...: 与内容相关的链接 提交 1 个回复 180*****998 赞同来自: @param useWorkerLoader — (default = false)是否使用worker加载(只针对IMAGE类型和ATLAS类型,并且浏览器支持的情况下生效) 可能是浏览器不支持的原因吧 2019-05-15 0 0 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20190111
...vent = new Laya.AnimationEvent; test_e.eventName = "move_over"; test_e.params = ["move"]; test_e.time = 0.2; let test_cp:Laya.AnimationClip = this._ani.getDefaultState().clip; test_cp.addEvent(test_e); test_cp.on("move_over",this,this.test_over); 预想是播放到0.2秒就会发送"move...
来源: Laya_社区 发布时间: 20190813
...: 下个版本修复这个问题,你在时间轴上添加的事件上的params添加一个空的参数,不要全删掉,暂时就不会报错了 2023-09-15 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 仓颉 相关问题 spine在...
来源: Laya_社区 发布时间: 20230915
...展另说,拿我自己的先抛个砖declare class PomeloClient { init(params:any, cb?:Function); request(route:string, msg?:any, cb?:Function); notify(route:string, params:any); on(event:string, cb:Function); off(event:string, cb:Function); disconnect(); } 我也是初学,以上一点摸坑的...
来源: Laya_社区 发布时间: 20180109
...pes/monkey2.png" ]; this.loadTextures(resArr); } /** 加载多个资源 * @param url 资源数组 */ loadTextures(url: Array<string>): void { Laya.loader.load(url).then((res: Array<Laya.Texture>) => { let sp: Laya.Sprite = new Laya.Sprite(); this.owner.addChild(sp); let i: number = 0;...
来源: Laya3.0_文档 发布时间: 20241014
...timer监听,移除子对象及从父节点移除自己。</p> * @param destroyChild (可选)是否同时销毁子节点,若值为true,则销毁子节点,否则不销毁子节点。 */ 2018-01-23 1 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问...
来源: Laya_社区 发布时间: 20180123
...码了,代码中写死只能获取第一个 /** *设置动画数据。 *@param uiData */ __getset(0,__proto,'effectData',null,function(uiData){ if (uiData){ var aniData=uiData["animations"]; if (aniData && aniData[0]){ var data=aniData[0]; this._setUp({},data); if (data.nodes &am...
来源: Laya_社区 发布时间: 20181019
一个方法实现复制到粘贴板 /** * 复制到粘贴板 * @param value * */ public static function copyToClipBoard(value:String):void{ var input:Object; input = Browser.createElement("input"); input.setAttribute('readonly', 'readonly'); input.setAttribute("value",value); Browser....
来源: Laya_社区 发布时间: 20191216
...debugger 发现EffectMaterial类中 /** *设置贴图。 *@param value 贴图。 */ /** *获取贴图。 *@return 贴图。 */ __getset(0,__proto,'texture',function(){ return this._shaderValues.getTexture(1); ...
来源: Laya_社区 发布时间: 20181128