| 109 | "@param Node Unique ID assigned to this node.\n"); |
| 110 | |
| 111 | PathCamera::PathCamera() |
| 112 | { |
| 113 | mNetFlags.clear(Ghostable); |
| 114 | mTypeMask |= CameraObjectType; |
| 115 | delta.time = 0; |
| 116 | delta.timeVec = 0; |
| 117 | |
| 118 | mDataBlock = 0; |
| 119 | mState = Forward; |
| 120 | mNodeBase = 0; |
| 121 | mNodeCount = 0; |
| 122 | mPosition = 0; |
| 123 | mTarget = 0; |
| 124 | mTargetSet = false; |
| 125 | |
| 126 | MatrixF mat(1); |
| 127 | mat.setPosition(Point3F(0,0,700)); |
| 128 | Parent::setTransform(mat); |
| 129 | } |
| 130 | |
| 131 | PathCamera::~PathCamera() |
| 132 | { |
nothing calls this directly
no test coverage detected