@RetryAgain wrote:
The problem:
The arguments to new or create are not pass to the create function.Solution:
E:\cocos2d-x\cocos\scripting\lua-bindings\script\cocos2d\functions.lua
line 198:
change
cls.__create = function() return super:create() end
to
cls.__create = function(...) return super:create(...) end
Thank you
Andre
Posts: 1
Participants: 1