I have a few properties created like:
bpy.types.Scene.myprop = bpy.props.IntProperty(name="Myprop",default=1)
I want to save their values to a text file but don't know how to extract the actual value (saving just myprop saves all object data instead of just the int value). How to get the actual value?
bpy.context.sceneinstead ofbpy.types.Scenedid the trick for me. Thx! – Val Oct 23 '14 at 13:23