| 532 | } |
| 533 | |
| 534 | drop_state_type::substate_enum drop_state_type::update_stopping(xScene& scn, F32& dt) |
| 535 | { |
| 536 | move_hand(dt); |
| 537 | if (shared.vel > 0.0f) |
| 538 | { |
| 539 | return SS_STOPPING; |
| 540 | } |
| 541 | |
| 542 | shared.loc = fixed.in_loc; |
| 543 | shared.vel = 0.0f; |
| 544 | shared.accel = 0.0f; |
| 545 | this->stop_time = fixed.drop.out_wait_time; |
| 546 | |
| 547 | return SS_STOPPED; |
| 548 | } |
| 549 | |
| 550 | drop_state_type::substate_enum drop_state_type::supdate_moving_in(drop_state_type& gst, |
| 551 | xScene& scn, F32& dt) |
no test coverage detected