From 910945e44d78ef6c1b2905376a5a2f165eabc71a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 12 Aug 2019 11:47:06 +0200 Subject: [PATCH] Added note about RNA and DNA in README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 291c2da..2140c57 100644 --- a/README.md +++ b/README.md @@ -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) 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.