MCPcopy Create free account
hub / github.com/axmolengine/axmol / performedAnimatedScroll

Method performedAnimatedScroll

extensions/GUI/src/GUI/ScrollView/ScrollView.cpp:481–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479}
480
481void ScrollView::performedAnimatedScroll(float /*dt*/)
482{
483 if (_dragging)
484 {
485 this->unschedule(AX_SCHEDULE_SELECTOR(ScrollView::performedAnimatedScroll));
486 return;
487 }
488
489 if (_delegate != nullptr)
490 {
491 _delegate->scrollViewDidScroll(this);
492 }
493}
494
495const Size& ScrollView::getContentSize() const
496{

Callers

nothing calls this directly

Calls 2

unscheduleMethod · 0.45
scrollViewDidScrollMethod · 0.45

Tested by

no test coverage detected