大约有 27 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...显示 __proto.uploaderHandler=function (files) { var self=this; var file=files[0]; var reader=new FileReader(); reader.onload=function () { this.headIcon.loadImage(this.result); 或者 this.headIcon.sk...
来源: Laya_社区 发布时间: 20170808
...rigBody做距离关系绑定 代码片段: onTriggerEnter(other: any, self: any, contact: any) { let pointes = contact.getHitInfo().points; let potSelf = new Laya.Point(pointes[0].x, pointes[0].y); let potOther = new Laya.Point(pointes[0].x, pointes[0].y); self.owner.globalToLocal(potSelf);...
来源: Laya_社区 发布时间: 20190609
... onEnable() { } onTriggerEnter(other: any, self: any, contact: any): void { //搜索黏贴在圆环上 } onUpdate(): void { } onDisable(): void { Laya.Pool.recover("friut",this.owner); } } 附件 : --> FruitMaster.zip 2022-04-13 添加评论 ...
来源: Laya_社区 发布时间: 20220413
...和其它刚体碰撞后不能修改角度和位置 onTriggerEnter(other,self,contact) { var n=this.owner.rotation; if(other.label === "heng"){ console.log("角度"+this.owner.rotation); this.owner.rotation=...
来源: Laya_社区 发布时间: 20200817
...es = "remote/model/res/Conventional/man_1.lh" constructor() { super(); let self = this; Util3d.loadRes( [ this.sMapRes, this.sBullRes, this.sEnemyRes ], function (bIsFinish) { if (bIsFinish) { self.onResFinish(); } } ) } onResFinish() { let pNewScene = <Laya.Scene3D>Util3d.getRes(this.sMapRes,...
来源: Laya_社区 发布时间: 20200720
...his, this.onKeydown); } private function onKeydown(event:Event):void { var self:* = this; if(event.keyCode === Keyboard.SPACE) { //移除动画 if(testAnim1) { testAnim1.clear(); testAnim1.removeSelf(); testAnim1 = null; testAnim2.clear(); testAnim2.removeSelf(); testAnim2 = null; Loader.clearRes("r...
来源: Laya_社区 发布时间: 20180424
...pContent.replace(regExp, "this." + name2 + ")"); var regExp2 = new RegExp("self."+name + "\\(", 'gi'); phpContent = phpContent.replace(regExp2, "self." + name2s); } } //====增加干扰代码================================================================== let arr2 = phpContent.split("\n"); //conso...
来源: Laya_社区 发布时间: 20190613