- Timestamp:
- Jan 28, 2007, 2:24:05 PM (18 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/cameraman.cc
r10428 r10441 43 43 ->addMethod("getCurrCameraCoorY", Executor0ret<CameraMan, lua_State*,float>(&CameraMan::getCurrCameraCoorY)) 44 44 ->addMethod("getCurrCameraCoorZ", Executor0ret<CameraMan, lua_State*,float>(&CameraMan::getCurrCameraCoorZ)) 45 ->addMethod("jumpCurrCam", Executor3<CameraMan, lua_State*,float,float,float>(&CameraMan::jumpCurrCam)) 45 46 ); 46 47 … … 225 226 226 227 227 void CameraMan::jumpCurrCam( int x, int y, int z)228 void CameraMan::jumpCurrCam(float x, float y, float z) 228 229 { 229 230 currentCam->target->jump(x, y, z); -
trunk/src/world_entities/cameraman.h
r10424 r10441 38 38 void detachCurrCamera(); 39 39 void jumpCam(int x, int y, int z, int camNo); 40 void jumpCurrCam( int x, int y, int z);40 void jumpCurrCam(float x, float y, float z); 41 41 void changeSpeed(float speed); 42 42 void setClipRegion(float nearClip, float farClip);
Note: See TracChangeset
for help on using the changeset viewer.