Colshape::isPointWithin
Jump to navigation
Jump to search
Checking if a point is within the colshape.
Contents
Parameters
- position: Vector3
Syntax
Server-Side
Boolean colshape.isPointWithin(position);
Example
Server-Side
let position = player.position;
if (colshape.isPointWithin(position)) {
console.log("Inside Colshape");
} else {
console.log("Outside Colshape");
}
See Also
- Functions
- Properties
- Functions