[Bf-extensions-cvs] [4f89aaab] master: Cleanup/fix T61233: FBX export error if action key exist.

Bastien Montagne noreply at git.blender.org
Wed Feb 6 17:13:43 CET 2019


Commit: 4f89aaabb024a48f0df164244e303b79154ca919
Author: Bastien Montagne
Date:   Wed Feb 6 16:58:09 2019 +0100
Branches: master
https://developer.blender.org/rBA4f89aaabb024a48f0df164244e303b79154ca919

Cleanup/fix T61233: FBX export error if action key exist.

Please do basic grep on whole source repo (including add-ons & co) when
removing RNA property (or any other change affecting the API)...

===================================================================

M	io_scene_fbx/export_fbx_bin.py
M	modules/rna_manual_reference.py

===================================================================

diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index 77ee0e6f..5ecc8706 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -2065,10 +2065,8 @@ def fbx_animations(scene_data):
                 'lock_location', 'lock_rotation', 'lock_rotation_w', 'lock_rotations_4d', 'lock_scale',
                 'tag', 'track_axis', 'up_axis', 'active_material', 'active_material_index',
                 'matrix_parent_inverse', 'empty_display_type', 'empty_display_size', 'empty_image_offset', 'pass_index',
-                'color', 'hide_viewport', 'hide_select', 'hide_render', 'use_slow_parent', 'slow_parent_offset',
-                'instance_type', 'use_instance_frames_speed',
+                'color', 'hide_viewport', 'hide_select', 'hide_render', 'instance_type',
                 'use_instance_vertices_rotation', 'use_instance_faces_scale', 'instance_faces_scale',
-                'instance_frames_start', 'instance_frames_end', 'instance_frames_on', 'instance_frames_off',
                 'display_type', 'show_bounds', 'display_bounds_type', 'show_name', 'show_axis', 'show_texture_space',
                 'show_wire', 'show_all_edges', 'show_transparent', 'show_in_front',
                 'show_only_shape_key', 'use_shape_key_edit_mode', 'active_shape_key_index',
diff --git a/modules/rna_manual_reference.py b/modules/rna_manual_reference.py
index 5c83313e..26e8ec34 100644
--- a/modules/rna_manual_reference.py
+++ b/modules/rna_manual_reference.py
@@ -118,7 +118,6 @@ url_manual_mapping = (
 	("bpy.types.compositornodeellipsemask*", "compositing/types/matte/ellipse_mask.html#bpy-types-compositornodeellipsemask"),
 	("bpy.types.compositornodesplitviewer*", "compositing/types/output/split_viewer.html#bpy-types-compositornodesplitviewer"),
 	("bpy.types.dynamicpaintbrushsettings*", "physics/dynamic_paint/brush.html#bpy-types-dynamicpaintbrushsettings"),
-	("bpy.types.object.slow_parent_offset*", "editors/3dview/object/properties/relations/extras.html#bpy-types-object-slow-parent-offset"),
 	("bpy.types.object.use_dupli_vertices*", "editors/3dview/object/properties/duplication/dupliverts.html#bpy-types-object-use-dupli-vertices"),
 	("bpy.types.rendersettings.use_border*", "render/output/output.html#bpy-types-rendersettings-use-border"),
 	("bpy.types.shadernodebsdfanisotropic*", "render/cycles/nodes/types/shaders/anisotropic.html#bpy-types-shadernodebsdfanisotropic"),
@@ -195,7 +194,6 @@ url_manual_mapping = (
 	("bpy.types.cyclesmaterialsettings*", "render/cycles/materials/settings.html#bpy-types-cyclesmaterialsettings"),
 	("bpy.types.materialraytracemirror*", "render/blender_render/materials/properties/mirror.html#bpy-types-materialraytracemirror"),
 	("bpy.types.object.use_dupli_faces*", "editors/3dview/object/properties/duplication/duplifaces.html#bpy-types-object-use-dupli-faces"),
-	("bpy.types.object.use_slow_parent*", "editors/3dview/object/properties/relations/extras.html#bpy-types-object-use-slow-parent"),
 	("bpy.types.objectsolverconstraint*", "rigging/constraints/motion_tracking/object_solver.html#bpy-types-objectsolverconstraint"),
 	("bpy.types.particlesystemmodifier*", "physics/particles/index.html#bpy-types-particlesystemmodifier"),
 	("bpy.types.shadernodedisplacement*", "render/cycles/nodes/types/vector/displacement.html#bpy-types-shadernodedisplacement"),



More information about the Bf-extensions-cvs mailing list