为什么 cc.tween(this.node) 和 cc.Tween.stopAllByTarget(this.node) 大小写不一样?

两个 tween,一个首字母不大写,一个首字母大写。

一个是实例,一个是类
cc.tween是cc.Tween的一个实例,stopAllByTarget应该是类上的静态方法(我没用过)

cc.tween是直接导出的函数,ccTween是类