OPTPiX SpriteStudio SDK
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
bind_SsPart.h
1 #ifndef __bind_SSPART__
2 #define __bind_SSPART__
3 
4 
5 #include "package_SpriteStudio.h"
6 
7 
8 class Bind_SsPart : public myPyBinder<SsPart>
9 {
10 public:
11  float aaaa[10];
12 
13  Bind_SsPart(){}
14  Bind_SsPart(SsPart* p){bind(p);}
15  virtual ~Bind_SsPart(){}
16 
17  bool debug();
18 
19  //SsPart‚̃ƒ“ƒo[‚ð‘€ì‚·‚é
20  const char* name(){ return bind_inst->name.c_str(); }
21  int arrayIndex(){return bind_inst->arrayIndex; }
22  int parentIndex(){return bind_inst->parentIndex; }
23  int type(){return (int)bind_inst->type; }
24  int boundsType(){return (int)bind_inst->boundsType; }
25  int inheritType(){return (int)bind_inst->inheritType; }
26  int alphaBlendType(){return (int)bind_inst->alphaBlendType; }
27  int show(){return (int)bind_inst->show; }
28  int locked(){return (int)bind_inst->locked; }
29  float inheritRates(int type){ return (float)bind_inst->inheritRates[type]; }
30 
31  boost::python::numeric::array array_(){
32  boost::python::numeric::array aa(aaaa);
33  return aa;
34  }
35 };
36 
37 
38 #endif
39