[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15099] branches/animsys-aligorith/source/ blender/makesdna/DNA_animdata_types.h: AnimSys Branch - Backup of some old stuff before doing a sync with trunk.

Joshua Leung aligorith at gmail.com
Tue Jun 3 13:41:17 CEST 2008


Revision: 15099
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15099
Author:   aligorith
Date:     2008-06-03 13:41:16 +0200 (Tue, 03 Jun 2008)

Log Message:
-----------
AnimSys Branch - Backup of some old stuff before doing a sync with trunk.

Modified Paths:
--------------
    branches/animsys-aligorith/source/blender/makesdna/DNA_animdata_types.h

Modified: branches/animsys-aligorith/source/blender/makesdna/DNA_animdata_types.h
===================================================================
--- branches/animsys-aligorith/source/blender/makesdna/DNA_animdata_types.h	2008-06-03 10:05:09 UTC (rev 15098)
+++ branches/animsys-aligorith/source/blender/makesdna/DNA_animdata_types.h	2008-06-03 11:41:16 UTC (rev 15099)
@@ -74,22 +74,22 @@
  */
 typedef struct bKeyableType {
 	struct bKeyableType *next, *prev;	/* these should only be used for builtin types */
-		
+	
 	char	longname[64];		/* fullname for menus */
 	char	shortname[32];		/* name for ipo editor display */
-		
+	
 	float 	min, max;			/* if non-zero, obey these limits */
-		
+	
 	short 	offset;				/* offset of data in struct (in bytes) unless otherwise specified */
 	short	datatype;			/* type of data represented by this type (IPO_datatype)  */
 	
 	short 	blocktype;			/* blocktype that keyable type belongs to IPO_blocktypes */
 	short 	sub_blocktype;		/* specific datatype if applicable (for type specific constraint/modifier/node data) */
-		
+	
 	/* Arbitary Python Code that can get executed to get/set values */
 	char 	py_get[128];		/* code to get value */
 	char 	py_set[128];		/* code to set value */
-		
+	
 	/* Function pointers for get/set functions (these are reset on file-load) */
 	float (*read_poin)(struct bKeyableType *kt, void *data);
 	void (*write_poin)(struct bKeyableType *kt, void *data, float value);





More information about the Bf-blender-cvs mailing list