| 491 | } |
| 492 | |
| 493 | drop_state_type::substate_enum drop_state_type::update_starting(xScene& scn, F32& dt) |
| 494 | { |
| 495 | move_hand(dt); |
| 496 | |
| 497 | if (shared.vel > -fixed.drop.out_vel) |
| 498 | { |
| 499 | return SS_STARTING; |
| 500 | } |
| 501 | |
| 502 | shared.vel = -fixed.drop.out_vel; |
| 503 | shared.accel = 0.0f; |
| 504 | return SS_MOVING_OUT; |
| 505 | } |
| 506 | |
| 507 | drop_state_type::substate_enum drop_state_type::supdate_stopped(drop_state_type& gst, |
| 508 | xScene& scn, F32& dt) |
no test coverage detected