March 26, 2015, 13:12 (GMT) |
Removed deprecated rna_pointcache.c file. Scons was still compilling this, since it's source files are not explicit. |
March 26, 2015, 13:12 (GMT) |
Fix for indirectly linked object pointers in cache libraries. These must be made "extern" to avoid losing links on loading. |
March 26, 2015, 13:12 (GMT) |
Removed remaining 1 frame difference in archive storage. This was an artifact from the previous way of mapping non-0 start frame to time 0.0. Now we start at times > 0.0 to match with the start frame. Both ways are possible, can be changed later if needed. |
March 26, 2015, 13:12 (GMT) |
Fixed start frame mapping in Alembic archives. Writers were always starting at time 0.0, which means that for start frames > 1 the readers would always be off. Now match the writer start frame to the actual Blender start frame. |
March 26, 2015, 13:12 (GMT) |
Fixes for scons build files. |
March 26, 2015, 13:12 (GMT) |
Removed unused thread mutex file from pointcache lib. |
March 26, 2015, 13:12 (GMT) |
Cache reading for particle paths. Conflicts: source/blender/blenkernel/intern/particle.c Conflicts: source/blender/blenkernel/intern/particle.c |
March 26, 2015, 13:11 (GMT) |
Fix for cache modifier linking and handling of the default case (no cachd modifier). |
March 26, 2015, 13:11 (GMT) |
Changed implementation of the Cache modifier to work in tandem with the cache library system. The Cache modifier is now an optional "break point" of the modifier stack: - Without a cache modifier the stack works as before. Baking will write the final stack result. After baking the cache replaces the whole stack. - With a cache modifier the stack result at the modifier's position is stored. The cache is then applied as the output of that modifier, skipping preceding modifiers. That way additional modifiers can be applied on top of the cache. - When using multiple cache modifiers, only the last (active) one will be used, since all previous cache results would be discarded anyway. |
March 26, 2015, 13:11 (GMT) |
Replaced point cache in cloth modifiers (also hair) with the new caching system. Conflicts: source/blender/blenkernel/intern/cloth.c Conflicts: source/blender/blenkernel/intern/cloth.c |
March 26, 2015, 13:10 (GMT) |
Display cache library name and fake user button, imitating template_ID. |
March 26, 2015, 13:10 (GMT) |
UI fixes, draw bake operator button only once at the top. |
March 26, 2015, 13:10 (GMT) |
Hair path writer needs 2 different variants for parent/child hairs. |
March 26, 2015, 13:10 (GMT) |
New reader/writer for DerivedMesh. Used as a base for existing PointCacheModifier classes, but can be used on its own. |
March 26, 2015, 13:10 (GMT) |
Use explicit name strings for all readers/writers in the cache instead of constructing names internally. This helps prevent name collisions and guarantees a consistent naming scheme for putting multiple items in the same cache. |
March 26, 2015, 13:10 (GMT) |
Importing of caches into Blender data. Currently only implemented for DerivedMesh. This replaces the `final_dm` calculation of the modifier stack with the result from cache loading. |
March 26, 2015, 13:10 (GMT) |
When using the "new cache library" operator, enable fake user by default. Nothing actually links to a cache library at this point (and probably won't in the future), so fake user is necessary to avoid losing data. |
March 26, 2015, 13:10 (GMT) |
Added writers for derived mesh result and hair paths. |
March 26, 2015, 13:10 (GMT) |
Make cache libraries a linkable data block. |
March 26, 2015, 13:10 (GMT) |
Take NULL object pointers in cache items into account. This can happen if an object gets deleted or isn't loaded for some reason. The item should just be ignored in that case and removed at the next opportunity (cleanup function). |
|