DB/CameraShakes: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page CameraShakes.dbc to DB/CameraShakes)
mNo edit summary
Line 25: Line 25:
| 8  || coefficient  || Float
| 8  || coefficient  || Float
|}
|}
Retrieved from "http://www.sourcepeek.com/wiki/CameraShakes.dbc"


Used in client:
Used in client:

Revision as of 00:16, 22 February 2016

Actually there's no real Information. Mostly shaking cameras.

Structure

Column Field Type Notes
1 ID Integer
2 shakeType CGCameraShakeType
3 direction CGCameraDir
4 amplitude Float Multiplied by 0.027777778f when passed to CGCamera::AddShake.
5 frequency Float
6 duration Float
7 phase Float
8 coefficient Float

Used in client:

CGCamera::AddShake( vector, shakeType, direction, amplitude*0.027777778, frequency, duration, phase, coefficient );

6.0.1.18179

struct CameraShakesRec {
  uint32_t m_ID;
  uint32_t m_shakeType;
  uint32_t m_direction;
  float m_amplitude;
  float m_frequency;
  float m_duration;
  float m_phase;
  float m_coefficient;
  uint32_t m_flags;
};