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
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-10-03 21:29:38 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-10-04 13:27:10 +0300
commitba10cd49220a778014fa2e77eff45c32ca106fbe (patch)
treebd251ca1d362e377ec143ee829a9fe8ae85d8fcf /source/blender/makesrna/intern/rna_access_internal.h
parent837653d735249a65ccdd7467625041493a14cc8a (diff)
LibOverride: Fix last main issue with overriding custom properties.
Now, custom props defined as overriddable can be overridden, saved, reloaded, etc. That fixes the last main issue with them. Note that custom props still have a lot of glitches and weirdness in their overriding behavior, but for now the most important is finally achieved, will let them rest and settle a bit, those have been incredibly painful to tame... :(
Diffstat (limited to 'source/blender/makesrna/intern/rna_access_internal.h')
-rw-r--r--source/blender/makesrna/intern/rna_access_internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_access_internal.h b/source/blender/makesrna/intern/rna_access_internal.h
index 28ec504e376..c7995746d08 100644
--- a/source/blender/makesrna/intern/rna_access_internal.h
+++ b/source/blender/makesrna/intern/rna_access_internal.h
@@ -30,5 +30,6 @@ struct IDProperty;
PropertyRNA *rna_ensure_property(PropertyRNA *prop);
void rna_idproperty_touch(struct IDProperty *idprop);
+struct IDProperty *rna_idproperty_find(PointerRNA *ptr, const char *name);
#endif /* __ACCESS_RNA_INTERNAL_H__ */