Interface PagerListener<T>


  • public interface PagerListener<T>
    A listener that can be registered to the Pager. Use this to get notified when pages are attached, detached or updated.
    • Method Detail

      • onPageDetached

        void onPageDetached​(com.simsilica.mathd.Vec3i location,
                            T page)
      • onPageAttached

        void onPageAttached​(com.simsilica.mathd.Vec3i location,
                            T page)
      • onPageUpdated

        void onPageUpdated​(com.simsilica.mathd.Vec3i location,
                           T oldPage,
                           T newPage)