private static int StopTween(IntPtr L)
    {
        int result;

        try
        {
            ToLua.CheckArgsCount(L, 1);
            GameObject go = (GameObject)ToLua.CheckUnityObject(L, 1, typeof(GameObject));
            TweenUtil.StopTween(go);
            result = 0;
        }
        catch (Exception e)
        {
            result = LuaDLL.toluaL_exception(L, e, null);
        }
        return(result);
    }