按照文档是 cc.ActionTween.create(duration, key, from, to)
同时指定 updateTweenAction
int = getIns();
ins.updateTweenAction = function(value,key)
{
ins.height = value
}
ins.runAction(cc.ActionTween.create(1, “height”, 100, 200))
在h5中正常没问题,但是jsb编译的时候有问题,
Assert failed: target must implement actiontweendelegate
http://discuss.cocos2d-x.org/t/actiontweendelegate/8936 这是之前其他人提过的,bug修复了?

