• Manual
  • API Documentation
Show / Hide Table of Contents
  • UnlimitedScrollUI
    • Alignment
    • AnimationType
    • BecomeInvisibleEvent
    • BecomeVisibleEvent
    • GenerateEvent
    • GridUnlimitedScroller
    • HorizontalUnlimitedScroller
    • ICell
    • IUnlimitedScroller
    • JumpToMethod
    • RegularCell
    • ScrollerPanelSide
    • VerticalUnlimitedScroller
  • UnlimitedScrollUI.Editor
    • GridUnlimitedScrollerEditor
    • HorizontalUnlimitedScrollerEditor
    • VerticalUnlimitedScrollerEditor

Interface ICell

If you want to have your own script for cell, implement this interface.

Namespace: UnlimitedScrollUI
Assembly: cs.temp.dll.dll
Syntax
public interface ICell

Methods

OnBecomeInvisible(ScrollerPanelSide)

Called when the cell become invisible.

Declaration
void OnBecomeInvisible(ScrollerPanelSide side)
Parameters
Type Name Description
ScrollerPanelSide side

The side that this cell become invisible. For example, side = ScrollerPanelSide.Right means that the player is dragging the panel to right so that this cell disappears to right.

OnBecomeVisible(ScrollerPanelSide)

Called when the cell become visible.

Declaration
void OnBecomeVisible(ScrollerPanelSide side)
Parameters
Type Name Description
ScrollerPanelSide side

The side that this cell become visible. For example, side = ScrollerPanelSide.Right means that the player is dragging the panel to left so that this cell appears from right.

In This Article
Back to top Generated by DocFX