self:translate
Client
Translates the static body by an offset in the parent's coordinate space
Syntax
local status = self:translate(
offset
)Parameters
| Type | Name | Description |
|---|---|---|
vector3 | offset | Offset to translate by as {x, y, z} |
Returns
| Type | Name | Description |
|---|---|---|
bool | status | true on successful execution, false otherwise |
Examples
local entity = physics.static.create()
entity:translate({0, 1, 0})