| 265 | } |
| 266 | |
| 267 | void NPCHazard::PosSet(const xVec3* pos) |
| 268 | { |
| 269 | if (pos != NULL) |
| 270 | { |
| 271 | xVec3Copy(&this->pos_hazard, pos); |
| 272 | } |
| 273 | if (this->mdl_hazard != NULL) |
| 274 | { |
| 275 | xVec3Copy((xVec3*)&this->mdl_hazard->Mat->pos, &this->pos_hazard); |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | void NPCHazard::SetAlpha(F32 alpha) |
| 280 | { |
no test coverage detected