Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/cameraman.h @ 10205

Last change on this file since 10205 was 10205, checked in by gfilip, 17 years ago

tralala

File size: 625 bytes
Line 
1#ifndef _CAMERAMAN_H
2#define _CAMERAMAN_H
3
4#include "p_node.h"
5#include "camera.h"
6
7class cameraman {
8
9  private:
10    Camera* currentCam;
11    int camNo;
12    int camAmount;
13    Camera* cameras[6];
14
15
16  public:
17    cameraman();
18    void setCam(int CameraNo);
19    void createCam();
20    void moveCam(int x, int y, int z,  int camNo);
21    void moveCurrCam(int x, int y, int z);
22    void changeTarget(int camNo, PNode* target);
23    void changeCurrTarget(PNode* target);
24    void jumpCam(int x, int y, int z, int camNo);
25    void jumpCurrCam(int x, int y, int z);
26    void changeSpeed(float speed);
27
28
29
30
31};
32
33#endif /* _CAMERAMAN_H */
Note: See TracBrowser for help on using the repository browser.