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 Summary

    Modifier and Type
    Method
    Description
    void
    onPageAttached(com.simsilica.mathd.Vec3i location, T page)
     
    void
    onPageDetached(com.simsilica.mathd.Vec3i location, T page)
     
    void
    onPageUpdated(com.simsilica.mathd.Vec3i location, T oldPage, T newPage)
     
  • Method Details

    • 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)