| 3155 | } |
| 3156 | |
| 3157 | void cruise_bubble::state_missle_fly::update_move(F32 dt) |
| 3158 | { |
| 3159 | F32 accel = current_tweak->missle.fly.accel; |
| 3160 | F32 max = current_tweak->missle.fly.max_vel; |
| 3161 | F32 move = 0.0f; |
| 3162 | |
| 3163 | xAccelMove(move, this->vel, accel, dt, max); |
| 3164 | |
| 3165 | xMat4x3* mat = get_missle_mat(); |
| 3166 | mat->pos += mat->at * move; |
| 3167 | } |
| 3168 | |
| 3169 | void cruise_bubble::state_missle_explode::start() |
| 3170 | { |
no test coverage detected