码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx ScrollView不影响滑动,取消弹性小技巧

时间:2014-12-13 18:06:18      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:3.x   scrollview   cocos2dx   setbounce   弹性   

有时候需要用到ScrollView 但是又不想有那烦人的弹性效果,自然会想到setBounds(false),可是实践过后会发现,这个函数把滑动惯性也给取消了,于是就是你滑多少,滚动多少,用户体验极差。。。
解决这个方法很简单:
1. 继承ScrollViewDelegate
2. 实现虚函数

    virtual void scrollViewDidScroll(ScrollView* view);

然后函数实现如下

void EquipShopItemLayer::scrollViewDidScroll(ScrollView* view)
{
    auto layout = view -> getContainer();
    float currentY = layout -> getPositionY();

    if (currentY > 0) {
       view -> setContentOffset(Vec2(0, 0));
     }
     if (-currentY > layout -> getContentSize().height - view -> getViewSize().height)      {
         view -> setContentOffset(Vec2(0, -layout -> getContentSize().height + view -> getViewSize().height));
    }

}

欢迎访问我的博客:helkyle.tk

cocos2dx ScrollView不影响滑动,取消弹性小技巧

标签:3.x   scrollview   cocos2dx   setbounce   弹性   

原文地址:http://blog.csdn.net/joueu/article/details/41909673

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!