blender/release/scripts/modules
Campbell Barton ae5a814f26 ID properties that are displayed via RNA can now define their own UI settings,
only implimented min/max precision & step.

at the moment there is no way to edit these other then via python

example of setting UI limits...

>>> C.object['foo'] = 0.5
>>> C.object['_RNA_UI'] = {'foo': {'step': 0.5, 'soft_max': 10.0, 'soft_min': 0.0, 'precision': 2, 'description': 'Some setting'}}

Also fixed typo's: precission -> precision
2009-11-18 20:01:35 +00:00
..
bpy skip rna property & function lookups for members starting with "_" (since makesrna disallows this) 2009-11-14 23:11:46 +00:00
console missed committing this file (from Stani's patch) 2009-11-07 14:17:49 +00:00
bpy_types.py changes python initialization 2009-11-13 09:28:05 +00:00
dynamic_menu.py pep8 whitespace commit 2009-11-07 22:07:46 +00:00
rna_prop_ui.py ID properties that are displayed via RNA can now define their own UI settings, 2009-11-18 20:01:35 +00:00