DI-Guy SDK Documentation  13.2
diguyTransitionInfo.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <diguy_vector_classes.h>
4 
6 struct BDI_DECLSPEC_diguy diguyTransitionInfo
7 {
8 
10  m_distance(NULL),
11  m_speed(NULL),
12  m_duration(0)
13  {
14  ;
15  }
16  // these aren't owned by the structure make sure swig can't leak or memory thrash these
17 #ifdef SWIG
18  %feature("immutable");
19 #endif
20 
21 
22 #ifdef SWIG
23  %feature("immutable","");
24 #endif
25  float m_distance;
26  float m_speed;
27  float m_duration;
28 
29  diguyVec3f m_delta_pos;
30  diguyVec3f m_delta_rot;
31 
32  diguyVec3f m_base_delta_pos;
33  diguyVec3f m_base_delta_rot;
34 
35 };
diguyTransitionInfo()
Definition: diguyTransitionInfo.h:9
Experimental class for getting transition information.
Definition: diguyTransitionInfo.h:6
Definition: diguy_vector_classes.h:74