self:set_scale

Client

Sets the local scale of the static body


Syntax

local status = self:set_scale(
    scale
)

Parameters

TypeNameDescription
vector3scaleScale to apply as {x, y, z}

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set the local scale of a static body
local entity = physics.static.create()

entity:set_scale({1, 1, 1})

On this page