@@ -7,12 +7,29 @@ class Motion:
7
7
def __init__ (self ):
8
8
self .set_moveSpeed (0 )
9
9
10
- def onMoveToPoint (self , destination , velocity , faceMovement , moveVertically ):
10
+ def onMove (self , controllerId , userarg ):
11
11
"""
12
12
KBEngine method.
13
- 这个entity将要移动到某个点, 由服务器通知
13
+ 使用引擎的任何移动相关接口, 在entity一次移动完成时均会调用此接口
14
14
"""
15
- KBExtra .moveToPoint (self .id , destination , velocity , faceMovement , moveVertically )
15
+ DEBUG_MSG ("%s::onMove: %i controllerId =%i, userarg=%s" % \
16
+ (self .getScriptName (), self .id , controllerId , userarg ))
17
+
18
+ def onMoveFailure (self , controllerId , userarg ):
19
+ """
20
+ KBEngine method.
21
+ 使用引擎的任何移动相关接口, 在entity一次移动完成时均会调用此接口
22
+ """
23
+ DEBUG_MSG ("%s::onMoveFailure: %i controllerId =%i, userarg=%s" % \
24
+ (self .getScriptName (), self .id , controllerId , userarg ))
25
+
26
+ def onMoveOver (self , controllerId , userarg ):
27
+ """
28
+ KBEngine method.
29
+ 使用引擎的任何移动相关接口, 在entity移动结束时均会调用此接口
30
+ """
31
+ DEBUG_MSG ("%s::onMoveOver: %i controllerId =%i, userarg=%s" % \
32
+ (self .getScriptName (), self .id , controllerId , userarg ))
16
33
17
34
def set_moveSpeed (self , oldValue ):
18
35
"""
0 commit comments