Brenta Engine
1.2
Loading...
Searching...
No Matches
text_node_component.cpp
1
// SPDX-License-Identifier: MIT
2
// Author: Giovanni Santini
3
// Mail: giovanni.santini@proton.me
4
// Github: @San7o
5
6
#include <brenta/node_components/text_node_component.hpp>
7
#include <brenta/renderer/renderer.hpp>
8
9
using namespace
brenta;
10
11
void
TextNodeComponent::update(
float
delta_time)
12
{
13
(void) delta_time;
14
}
15
16
void
TextNodeComponent::draw(
const
glm::mat4& world_matrix)
17
{
18
(void) world_matrix;
19
Renderer::submit_text(this->text);
20
}
src
node_components
text_node_component.cpp
Generated by
1.9.8