You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* change the version number to 0.1.0
* add a project description in the readme
* convert logo text to path for more consistent rendering
* some more description
Copy file name to clipboardExpand all lines: README.md
+44-3Lines changed: 44 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,42 @@
1
-

2
-
3
-
Loading animation sequences with meshio and fileseq
1
+

2
+
3
+
This is an addon for Blender 3.1+ (might work with 2.8+ but has not been tested) that enables loading of file sequences. The addon comes bundled together with [meshio](https://github.com/nschloe/meshio) which enables the loading of geometric data from a multitude of file formats. As stated there, the supported formats are listed in the following. Note that not all of the formats have been tested and some issues may still occur.
[fileseq](https://github.com/justinfx/fileseq) is used to identify and load file sequences, while [rich](https://github.com/Textualize/rich) and [python-future](https://github.com/PythonCharmers/python-future) are included to satisfy unmet dependencies of the other packages.
36
+
37
+
All data is loaded *just-in-time* when the Blender frame changes, in order to avoid excessive memory consumption. By default, the addon is able to load vertices, lines, triangles and quads. It is also able to automatically extract triangle and quad surface meshes from tetrahedral and hexahedral volume meshes. Scalar and vector attributes on vertices are also imported for visualization purposes. See the following documentation for a brief introduction.
38
+
39
+
**DISCLAIMER: This project is still very much under development, so breaking changes may occur at any time!**
4
40
5
41
-[1. Installation](#1-installation)
6
42
-[1.1 Build from source (optional)](#11-build-from-source-optional)
@@ -17,6 +53,7 @@ Loading animation sequences with meshio and fileseq
@@ -133,3 +170,7 @@ We also provide the ability to use a per-vertex vector attribute as custom norma
133
170
For more details check the official documentation [here](https://docs.blender.org/manual/en/latest/modeling/meshes/structure.html#modeling-meshes-normals-custom).
134
171
135
172
Note: the addon does not check if the selected attribute is suitable for normals or not. E.g. if the data type of the attribute is int instead of float, then Blender will simply give a runtime error.
0 commit comments