func CapsuleOverlap(radius float, height float, center Vector3, rotation Vector3, layerMask List<int>, includeTrigger bool, out var hitEntities List<entity<Entity>>)
go
Name |
Type |
Description |
Radius |
Float |
The radius of the hemispheres at both ends of the capsule area. Only positive values are accepted. |
Height |
Float |
The distance between the centers of the two hemispheres at both ends of the capsule area. This value must be greater than twice the radius of the two hemispheres. |
Center |
Vector3 |
The center point of the capsule area |
Rotation |
Vector3 |
Rotation of the capsule region |
Layer Mask |
ListT_int |
Layer mask, only the filled layers will participate in the scan, leaving it blank means all layers will participate in the scan |
Include Trigger |
Bool |
Whether the trigger can be detected |
Name |
Type |
Description |
Hit Entities |
ListT_Entity |
List of entities hit |