~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/makesdna/DNA_nla_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: DNA_nla_types.h,v 1.13 2007/01/19 10:05:16 joeedh Exp $
 
2
 * $Id: DNA_nla_types.h,v 1.14 2007/04/15 09:48:53 aligorith Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
45
45
        short type, flag;
46
46
        char channel[32];
47
47
        
 
48
        /* noise modifier */
 
49
        float noisesize, turbul;
 
50
        short channels;
 
51
        
48
52
        /* path deform modifier */
49
 
        short pad, no_rot_axis;
50
 
        struct Object *ob;
51
 
        
 
53
        short no_rot_axis;
 
54
        struct Object *ob;      
52
55
} bActionModifier;
53
56
 
54
57
#define ACTSTRIP_MOD_DEFORM             0
94
97
#define ACTSTRIP_CYCLIC_USEX    0x100
95
98
#define ACTSTRIP_CYCLIC_USEY    0x200
96
99
#define ACTSTRIP_CYCLIC_USEZ    0x400
 
100
#define ACTSTRIP_AUTO_BLENDS    0x800
97
101
 
98
102
#endif
99
103