### Install Loop Scroll Rect via OpenUPM - Shell Source: https://github.com/qiankanglai/loopscrollrect/blob/master/README.md Command to add the Loop Scroll Rect package to a Unity project using the OpenUPM package manager. This is one of the recommended installation methods. ```Shell openupm add me.qiankanglai.loopscrollrect ``` -------------------------------- ### Receive Cell Index Message - C# Source: https://github.com/qiankanglai/loopscrollrect/blob/master/README.md Method signature for a message that cells in the Loop Scroll Rect should implement. The component calls this method on each cell, passing its current index, allowing the cell to update its content or appearance accordingly. ```C# void ScrollCellIndex (int idx) ``` -------------------------------- ### Scroll to Specific Cell - C# Source: https://github.com/qiankanglai/loopscrollrect/blob/master/README.md API method signature for programmatically scrolling the Loop Scroll Rect to a specific cell index with a given speed. This allows for quick jumps within the scrollable content. ```C# public void SrollToCell(int index, float speed) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.