大约有 371 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(122) Laya3.0_api(80) Laya2.0_api(74) laya_api(69) Laya2.0_文档(13) Laya_示例(7) Laya3.0_文档(4) Laya2.0_示例(2)
...。这个时候调用自带库里面的代码提示也消失。比如Laya.timer.once (timer 和 once 都不会提示出来) Yangcy • 2019-04-19 14:11 你好 现在已经升级到了2.0.2版本了 还是没有修复哦。。。。??
来源: Laya_社区 发布时间: 20190404
...n onApePress(e) { // 鼠标按下后,HOLD_TRIGGER_TIME毫秒后hold Laya.timer.once(HOLD_TRIGGER_TIME, this, onHold); Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); } function onHold() { Tween.to(ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bounceOut); isApeHold = true; } /** 鼠标放开后...
来源: Laya_示例 发布时间: 20241117
...ent = Laya.Event; // 鼠标按下后,HOLD_TRIGGER_TIME毫秒后hold Laya.timer.once(HOLD_TRIGGER_TIME, this, this.onHold); Laya.stage.on(Event.MOUSE_UP, this, this.onApeRelease); } onHold() { const Tween = Laya.Tween, Ease = Laya.Ease; Tween.to(this.ape, { "scaleX": 1, "scaleY": 1 }, 500, Ease.bou...
来源: Laya2.0_示例 发布时间: 20241117
...lick():void { trace("aaa"); Laya.stage.off(Event.CLICK,this,onClick); Laya.timer.once(500,this,onLoop); } private function onLoop():void { Laya.stage.once(Event.CLICK,this,onClick); } 2017-06-20 1 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发...
来源: Laya_社区 发布时间: 20170619
...lastPoint.setTo(Laya.stage.mouseX,Laya.stage.mouseY); Laya.timer.clear(this,this.tweenMove); Tween.clearTween(this); Laya.stage.once(/*laya.events.Event.MOUSE_UP*/"mouseup",this,this.onStageMouseUp2); Laya.stage.once(/*laya.events.Event...
来源: Laya_社区 发布时间: 20201118
...int[read-only] 子对象数量。 Node parent : Node父节点。Node timer : Timer时间控制器,默认为Laya.timer。NodePublic Methods Hide Inherited Public Methods Show Inherited Public Methods MethodDefined By Node() Node 类用于创建节点对象,节点是最基本的元素。...
来源: laya_api 发布时间: 20170929
发布到微信小游戏后Timer的getHandler报错了 请问一下,我的项目,在html5环境下是正常运行的。 但是发布到微信小游戏后,在微信开发者工具中运行就会有报错: gameThirdScriptError Cannot read property '$_TID' of undefined TypeError: Cannot read pro...
来源: Laya_社区 发布时间: 20180520
...estroyed displayedInStage hideFlags id is3D layer numChildren parent scene timer transform url Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer clone contains destroy destroyChildren event frameLoop frameOnce getChi...
来源: Laya3.0_api 发布时间: 20231115
关于这个timer我的跑的快在 自己出完牌之后没有人比我的牌大了。可是我的牌还是出不去 computer() { Laya.timer.clear(this,this.computer); var NTS: number; var NTE: number; this.nextTurn; let i = this.turnNumber; if(i==0){ return; } this.getPlayer(); } gotoNext(){ ...
来源: Laya_社区 发布时间: 20180626
定时器会互相影响吗 Laya.timer.loop(10, this, this._loopRefresh, [], false);一个定时器用来倒计时 一个定时器有个延时执行Laya.timer.once(100, this, this._checkIsSame, [1], false); 这不是两个定时器吗 为什么第二个延时执行的时候第一个会停住啊 第...
来源: Laya_社区 发布时间: 20180914