setsimulationradius Synchronous
Accept a compatibility call for changing simulation radius. The current native implementation does nothing, so scripts should not rely on it to change physics behavior.
Luau
setsimulationradius(...ignored: any) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
...ignored | any | Any arguments are accepted and ignored. |
Returns
()No values.
Usage notes
This is currently a no-op; it does not validate the supplied value.
Example
Luau
local before = getsimulationradius()
setsimulationradius(100)
print("Radius before and after:", before, getsimulationradius())