self:set_scale

Client

Sets the local scale of the camera


Syntax

local status = self:set_scale(
    scale
)

Parameters

TypeNameDescription
vector3scaleLocal scale to apply as {x, y, z}

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set the local scale of a camera
local entity = core.camera.create()

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

On this page