Changeset 10204 in orxonox.OLD for branches/camera/src/world_entities/cameraman.cc
- Timestamp:
- Jan 10, 2007, 1:18:46 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camera/src/world_entities/cameraman.cc
r10198 r10204 36 36 37 37 38 39 void cameraman::moveCurrCam(int x, int y, int z) 40 { 41 currentCam->target->trans(x,y,z); 42 } 43 44 45 void cameraman::moveCam(int x, int y, int z, int camNo) 46 { 47 cameras[camNo]->target->trans(x,y,z); 48 } 49 50 51 void cameraman::changeTarget(int camNo, PNode* target) 52 { 53 cameras[camNo]->setTargetNode(target); 54 } 55 56 57 void cameraman::changeCurrTarget(PNode* target) 58 { 59 currentCam->setTargetNode(target); 60 } 61 62 void cameraman::jumpCam(int x, int y, int z, int camNo) 63 { 64 // cameras[camNo] 65 } 66 67 68 void jumpCurrCam(int x, int y, int z) 69 { 70 } 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
Note: See TracChangeset
for help on using the changeset viewer.