Android真机运行程序如何查看log
可是我用vscode调试失败,adb shell可以正确访问到模拟器的目录,也输入了adb forward tcp:5086 tcp:5086转发端口 但是vscode执行调试时,发现如下错误,请问如何解决? ar: attachRequest: address: localhost port: 5086 ar: attachRequest: connected ar: _termiated:...
View ArticleonTouchBegan 不能调用函数
你可以这样写:var self=this;var touchListener=cc.EventListener.create({ event:cc.EventListener.TOUCH_ONE_BY_ONE, onTouchBegan:function(touch,event){ var scaleup=cc.scaleBy(0.1,1.2); var...
View Article关于Node的removeAllChildren
removeAllChildren: function (cleanup) { // not using detachChild improves speed here var children = this._children; if (cleanup === undefined) cleanup = true; for (var i = children.length - 1; i >=...
View Article求教spine碰撞判定问题
spine 的碰撞检测可以使用官方提供的 SkeletonBounds 类来实现。Web 平台下,可以使用类似这样的代码做碰撞检测。 var bounds = new sp.spine.SkeletonBounds(); bounds.update(skeleton._sgNode._skeleton); bounds.aabbContainsPoint(x, y); SkeletonBounds...
View Article模拟器停止运行
这块代码是参照官方demo的,代码如下: onLoad: function () { this.outOfWorld = cc.p(3000, 0); this.node.position = this.outOfWorld; let cbFadeOut = cc.callFunc(this.onFadeOutFinish, this); let cbFadeIn =...
View Article为什么时而可以生成apk时而不行?
win7下,有时候生成apk会成功,有时候会失败,多数重启电脑就可以了。失败时报如下错误:make.exe: Leaving directory `G:/Project2016/trunk_js/gac/build/jsb-default/frameworks/runtime-src/proj.android'正在生成 apk 文件...Traceback (most recent call...
View ArticleAndroid真机运行程序如何查看log
而且我阅读了logcat中的信息,发现连场景都没载入进来,log看起来一切正常,浏览器、win都没问题,唯独android出了问题还不能调试,也没有报错信息。
View Article