DB/CinematicCamera: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
==Header Info==
__TOC__
Records....................12
This table holds models that can be used as cameras for cinematics. Its defined where they end and which voiceover is used.
Fields......................7
Record Size................28
String Block Size.........288


==Structure==
==0.5.3.3368-1.12.1.5875-3.0.2.895-3.3.5.12340-6.0.1.18179==
'''Column Field Type Notes'''
===Table===
  1 ID Integer ID 1 and 224 not used. Someone change them to an ID used and Fraps it!
{| style="background:#FCFCFC; color:black"
  2 sRefPath String
|-
3 iRefID_[[SoundEntries.dbc|SoundEntries]] Integer Voiceover used in the cinematic animation
! width="80" | Column  
  4 X Float Note: These coordinates are actually the end point of the path, not the start  
! width="180 " | Field  
  5 Y Float
! width="80" | Type  
  6 Z Float ! Was marked as 'X' at Sourcepeek
! width="500" | Notes
  7 Rotation Float Rotation of path
|-
| 1 || ID || Integer ||
|-
| 2 || Filepath || String || Which camera is used?
|- style="background:#F0F8FF;"
| 3 || [[SoundEntries.dbc|Voiceover]] || iRefID || Not set for PalantirOfAzora and Scry_cam.
|-
| 4 || X || Float || The coordinates define the end-point, not the start.
|-
| 5 || Y || Float ||
|-
| 6 || Z || Float ||
|-
| 7 || Rotation || Float ||
|}


Retrieved from "http://www.sourcepeek.com/wiki/CinematicCamera.dbc"
===Struct===
struct CinematicCameraRec {
  uint32_t m_ID;
  {{Template:Type|stringref}} m_model;
  {{Template:Type/foreign_key|table=SoundEntries}} m_soundID;
  float m_origin[3];
  float m_originFacing;
};
 
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]][[Category:3.0.2.8905]][[Category:3.3.5.12340]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 21:51, 1 October 2017

This table holds models that can be used as cameras for cinematics. Its defined where they end and which voiceover is used.

0.5.3.3368-1.12.1.5875-3.0.2.895-3.3.5.12340-6.0.1.18179

Table

Column Field Type Notes
1 ID Integer
2 Filepath String Which camera is used?
3 Voiceover iRefID Not set for PalantirOfAzora and Scry_cam.
4 X Float The coordinates define the end-point, not the start.
5 Y Float
6 Z Float
7 Rotation Float

Struct

struct CinematicCameraRec {
  uint32_t m_ID;
  stringref m_model;
  foreign_key<uint32_t, &SoundEntriesRec::m_ID> m_soundID;
  float m_origin[3];
  float m_originFacing;
};