Fix T64876: Checking Animated checkbox does not do what is documented.

This property should not be animatable.
This commit is contained in:
Bastien Montagne 2019-05-20 14:47:15 +02:00
parent 0b47d08ef6
commit 49f530c7da
Notes: blender-bot 2023-02-14 10:18:56 +01:00
Referenced by commit 9cc795e1df, Revert "Fix T64876: Checking Animated checkbox does not do what is documented."
Referenced by issue #64876, Checking Animated checkbox does not do what is documented.
1 changed files with 1 additions and 0 deletions

View File

@ -1044,6 +1044,7 @@ static void rna_def_rigidbody_object(BlenderRNA *brna)
RNA_def_property_boolean_funcs(prop, NULL, "rna_RigidBodyOb_kinematic_state_set");
RNA_def_property_ui_text(
prop, "Kinematic", "Allow rigid body to be controlled by the animation system");
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_update(prop, NC_OBJECT | ND_POINTCACHE, "rna_RigidBodyOb_reset");
prop = RNA_def_property(srna, "use_deform", PROP_BOOLEAN, PROP_NONE);