Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-21Merge branch 'master' into temp-abc-featuresKévin Dietrich
2021-10-29Use GeometrySets for USD as well.Kévin Dietrich
This was breaking the modifier.
2021-10-20Fix UI.Kévin Dietrich
2021-10-20Remove attribute regexes.Kévin Dietrich
This was too cumbersome to use.
2021-10-20Use panels to organize buttons in the modifier.Kévin Dietrich
2021-10-07Alembic: use GeometrySets in the modifierKévin Dietrich
This uses GeometrySets to import data from Alembic cache. The main idea is to easily extend the modifier's capabilities by directly generating an object of the right type instead of always outputing a Mesh. This will also make it much easier to use Alembic objects from Geometry nodes until a Alembic node is available there, and can be considered a first step to supporting such a node. For meshes, nothing really changes. For points, a PointCloud object is generated, which can also be used inside of Geometry nodes. The radius information is also read now, as well as arbitrary attributes. For curves, the CurveEval is directly modified if the data did not change. Otherwise, we keep the current behavior of modifying the original Curve object and create a new CurveEval from it.