private _onTouchStart(event: EventTouch) {
event.propagationStopped = true;
this._isClick = true;
this._showWaterLevel(true);
Tween.stopAllByTarget(this._bottleNd);
this._setHandVisible(true);
}
在安卓上面点击开始事件中修改节点activ,和tween动画要松开点击后才生效,但是如果点击并且移动,会在移动中生效节点修改,希望点击开始就生效,有什么解决方案