├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── __init__.py ├── blender_manifest.toml ├── bseq ├── __init__.py ├── additional_file_formats │ ├── README.md │ ├── __init__.py │ ├── bgeo.py │ ├── mzd.py │ ├── obj.py │ └── table.py ├── callback.py ├── globals.py ├── importer.py ├── messenger.py ├── operators.py ├── panels.py ├── properties.py └── utils.py ├── docs ├── Makefile ├── about.md ├── build.md ├── conf.py ├── format.md ├── frame.rst ├── global.md ├── index.rst ├── list.md ├── make.bat ├── requirements.txt ├── script.md ├── settings.md └── usage.md ├── download_wheels.sh ├── images ├── attribute.png ├── auto_refresh.png ├── current_frame.png ├── custom.png ├── directory.png ├── drag.png ├── edit.png ├── edit_driver.png ├── enable.png ├── featured.png ├── featured.svg ├── featured_full.png ├── geometry_nodes.png ├── install_marketplace.png ├── list.png ├── location.png ├── lock.png ├── logo.png ├── logo.svg ├── logo_new.svg ├── path.png ├── print.png ├── script.png ├── sequence.png ├── sequence_information.png ├── template.png └── usage.gif └── template ├── Comparison Render.py ├── dim3.py └── template.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /bseq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/__init__.py -------------------------------------------------------------------------------- /bseq/additional_file_formats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/README.md -------------------------------------------------------------------------------- /bseq/additional_file_formats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/__init__.py -------------------------------------------------------------------------------- /bseq/additional_file_formats/bgeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/bgeo.py -------------------------------------------------------------------------------- /bseq/additional_file_formats/mzd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/mzd.py -------------------------------------------------------------------------------- /bseq/additional_file_formats/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/obj.py -------------------------------------------------------------------------------- /bseq/additional_file_formats/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/additional_file_formats/table.py -------------------------------------------------------------------------------- /bseq/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/callback.py -------------------------------------------------------------------------------- /bseq/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/globals.py -------------------------------------------------------------------------------- /bseq/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/importer.py -------------------------------------------------------------------------------- /bseq/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/messenger.py -------------------------------------------------------------------------------- /bseq/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/operators.py -------------------------------------------------------------------------------- /bseq/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/panels.py -------------------------------------------------------------------------------- /bseq/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/properties.py -------------------------------------------------------------------------------- /bseq/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/bseq/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/format.md -------------------------------------------------------------------------------- /docs/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/frame.rst -------------------------------------------------------------------------------- /docs/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/global.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/list.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/script.md -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/docs/usage.md -------------------------------------------------------------------------------- /download_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/download_wheels.sh -------------------------------------------------------------------------------- /images/attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/attribute.png -------------------------------------------------------------------------------- /images/auto_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/auto_refresh.png -------------------------------------------------------------------------------- /images/current_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/current_frame.png -------------------------------------------------------------------------------- /images/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/custom.png -------------------------------------------------------------------------------- /images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/directory.png -------------------------------------------------------------------------------- /images/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/drag.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/edit.png -------------------------------------------------------------------------------- /images/edit_driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/edit_driver.png -------------------------------------------------------------------------------- /images/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/enable.png -------------------------------------------------------------------------------- /images/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/featured.png -------------------------------------------------------------------------------- /images/featured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/featured.svg -------------------------------------------------------------------------------- /images/featured_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/featured_full.png -------------------------------------------------------------------------------- /images/geometry_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/geometry_nodes.png -------------------------------------------------------------------------------- /images/install_marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/install_marketplace.png -------------------------------------------------------------------------------- /images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/list.png -------------------------------------------------------------------------------- /images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/location.png -------------------------------------------------------------------------------- /images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/lock.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/logo_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/logo_new.svg -------------------------------------------------------------------------------- /images/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/path.png -------------------------------------------------------------------------------- /images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/print.png -------------------------------------------------------------------------------- /images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/script.png -------------------------------------------------------------------------------- /images/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/sequence.png -------------------------------------------------------------------------------- /images/sequence_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/sequence_information.png -------------------------------------------------------------------------------- /images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/template.png -------------------------------------------------------------------------------- /images/usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/images/usage.gif -------------------------------------------------------------------------------- /template/Comparison Render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/template/Comparison Render.py -------------------------------------------------------------------------------- /template/dim3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/template/dim3.py -------------------------------------------------------------------------------- /template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveComputerGraphics/blender-sequence-loader/HEAD/template/template.py --------------------------------------------------------------------------------