大约有 164 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0034 秒)
...传,GameControl.ts中33行导致demo运行后报错,TypeError: Object prototype may only be an Object or null: undefined. 附件 : --> myLaya2D.zip 2019-02-26 添加评论 已悬赏20元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...
来源: Laya_社区 发布时间: 20190226
...h?: number):void } } 2、在Main.ts中写入实现 Laya.Graphics.prototype.drawRoundrect = function(x: number, y: number, width: number, height: number, round: number, fillColor: any, lineColor?: any, lineWidth?: number):void { if(this instanceof Laya.Graphics == false ){ return; } ...
来源: Laya_社区 发布时间: 20210123
...方法 this.onAction(); } Laya.class(NpcLayer,"NpcLayer",_super); NpcLayer.prototype.onAction = function(){ console.log("这是第二种解决方法"); } return NpcLayer; })(Laya.Sprite); 2017-11-27 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 ...
来源: Laya_社区 发布时间: 20171127
...时间点较长时,该方法显然不可取。 2.播即停,Skeleton.prototype.play方法控制播放时间段(第4和第5个参数填同一时间即可) 缺陷:首次挺正常,但是接下来发现并没有什么效果,或者说效果不怎么准确,没深究过。 万般无奈...
来源: Laya_社区 发布时间: 20181115
...) // console.log(dataT) friendRankList.setData(dataT) } FriendRankListView.prototype.setData = function (data) { this.sList.dataSource = data; } Prajna • 2018-05-16 17:16 什么错贴出来啊? 187*****279 • 2018-05-23 17:55 @Prajna:嗯,代码和报错截图都上传了,帮我看下,谢...
来源: Laya_社区 发布时间: 20180516
用iframe内嵌网页及适配 Laya.init(720, 1280); String.prototype.format = function() { if (arguments.length == 0) { return this; } for (var str = this, index = 0; index < arguments.length; ++index) { str = str.replace("{" + index + "}", arguments[index]); } return str; }; var iframe = laya....
来源: Laya_社区 发布时间: 20170415
...类 Laya.regClass(BackGround,"BackGround",_super); var _proto = BackGround.prototype; _proto.onLoop = function(){ //背景容器每帧向下移动一像素 this.y +=1; //如果背景图到了下面不可见的位置,立即调整位置到最上边 if(this.bg1.y+this.y>=852){ this.bg1.y-=852*2; }...
来源: Laya_社区 发布时间: 20191018
...owser.onMiniGame) { var ctxProto:Object = __JS__("CanvasRenderingContext2D.prototype"); ctxProto.measureText1 = ctxProto.measureText; ctxProto.measureText = function(str:String):Object { return this.measureText1(str) || {width:12*(str+"").length}; }; } 2019-02-13 0 0 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20190213
...Laya.WebGL; function Segment(width, height) { Segment.super(this); Segment.prototype.init = function() { this.graphics.drawRect(-height / 2, -height / 2, width + height, height, "#FF7F50"); } // 获取关节另一头位置 Segment.prototype.getPinPosition = function() { var radian = this.rotation * ...
来源: Laya_示例 发布时间: 20241119
...lass(ServerListView,"ServerListView",_super); var _proto_ = ServerListView.prototype; //选择列表项时的相应时间,参数index是选中项的下标 // _proto_.onSelect = function(index){ // console.log("index",index); // } _proto_.onMouse = function(e,index){ if(e.type == Laya.Event.CLICK){...
来源: Laya_社区 发布时间: 20170805