| 423 | } |
| 424 | |
| 425 | void NPCGlyph::PosSet(xVec3* pos) |
| 426 | { |
| 427 | if (pos != NULL) |
| 428 | { |
| 429 | xVec3Copy(&pos_glyph, pos); |
| 430 | } |
| 431 | else |
| 432 | { |
| 433 | xVec3Copy(&pos_glyph, &g_O3); |
| 434 | } |
| 435 | |
| 436 | if (mdl_glyph != NULL) |
| 437 | { |
| 438 | xVec3Copy((xVec3*)&mdl_glyph->Mat->pos, &pos_glyph); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | void NPCGlyph::VelSet(xVec3* vel) |
| 443 | { |
no test coverage detected