Added note about RNA and DNA in README.md

This commit is contained in:
Sybren A. Stüvel 2019-08-12 11:47:06 +02:00
parent 40c27641e5
commit 910945e44d

View File

@ -99,3 +99,8 @@ open Blender itself. Here is an example showing how to determine the render engi
json.dump(render_info, sys.stdout, indent=4, sort_keys=True) json.dump(render_info, sys.stdout, indent=4, sort_keys=True)
print() print()
To understand the naming of the properties, look at Blender's `DNA_xxxx.h` files with struct
definitions. It is those names that are accessed via `blender_asset_tracer.blendfile`. The
mapping to the names accessible in Blender's Python interface can be found in the `rna_yyyy.c`
files.