| 52 | ); |
| 53 | |
| 54 | SkyBox::SkyBox() |
| 55 | { |
| 56 | mTypeMask |= EnvironmentObjectType | StaticObjectType; |
| 57 | mNetFlags.set(Ghostable | ScopeAlways); |
| 58 | |
| 59 | INIT_ASSET(Material); |
| 60 | mMatInstance = NULL; |
| 61 | |
| 62 | mIsVBDirty = false; |
| 63 | mDrawBottom = true; |
| 64 | mPrimCount = 0; |
| 65 | mFogBandHeight = 0; |
| 66 | |
| 67 | mMatrixSet = reinterpret_cast<MatrixSet *>(dMalloc_aligned(sizeof(MatrixSet), 16)); |
| 68 | constructInPlace(mMatrixSet); |
| 69 | |
| 70 | mFogBandMat = NULL; |
| 71 | mFogBandMatInst = NULL; |
| 72 | } |
| 73 | |
| 74 | SkyBox::~SkyBox() |
| 75 | { |
nothing calls this directly
no test coverage detected