GetIntensity

This function gets the intensity of an entity's color. The intensity is a multiplier used to increase or decrease the brightness of an entity's color.

Syntax

Parameters

Returns

(number)
Returns the entity color intensity.

Example

#include "Leadwerks.h"

using namespace Leadwerks;

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, -5);

Light* light = DirectionalLight::Create();
light->SetRotation(35, 35, 0);

//Create a model
Entity* entity = Model::Box();
entity->SetColor(1, 0.5, 0.25);

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

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

entity->SetIntensity(Math::Sin(Leadwerks::Time::GetCurrent() / 10.0) + 1.5);

context->SetBlendMode(Blend::Alpha);
context->DrawText("Color: " + entity->GetColor().ToString(), 2, 2);
context->DrawText("Intensity: " + String(entity->GetIntensity()), 2, 22);

context->Sync();
}
}