Creator 2.4.8 CCActionManager暂停需求部分未实现

/**
* !#en Pauses the target: all running actions and newly added actions will be paused.
* !#zh 暂停指定对象:所有正在运行的动作和新添加的动作都将会暂停。
* @method pauseTarget
* @param {Node} target
*/
pauseTarget: function (target) {
var element = this._hashTargets[target._id];
if (element)
element.paused = true;
},

实际需求包括注释都希望是新加的动作可以被暂停,当targets里面不包含目标时,paused状态未赋上