| 609 | } |
| 610 | |
| 611 | void VPathObject::setNode( const S32 &pSourceNodeIndex, const S32 &pDestinationNodeIndex ) |
| 612 | { |
| 613 | // Update? |
| 614 | if ( ( mSourceNode != pSourceNodeIndex ) || ( mDestinationNode != pDestinationNodeIndex ) ) |
| 615 | { |
| 616 | // Update. |
| 617 | mSourceNode = pSourceNodeIndex; |
| 618 | mDestinationNode = pDestinationNodeIndex; |
| 619 | // Flag Update. |
| 620 | setMaskBits( k_StateUpdatePosition ); |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | void VPathObject::setStartNode( const S32 &pNodeIndex ) |
| 625 | { |
no outgoing calls
no test coverage detected