adjustScale

API -

return function()
    local app = getApp();
    local myObject = app.createObject();
    wait(3);
    
    myObject.adjustScale(0.5, 0.5); 
    myObject.adjustScale(0.5, 0.5); --additive
    
    
    
    --as soon as the script ends the object will be destroyed automatically.
    keepAlive();
end

Last updated