|
|
@@ -70,10 +70,24 @@ cc.Class({
|
|
|
|
|
|
if(this.gStatesScp.curretState == this.gStatesScp.finished) return;
|
|
|
console.log('data.ename='+data.ename);
|
|
|
- if(data.ename == 'hit')
|
|
|
+ if(data.direction == 'straightPunch')
|
|
|
{
|
|
|
- this.noDirectionPunch();
|
|
|
+ this.top();
|
|
|
}
|
|
|
+
|
|
|
+ if(data.direction == 'leftPunch')
|
|
|
+ {
|
|
|
+ this.left();
|
|
|
+ }
|
|
|
+
|
|
|
+ if(data.direction == 'rightPunch')
|
|
|
+ {
|
|
|
+ this.right();
|
|
|
+ }
|
|
|
+ // else if(data.ename == 'hit')
|
|
|
+ // {
|
|
|
+ // this.noDirectionPunch();
|
|
|
+ // }
|
|
|
},
|
|
|
//页面退出回调
|
|
|
onQuit(data)
|