Re: [Bf-committers] Saving and retreiving custom object properties

2014-02-23 Thread patrick boelens
Hey Codeman, Thanks for your explanation and the link; makes perfect sense now! =) Cheers, Patrick > Date: Sun, 23 Feb 2014 14:19:11 +0100 > From: codem...@gmx.de > To: bf-committers@blender.org > Subject: Re: [Bf-committers] Saving and retreiving custom object properties >

Re: [Bf-committers] Saving and retreiving custom object properties

2014-02-23 Thread CoDEmanX
Hey Patrick, there are different kinds of properties, see: http://wiki.blender.org/index.php/Doc:2.6/Manual/Extensions/Python/Properties#Summary There are only ID-Properties internally, but ID-Props and static props are separated from python perspective. What you seem to use are ID-Properties,

[Bf-committers] Saving and retreiving custom object properties

2014-02-22 Thread patrick boelens
Hi everyone, I've been asked to revisit an old addon I did and make it up-to-date, and in doing so I noticed something. While object properties are saved with the .blend, they are only accessable through a key, and no longer as a property of that object. Is this intended behaviour? If so, is th