Cafu Engine
ComponentImageT Class Reference

This component adds an image to its window. More...

Inheritance diagram for ComponentImageT:

Public Attributes

string Material
 The name of the image material. More...
 
tuple Color
 The color with which the image is tinted. More...
 
number Alpha
 The alpha component of the color. More...
 

Additional Inherited Members

- Public Member Functions inherited from ComponentBaseT
any get (string var_name)
 Returns the value of an attribute (a member variable) of this class. More...
 
 set (string var_name, any new_value)
 Sets an attribute (a member variable) of this class to a new value. More...
 
string GetExtraMessage (string var_name)
 Returns the result of VarBaseT::GetExtraMessage() for the given member variable. More...
 
 interpolate (string var_name, number start_value, number end_value, number time)
 Schedules a value for interpolation between a start and end value over a given period of time. More...
 

Detailed Description

This component adds an image to its window.

Note that the variables of this class (also referred to as "Public Attributes" or "Member Data") must be used with the get() and set() methods at this time – see get() and set() for details.

If you would like to create a new component of this type explicitly (those defined in the CaWE GUI Editor are instantiated automatically), use GuiT::new():

local comp = gui:new("ComponentImageT")
Implementing C++ Class:
cf::GuiSys::ComponentImageT

Member Data Documentation

number Alpha

The alpha component of the color.

Related C++ type:
float
tuple Color

The color with which the image is tinted.

Related C++ type:
Vector3fT
string Material

The name of the image material.

Related C++ type:
std::string