forked from mtcontrib/maidroid
[FIX] Fix on_punch bug of maidroid
This commit is contained in:
parent
de7ede9d8d
commit
b473843752
@ -361,13 +361,13 @@ function maidroid.register_maidroid(product_name, def)
|
||||
self.pause = false
|
||||
if self.core_name ~= "" then
|
||||
local core = maidroid.registered_cores[self.core_name]
|
||||
core.on_pause(self)
|
||||
core.on_resume(self)
|
||||
end
|
||||
else
|
||||
self.pause = true
|
||||
if self.core_name ~= "" then
|
||||
local core = maidroid.registered_cores[self.core_name]
|
||||
core.on_resume(self)
|
||||
core.on_pause(self)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
local state = {IDLE = 0, ACCOMPANY = 1}
|
||||
|
||||
local function on_start(self)
|
||||
print("KOKO")
|
||||
self.state = state.IDLE
|
||||
self.object:setacceleration{x = 0, y = -10, z = 0}
|
||||
self.object:setvelocity{x = 0, y = 0, z = 0}
|
||||
|
Loading…
Reference in New Issue
Block a user