public TweenPosition tweenPosition;
public TweenWidth tweenWidth;
void OnHover(bool isOver){
if(isOver){
tweenPosition.enable=true;
tweenWidth.enable=true;
Debug.Log("Event Hover");
}else{
tweenPosition.enable=true;
tweenWidth.enable=true;
Debug.Log("Event Hover Over");
}
}