Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-08-26 11:19:24 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-08-26 11:19:24 +0400
commitfb7221ce217a3b7ef8852fea73d3e3dfaef06ee0 (patch)
tree0df4cc0b758fb19d2002b5cadfc488ae179ba7c9 /source/blender/makesdna
parent92422ba4525dedfc1687dfff14e11ee805a30c23 (diff)
Patch [#23390] Addition of Author field to user preferences
Contributed by Imran Syed (freakabcd) Adds a field where the user can put in name/nickname that exporters then can use to write authoring information, where possible.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index ceac7e4d1d7..0591872fa69 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -377,6 +377,8 @@ typedef struct UserDef {
float sculpt_paint_overlay_col[3];
int pad3;
+
+ char author[80]; /* author name for file formats supporting it */
} UserDef;
extern UserDef U; /* from blenkernel blender.c */
@@ -556,4 +558,4 @@ extern UserDef U; /* from blenkernel blender.c */
#define TH_OLDSKOOL 3
#define TH_SHADED 4
-#endif
+#endif \ No newline at end of file