what is the most accurate way to get the full path for a value so I can use it in a single property drivers.
Asked
Active
Viewed 3,817 times
1 Answers
6
I prefer to use the outliner to find the data paths of variables. If you set the outliner type to 'Datablocks' you can see the whole RNA structure of the current Blender file. If you hover with your mouse over a property Blender will show you how you can access it using the python API:

maddin45
- 4,804
- 16
- 21
.xto the data path. For the default cube this would bebpy.data.objects["Cube"].location.x. Alternatively you can access the vector components by index....location[0]also gives you the x value. The index of the y value is 1 and the index of the z value is 2 respectively. – maddin45 Feb 21 '15 at 18:13