VeloScroll | Infinite Recycling ScrollView for uGUI
Szekeres
$17.49
$34.99
50%OFF
(no ratings)
Jump AssetStore
Recycling ScrollView for uGUI: lists, grids, masonry, sections and tables over 100,000 items drawn by a bounded handful of pooled cells. No-code setup, CSV/JSON import, C# source, no dependencies.A uGUI ScrollRect with 100,000 rows in it is 100,000 GameObjects, and it will not survive contact with a real device. VeloScroll keeps a bounded live-cell budget around the viewport and recycles those cells as the user scrolls, so the hierarchy stays the same size whether the data has a hundred rows or a hundred thousand.Try it before you buy it. The interactive WebGL demo is the actual asset — sixteen hands-on modules where you can scroll a 100,000-item list, switch layouts, snap and page, drag rows to reorder, import your own CSV, and jump straight to index 50,000. Watch the status bar while you do: it prints the live cell count and the total number of cells ever instantiated.Demo Showcase | View Online DocumentationHow it stays boundedVeloScroll drives a standard uGUI `ScrollRect` by composition rather than subclassing it, so it fits the Canvas, viewport, mask and input workflow you already have. A `Recycler` tracks the visible index range and a `CellPool` hands out cells as that range moves. `LiveCellCount` and `TotalCellsCreated` are public, so the claim is measurable in your own project rather than taken on trust — scrolling the demo's 100,000-item list from the top into the hundreds moves the total instantiated count by one or two cells.What it doesLayouts. Vertical and horizontal lists, per-row variable sizes, fixed-column grids, staggered masonry, sectioned lists with sticky headers that pin and hand off, virtualized tables with a frozen header, and multi-prefab lists that pick a cell type per index and pool each type separately.Interaction. Snapping with Start / Center / End alignment, viewport paging, instant or animated `ScrollToIndex`, seamless looping, auto-scroll marquees, pull-to-refresh and load-more, drag-to-reorder, and a nested-scroll router that hands vertical drags to the parent list at the inner list's edges.Data. An `IVeloScrollDataSource` interface, `SetData` / `SetDataSource` / `Reload` / `InsertItems` / `RemoveItems` / `RefreshVisible`, ScriptableObject data assets for no-code rows, and live count delegates.Import. `VeloScrollImport.FromCsv`, `FromJson`, `Auto` and `FromFile` produce a `VeloScrollTabularData`. The CSV reader strips BOMs, sniffs comma / semicolon / tab / pipe delimiters, and honours RFC-4180 quoting including embedded newlines and doubled-quote escapes, padding ragged rows. The JSON reader finds top-level arrays, wrapper-property arrays or single objects, unions record keys into a schema, and flattens nested objects into dotted columns like `address.city`. Every column starts included; `SetIncluded(column, false)` hides internal fields without mutating the source. `ApplyAsTable` and `ApplyAsList` push the projection straight into a view.Presentation. Scroll-driven cell effects — FocusScale, Parallax, Fade and Depth — with adjustable strength and curve, plus animation-preset and theme assets for shared styling.Authoring. Add `VeloScrollView` to a UI object, or create a ready-made list or grid from `GameObject > UI > VeloScroll`. The custom inspector exposes layout, data, animation, snapping, a preview and live stats. There is a welcome window, a documentation menu entry, and Create menu entries for data source, animation preset and theme assets.Evidence you can check yourself94 automated tests ship inside the package and run in Unity's Test Runner on your machine. Imported into a clean Unity 6000.0.62f1 URP project, the suite reports 60/60 EditMode and 34/34 PlayMode passing, with zero compile errors.No dependencies. uGUI only. No TextMeshPro requirement in the core, no Newtonsoft, no native plugins, no DLLs, no third-party code of any kind, and no network calls at runtime — the CSV and JSON readers are implemented in the package. Full C# source is included, so you can read, extend and debug all of it.Known limitationsStated here because finding them after purchase is worse.• UI Toolkit is not supported. This is a uGUI asset. If your UI is built in UI Toolkit, this is not the package you want.• No controller/gamepad focus navigation. Scrolling is pointer, touch and wheel driven.• Verified here on Unity 6000.0.62f1. The package targets Unity 2021.3 LTS and newer and the code carries a 2021.3 font fallback path, but 6000.0.62f1 is the version this listing's test results were produced on.• The demo is the showcase, not a UI kit. The cells are deliberately plain; VeloScroll recycles whatever prefab you give it rather than shipping a visual style you have to fight.RequirementsUnity 2021.3 LTS or newer, including Unity 6. uGUI (`com.unity.ugui`). Built-in Render Pipeline, URP and HDRP all work, because the runtime is plain uGUI and adds no shaders or materials of its own.Sixteen sample and demo scenes are included, along with a single searchable HTML manual.Third-party contentNone. This package contains no third-party fonts, images, audio, icons, shaders, DLLs or native binaries, and no third-party source code. The CSV and JSON readers, the pooling and the layout maths are all implemented from scratch in this package. There is nothing to license, attribute or redistribute, and no `Third-Party Notices.txt` file is required.Supportszekipapa77@gmail.comCore• `VeloScrollView` in the `VeloScroll` namespace; drives a uGUI `ScrollRect` by composition• `Recycler` updates the visible range; `CellPool` keeps instantiated cells bounded after warmup• `LiveCellCount` and `TotalCellsCreated` expose the recycling behaviour for measurement• 54 C# source files across 10 assembly definitions (runtime, editor, demo, samples, tests)• Full C# source included; no DLLs and no precompiled assembliesLayouts• List: vertical and horizontal single-track• Variable sizes: per-cell main-axis size provider• Grid: fixed cross-count• Masonry: staggered grid, variable heights packed into the shortest column• Sections: flattened section model, separate header and row binding, optional sticky header overlay• Table: virtualized rows with configured columns and an optional frozen header• Multi-prefab: per-index cell-type selector with a pool per typeData and import• `IVeloScrollDataSource`; `SetData`, `SetDataSource`, `Reload`, `InsertItems`, `RemoveItems`, `RefreshVisible`• `VeloScrollDataSource` ScriptableObject for no-code rows; live count delegates• `VeloScrollImport.FromCsv` / `FromJson` / `Auto` / `FromFile` → `VeloScrollTabularData`• CSV: BOM stripping, delimiter sniffing (comma / semicolon / tab / pipe), RFC-4180 quoting, embedded newlines, doubled-quote escapes, ragged-row padding• JSON: top-level arrays, wrapper-property arrays or single objects; key union into a schema; nested objects flattened to dotted columns• Column projection via `SetIncluded`; `ApplyAsTable` and `ApplyAsList` extensionsInteraction• Snapping with Start / Center / End alignment; `OnSnap` reports the landed index• Paging by viewport; `ScrollToIndex` instant or animated• Looping data wrap; `SetAutoScroll` marquee• `OnPullToRefresh` and `OnLoadMore` with a tunable threshold• `SetReorderable` and `OnReorder` for drag-to-reorder• `VeloScrollNestedRouter` forwards nested drags to the parent scroll view at the inner edgesAnimation and theming• `VeloScrollAnimator`: FocusScale, Parallax, Fade and Depth, scroll-position driven• `VeloScrollAnimationPreset` and `VeloScrollTheme` assets• Inspector controls for kind, strength, curve, theme, snapping, layout and dataEditor tooling• Component menu `UI/VeloScroll/VeloScroll View`• `GameObject > UI > VeloScroll > Recycling List` and `Recycling Grid`• Custom inspector with layout, data, animation, snapping, preview and live stats• Welcome window, documentation menu entry, Create menu entries for data / preset / theme assets• `VeloScrollProjectValidator` static checksDemo and samples• Interactive demo scene `Assets/VeloScroll/Demo/Scenes/VeloScroll_InteractiveDemo.unity`, registered at Build Settings index 0• `VeloScrollDemoController` builds the demo UI at runtime — no fragile serialized references• 16 modules: Overview, List, Grid, Masonry, Sections, Snapping, Paging, Looping, Pull to Refresh, Animations, Multi-Prefab, Table, Import, Reorder, Nested, Scroll To• 100,000-item showcase path; focused sample scenes under `Assets/VeloScroll/Samples/Scenes/`Engineering• 94 tests included (60 edit-mode, 34 play-mode), runnable in Test Runner• Verified on Unity 6000.0.62f1: clean import, zero compile errors, 60/60 and 34/34 passing• uGUI only; no Newtonsoft, no native plugins, no P/Invoke, no runtime network calls• Contains no third-party content of any kind; no licence or attribution obligations• Single searchable HTML manualThis package was built with AI-assisted development tools. Primarily Claude Code for the C# implementation, with a smaller amount of assistance from GPT-based models via Codex. All generated code was reviewed, edited and integrated by hand rather than shipped as produced.No AI image generation was used for any screenshot store image. Every screenshot is a direct capture of this package's own demo scene running in UnityThe written documentation and store copy were drafted with AI assistance and edited by hand.




