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