Advertisement
Ulabael

столкновение

Aug 3rd, 2023
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. var _bup = _id.bbox_top;
  2. var _bdown = _id.bbox_bottom;
  3. var _bleft = _id.bbox_left;
  4. var _bright = _id.bbox_right;
  5. // При полёте вниз
  6. if (_info.motion.ver_vel > 0) {
  7. var _new_y = round((_bdown + _info.motion.ver_vel)) div CH;
  8. if (mp_grid_get_cell(global.grid_settings.grid, _bleft div CW, _new_y) == -1)
  9. or(mp_grid_get_cell(global.grid_settings.grid, _bright div CW, _new_y) == -1) {
  10. _new_y *= CH;
  11. _new_y -= 1;
  12.  
  13. _info.motion.ver_vel = clamp(_new_y - _bdown, 0, CH);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement