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:
authorCampbell Barton <ideasman42@gmail.com>2009-07-20 20:21:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-20 20:21:55 +0400
commit33bfd7397b8b0031bd2cf46d2037a8da4ef40888 (patch)
treeb956392c96cc696052ef1fc46279f02d84e6adf8 /source/blender/makesdna/DNA_property_types.h
parentcc69f1301387ea920a225b6eb49283e3c03e1b06 (diff)
BGE Button types panel, can edit existing buttons but not add new ones yet.
World Physics panel too though Im not sure if we'll eventually move this into another struct.
Diffstat (limited to 'source/blender/makesdna/DNA_property_types.h')
-rw-r--r--source/blender/makesdna/DNA_property_types.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_property_types.h b/source/blender/makesdna/DNA_property_types.h
index 7cc365a9ebc..af79b2e0a22 100644
--- a/source/blender/makesdna/DNA_property_types.h
+++ b/source/blender/makesdna/DNA_property_types.h
@@ -39,12 +39,9 @@
typedef struct bProperty {
struct bProperty *next, *prev;
char name[32];
- short type, otype; /* otype is for buttons, when a property type changes */
+ short type, flag;
int data; /* data should be 4 bytes to store int,float stuff */
- int old; /* old is for simul */
- short flag, pad;
- void *poin;
- void *oldpoin; /* oldpoin is for simul */
+ void *poin; /* references data unless its a string which is malloc'd */
} bProperty;