Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_armature.c
| Context not available. | |||||
| /* calculated and read only, not actual data access */ | /* calculated and read only, not actual data access */ | ||||
| prop = RNA_def_property(srna, "matrix", PROP_FLOAT, PROP_MATRIX); | prop = RNA_def_property(srna, "matrix", PROP_FLOAT, PROP_MATRIX); | ||||
| /*RNA_def_property_float_sdna(prop, NULL, ""); *//* doesnt access any real data */ | /*RNA_def_property_float_sdna(prop, NULL, ""); *//* doesn't access any real data */ | ||||
| RNA_def_property_multi_array(prop, 2, rna_matrix_dimsize_4x4); | RNA_def_property_multi_array(prop, 2, rna_matrix_dimsize_4x4); | ||||
| //RNA_def_property_clear_flag(prop, PROP_EDITABLE); | //RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| RNA_def_property_flag(prop, PROP_THICK_WRAP); /* no reference to original data */ | RNA_def_property_flag(prop, PROP_THICK_WRAP); /* no reference to original data */ | ||||
| Context not available. | |||||