GetScale

This function gets the entity scale in local space.

Syntax

Returns

Returns the entity scale.

Example

#include "Leadwerks.h"

using namespace Leadwerks;
Entity* entity = NULL;
Vec3 rotation;
int main(int argc, const char *argv[])
{
Leadwerks::Window* window = Leadwerks::Window::Create();
Context* context = Context::Create(window);
World* world = World::Create();
Camera* camera = Camera::Create();
camera->SetRotation(35, 0, 0);
camera->Move(0, 0, -6);
Light* light = DirectionalLight::Create();
light->SetRotation(35, 35, 0);

//Create a model
entity = Model::Box();
entity->SetColor(0.0, 0.0, 1.0);

while (true)
{
if (window->Closed() || window->KeyDown(Key::Escape)) return false;

entity->SetScale(sin(Leadwerks::Time::GetCurrent() / 100.0)*0.5 + 0.75);

Leadwerks::Time::Update();
world->Update();
world->Render();

context->SetBlendMode(Blend::Alpha);
context->DrawText("Scale: " + entity->GetScale().ToString(), 2, 2);

context->Sync();
}
return 0;
}