├── .gitignore ├── LICENSE ├── README.md ├── doc ├── declarations │ └── yx-collection-view.d.ts ├── imgs │ ├── editor-panel.png │ └── title.png └── md │ ├── layout.md │ ├── table-layout-1.md │ ├── table-layout-2.md │ ├── table-layout-3.md │ ├── table-layout-4.md │ ├── table-layout-5.md │ └── table-layout-6.md ├── list-2x ├── .gitignore ├── assets │ ├── common-cells.meta │ ├── common-cells │ │ ├── shape-label-cell.prefab │ │ └── shape-label-cell.prefab.meta │ ├── home.meta │ ├── home │ │ ├── home.fire │ │ ├── home.fire.meta │ │ ├── home.ts │ │ └── home.ts.meta │ ├── lib.meta │ └── lib │ │ ├── yx-collection-view.ts │ │ ├── yx-collection-view.ts.meta │ │ ├── yx-table-layout.ts │ │ └── yx-table-layout.ts.meta ├── creator.d.ts ├── jsconfig.json ├── project.json ├── settings │ ├── project.json │ └── services.json └── tsconfig.json └── list-3x ├── .creator ├── asset-template │ └── typescript │ │ └── Custom Script Template Help Documentation.url └── default-meta.json ├── .gitignore ├── assets ├── common-cells.meta ├── common-cells │ ├── shape-label-cell.prefab │ └── shape-label-cell.prefab.meta ├── home.meta ├── home │ ├── home.scene │ ├── home.scene.meta │ ├── home.ts │ └── home.ts.meta ├── lib.meta └── lib │ ├── grid-layout.ts │ ├── grid-layout.ts.meta │ ├── yx-collection-view.ts │ ├── yx-collection-view.ts.meta │ ├── yx-table-layout.ts │ └── yx-table-layout.ts.meta ├── package.json ├── settings └── v2 │ └── packages │ ├── builder.json │ ├── cocos-service.json │ ├── device.json │ ├── engine.json │ ├── information.json │ ├── program.json │ └── project.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | *.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/README.md -------------------------------------------------------------------------------- /doc/declarations/yx-collection-view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/declarations/yx-collection-view.d.ts -------------------------------------------------------------------------------- /doc/imgs/editor-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/imgs/editor-panel.png -------------------------------------------------------------------------------- /doc/imgs/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/imgs/title.png -------------------------------------------------------------------------------- /doc/md/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/layout.md -------------------------------------------------------------------------------- /doc/md/table-layout-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-1.md -------------------------------------------------------------------------------- /doc/md/table-layout-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-2.md -------------------------------------------------------------------------------- /doc/md/table-layout-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-3.md -------------------------------------------------------------------------------- /doc/md/table-layout-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-4.md -------------------------------------------------------------------------------- /doc/md/table-layout-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-5.md -------------------------------------------------------------------------------- /doc/md/table-layout-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/doc/md/table-layout-6.md -------------------------------------------------------------------------------- /list-2x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/.gitignore -------------------------------------------------------------------------------- /list-2x/assets/common-cells.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/common-cells.meta -------------------------------------------------------------------------------- /list-2x/assets/common-cells/shape-label-cell.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/common-cells/shape-label-cell.prefab -------------------------------------------------------------------------------- /list-2x/assets/common-cells/shape-label-cell.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/common-cells/shape-label-cell.prefab.meta -------------------------------------------------------------------------------- /list-2x/assets/home.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/home.meta -------------------------------------------------------------------------------- /list-2x/assets/home/home.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/home/home.fire -------------------------------------------------------------------------------- /list-2x/assets/home/home.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/home/home.fire.meta -------------------------------------------------------------------------------- /list-2x/assets/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/home/home.ts -------------------------------------------------------------------------------- /list-2x/assets/home/home.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/home/home.ts.meta -------------------------------------------------------------------------------- /list-2x/assets/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/lib.meta -------------------------------------------------------------------------------- /list-2x/assets/lib/yx-collection-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/lib/yx-collection-view.ts -------------------------------------------------------------------------------- /list-2x/assets/lib/yx-collection-view.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/lib/yx-collection-view.ts.meta -------------------------------------------------------------------------------- /list-2x/assets/lib/yx-table-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/lib/yx-table-layout.ts -------------------------------------------------------------------------------- /list-2x/assets/lib/yx-table-layout.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/assets/lib/yx-table-layout.ts.meta -------------------------------------------------------------------------------- /list-2x/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/creator.d.ts -------------------------------------------------------------------------------- /list-2x/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/jsconfig.json -------------------------------------------------------------------------------- /list-2x/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/project.json -------------------------------------------------------------------------------- /list-2x/settings/project.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /list-2x/settings/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/settings/services.json -------------------------------------------------------------------------------- /list-2x/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-2x/tsconfig.json -------------------------------------------------------------------------------- /list-3x/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/.creator/asset-template/typescript/Custom Script Template Help Documentation.url -------------------------------------------------------------------------------- /list-3x/.creator/default-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/.creator/default-meta.json -------------------------------------------------------------------------------- /list-3x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/.gitignore -------------------------------------------------------------------------------- /list-3x/assets/common-cells.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/common-cells.meta -------------------------------------------------------------------------------- /list-3x/assets/common-cells/shape-label-cell.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/common-cells/shape-label-cell.prefab -------------------------------------------------------------------------------- /list-3x/assets/common-cells/shape-label-cell.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/common-cells/shape-label-cell.prefab.meta -------------------------------------------------------------------------------- /list-3x/assets/home.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/home.meta -------------------------------------------------------------------------------- /list-3x/assets/home/home.scene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/home/home.scene -------------------------------------------------------------------------------- /list-3x/assets/home/home.scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/home/home.scene.meta -------------------------------------------------------------------------------- /list-3x/assets/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/home/home.ts -------------------------------------------------------------------------------- /list-3x/assets/home/home.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/home/home.ts.meta -------------------------------------------------------------------------------- /list-3x/assets/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib.meta -------------------------------------------------------------------------------- /list-3x/assets/lib/grid-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/grid-layout.ts -------------------------------------------------------------------------------- /list-3x/assets/lib/grid-layout.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/grid-layout.ts.meta -------------------------------------------------------------------------------- /list-3x/assets/lib/yx-collection-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/yx-collection-view.ts -------------------------------------------------------------------------------- /list-3x/assets/lib/yx-collection-view.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/yx-collection-view.ts.meta -------------------------------------------------------------------------------- /list-3x/assets/lib/yx-table-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/yx-table-layout.ts -------------------------------------------------------------------------------- /list-3x/assets/lib/yx-table-layout.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/assets/lib/yx-table-layout.ts.meta -------------------------------------------------------------------------------- /list-3x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/package.json -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.6" 3 | } 4 | -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/cocos-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/settings/v2/packages/cocos-service.json -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/settings/v2/packages/engine.json -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/settings/v2/packages/information.json -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.3" 3 | } 4 | -------------------------------------------------------------------------------- /list-3x/settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.5" 3 | } 4 | -------------------------------------------------------------------------------- /list-3x/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/568071718/creator-collection-view/HEAD/list-3x/tsconfig.json --------------------------------------------------------------------------------