Skip to main content
Skip to main content

overlapCylinderAsync

overlapCylinderAsync

Description

Overlap cylinder rigid body objects asynchronously If the callback function returns true any possible following callbacks will be omitted Note that a "dynamic" object is considered to be any object which is not static or kinematic Note that supplying false values to all of includeDynamics, includeKinematics and includeStatics will set them all to true

Definition

overlapCylinderAsync(float x, float y, float z, float radius, float height, integer axis, string callbackFunctionName, object? callbackTargetObject, integer? collisionMask, boolean? includeDynamics, boolean? includeKinematics, boolean? includeStatics, boolean? exactTest)

Arguments

floatxx
floatyy
floatzz
floatradiusradius
floatheightheight
integeraxisone of enum Axis
stringcallbackFunctionNameoverlapCylinderAsyncCallback(nodeId, subShapeIndex, isLast) -> boolean continueReporting
object?callbackTargetObjecttargetObject [optional]
integer?collisionMaskcollisionMask [optional, default=ALL_BITS]
boolean?includeDynamicsincludeDynamics [optional, default=true]
boolean?includeKinematicsincludeKinematics [optional, default=true]
boolean?includeStaticsincludeStatics [optional, default=true]
boolean?exactTestWhen true, the overlap uses the precise shape geometry (more accurate but slower). When false, the overlap uses the shapes AABB (faster but not exact) [optional, default=false]