libentities: add get_hitbox that returns a hitbox from entity definition

This commit is contained in:
REDxEYE
2024-11-04 21:17:20 +03:00
parent 803981e2a8
commit 7f5bc41835
3 changed files with 23 additions and 0 deletions
+3
View File
@@ -50,6 +50,9 @@ entities.get_all_in_box(pos: vec3, size: vec3) -> array<int>
-- center - центр области
-- radius - радиус области
entities.get_all_in_radius(center: vec3, radius: number) -> array<int>
-- Возвращает массив флотов хитбокса из определения сущности
entities.get_hitbox(uid: int)->array<int>
```
```lua