GetColor
This function gets an entity's color.
Syntax
- GetColor(mode=Color.Diffuse)
Parameters
- mode: (number): the color to get. This may be Color.Diffuse or Color.Specular.
Returns
Returns a Vec4 containing the entity color.
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, -4);
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();
}
return 0;
}