| 115 | } |
| 116 | |
| 117 | void PhysicsForce::onMount( SceneObject *obj, S32 node ) |
| 118 | { |
| 119 | Parent::onMount( obj, node ); |
| 120 | |
| 121 | processAfter( obj ); |
| 122 | |
| 123 | MatrixF mat( true ); |
| 124 | mMount.object->getMountTransform( mMount.node, mMount.xfm, &mat ); |
| 125 | setTransform( mat ); |
| 126 | } |
| 127 | |
| 128 | void PhysicsForce::onUnmount( SceneObject *obj, S32 node ) |
| 129 | { |
nothing calls this directly
no test coverage detected