GetScale
From MaratisWiki
getScale(object)
Get the scale value of the object.
-
object: object to operate on
object = getObject("object")
function onSceneUpdate()
SCL = getScale(object)
if isKeyPressed("V") then print(SCL[1]) end -- Print X scale value in the console
if isKeyPressed("B") then print(SCL[2]) end -- Print Y scale value in the console
if isKeyPressed("N") then print(SCL[3]) end -- Print Z scale value in the console
end