Tramway SDK v0.1.1
decal.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_COMPONENTS_DECALCOMPONENT_H
4#define TRAM_SDK_COMPONENTS_DECALCOMPONENT_H
5
6#include <render/render.h>
7#include <render/sprite.h>
8
9namespace tram {
10
12public:
15 inline name_t GetSprite() { return sprite->GetName(); }
16
18 this->sprite = sprite;
19 }
20
21 void Start();
22
23 void Update();
24
26
27 void SetScale(float scale) {
28 this->scale = scale;
29 }
30
31 void SetFrame(uint32_t frame) {
32 this->frame = frame;
33 }
34
36 this->location = location;
38 }
39
41 this->rotation = rotation;
43 }
44
45 void EventHandler(Event &event){return;}
46protected:
48
49 vec3 location = {0.0f, 0.0f, 0.0f};
50 quat rotation = {1.0f, 0.0f, 0.0f, 0.0f};
51
52 float scale = 1.0f;
53
54 uint32_t frame = 0;
55
58};
59
60}
61
62#endif // TRAM_SDK_COMPONENTS_DECALCOMPONENT_H
Projects decals onto the scene.
Definition: decal.h:11
void Update()
Definition: decal.cpp:57
quat rotation
Definition: decal.h:50
void SetScale(float scale)
Definition: decal.h:27
void SetLocation(vec3 location)
Definition: decal.h:35
vec3 location
Definition: decal.h:49
ResourceProxy< Render::Sprite > sprite
Definition: decal.h:47
Render::drawlistentry_t draw_list_entry
Definition: decal.h:56
void UpdateRenderListObject()
Definition: decal.cpp:181
DecalComponent()
Definition: decal.h:13
void EventHandler(Event &event)
Definition: decal.h:45
uint32_t frame
Definition: decal.h:54
void SetSprite(Render::Sprite *sprite)
Definition: decal.h:17
void SetRotation(quat rotation)
Definition: decal.h:40
Render::vertexarray_t vertex_array
Definition: decal.h:57
float scale
Definition: decal.h:52
~DecalComponent()
Definition: decal.cpp:32
void Start()
Definition: decal.cpp:38
void SetFrame(uint32_t frame)
Definition: decal.h:31
name_t GetSprite()
Definition: decal.h:15
Component base class.
Definition: entitycomponent.h:16
Sprite resource.
Definition: sprite.h:23
Definition: resource.h:46
Serialization, i.e.
glm::vec3 vec3
Definition: math.h:11
glm::quat quat
Definition: math.h:12
Event data.
Definition: event.h:24
Definition: render.h:149
Definition: render.h:109
Interned string type.
Definition: uid.h:10