3#ifndef TRAM_SDK_COMPONENTS_RENDERCOMPONENT_H
4#define TRAM_SDK_COMPONENTS_RENDERCOMPONENT_H
10class AnimationComponent;
Plays back Animations.
Definition: animation.h:13
Component base class.
Definition: entitycomponent.h:16
Material resource.
Definition: material.h:31
Renders a Model.
Definition: render.h:12
void EventHandler(Event &event)
Definition: render.h:41
vec3 color
Definition: render.h:57
void SetLightmap(name_t name)
Sets the lightmap for the model.
Definition: render.cpp:53
ResourceProxy< Render::Model > model
Definition: render.h:46
vec3 location
Definition: render.h:54
uint32_t render_flags
Definition: render.h:62
void RefreshAABB()
Definition: render.cpp:277
std::vector< Render::drawlistentry_t > draw_list_entries
Definition: render.h:50
void SetRenderDebug(bool enabled)
Sets render debugging.
Definition: render.cpp:142
name_t GetLightmap()
Definition: render.h:18
void SetDirectionaLight(bool enabled)
Sets the world parameters for model rendering.
Definition: render.cpp:123
Render::Model * GetModel()
Definition: render.h:16
ResourceProxy< Render::Material > lightmap
Definition: render.h:47
void SetEnvironmentMap(Render::Material *material)
Sets the environment map for the model.
Definition: render.cpp:66
void SetLocation(vec3 nlocation)
Sets the location of the model.
Definition: render.cpp:159
vec3 GetScale() const
Definition: render.h:29
~RenderComponent()
Definition: render.cpp:108
void Start()
Definition: render.cpp:260
uint32_t layer
Definition: render.h:58
RenderComponent()
Definition: render.cpp:104
void InsertDrawListEntries()
Definition: render.cpp:285
void SetModel(name_t name)
Set the model that the component will render.
Definition: render.cpp:33
quat rotation
Definition: render.h:55
void SetArmature(AnimationComponent *armature)
Links an AnimationComponent.
Definition: render.cpp:88
quat GetRotation() const
Definition: render.h:28
vec3 GetLocation() const
Definition: render.h:27
void SetRotation(quat nrotation)
Sets the rotation of the model.
Definition: render.cpp:180
void SetTextureOffset(name_t material, vec4 offset)
Definition: render.cpp:221
void SetScale(vec3 scale)
Sets the scale of the model.
Definition: render.cpp:195
void SetLayer(uint32_t layer)
Definition: render.cpp:209
void * aabb_tree_leaf
Definition: render.h:60
ResourceProxy< Render::Material > environmentmap
Definition: render.h:48
vec3 scale
Definition: render.h:56
void SetColor(vec3 color)
Sets the scale of the model.
Definition: render.cpp:242
Render::Pose * pose
Definition: render.h:52
Definition: resource.h:46
glm::vec4 vec4
Definition: math.h:15
glm::vec3 vec3
Definition: math.h:11
glm::quat quat
Definition: math.h:12
Event data.
Definition: event.h:24
Definition: animation.h:35
Interned string type.
Definition: uid.h:10