3#ifndef TRAM_SDK_RENDER_SCENE_H
4#define TRAM_SDK_RENDER_SCENE_H
12 class RenderComponent;
Component base class.
Definition: entitycomponent.h:16
Renders a Model.
Definition: render.h:12
value_t(* function)(valuearray_t)
Definition: lua.cpp:156
void RemoveLeaf(aabbleaf_t leaf_id)
Removes a leaf from.
Definition: scene.cpp:101
void FindAllIntersectionsFromAABB(vec3 min, vec3 max, std::function< void(ReferenceType, EntityComponent *)> callback)
Definition: scene.cpp:167
ReferenceType
Definition: scene.h:21
@ REFERENCE_RENDERCOMPONENT
Definition: scene.h:22
QueryResponse FindNearestFromRay(vec3 ray_pos, vec3 ray_dir, uint32_t mask)
Peforms a raycast and retrieves the nearest object.
Definition: scene.cpp:113
aabbleaf_t InsertLeaf(RenderComponent *component, vec3 position, quat rotation, vec3 scale)
Inserts a RenderComponent leaf into the scene tree.
Definition: scene.cpp:61
void DebugDrawTree()
Draws the scene tree for a single frame.
Definition: scene.cpp:193
void AddLight(light_t light, vec3 pos, float dist)
Adds a light to the light tree.
Definition: scene.cpp:212
void RemoveLight(light_t light)
Removes a light from the light tree.
Definition: scene.cpp:239
void FindLights(vec3 position, light_t *dest)
Finds the 4 nearest lights to a given position.
Definition: scene.cpp:225
High-level Render system API.
Definition: gui.h:8
void * aabbleaf_t
Definition: scene.h:16
glm::vec3 vec3
Definition: math.h:11
glm::quat quat
Definition: math.h:12
vec3 intersection
Definition: scene.h:29
ReferenceType type
Definition: scene.h:26
AABBTriangle triangle
Definition: scene.h:30
void * data
Definition: scene.h:27