Text Rendering
This commit is contained in:
@ -34,7 +34,7 @@ namespace ia::iae
|
||||
m_viewport.w = height;
|
||||
|
||||
m_projectionMatrix =
|
||||
glm::orthoLH(0.0f, (FLOAT32) width, (FLOAT32) height, 0.0f, Renderer::MIN_DEPTH, Renderer::MAX_DEPTH);
|
||||
glm::orthoLH(0.0f, (FLOAT32) width, (FLOAT32) height, 0.0f, -1.0f, 1.0f);
|
||||
}
|
||||
|
||||
CONST Mat4 *CameraComponent::GetViewMatrix()
|
||||
|
||||
0
Engine/Src/Imp/CPP/Components/UIButtonComponent.cpp
Normal file
0
Engine/Src/Imp/CPP/Components/UIButtonComponent.cpp
Normal file
0
Engine/Src/Imp/CPP/Components/UIImageComponent.cpp
Normal file
0
Engine/Src/Imp/CPP/Components/UIImageComponent.cpp
Normal file
49
Engine/Src/Imp/CPP/Components/UILabelComponent.cpp
Normal file
49
Engine/Src/Imp/CPP/Components/UILabelComponent.cpp
Normal file
@ -0,0 +1,49 @@
|
||||
// IAEngine: 2D Game Engine by IA
|
||||
// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev)
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include <IAEngine/Engine.hpp>
|
||||
#include <IAEngine/Nodes/UINode.hpp>
|
||||
#include <IAEngine/Components/UILabelComponent.hpp>
|
||||
|
||||
namespace ia::iae
|
||||
{
|
||||
UILabelComponent::UILabelComponent(IN UINode *node) : IUIComponent(node)
|
||||
{
|
||||
}
|
||||
|
||||
VOID UILabelComponent::Draw()
|
||||
{
|
||||
Engine::SetRenderState_Texture(0);
|
||||
Engine::SetRenderState_FlippedH(false);
|
||||
Engine::SetRenderState_FlippedV(false);
|
||||
Engine::SetRenderState_ColorOverlay({0xFF, 0xFF, 0xFF, 0xFF});
|
||||
Engine::SetRenderState_TextureOffset({});
|
||||
Engine::SetRenderState_CameraRelative(false);
|
||||
Engine::DrawText(m_label, m_node->GetPosition(), m_node->GetScale(), m_node->GetRotation(), 0xFF, 0);
|
||||
}
|
||||
|
||||
VOID UILabelComponent::DebugDraw()
|
||||
{
|
||||
}
|
||||
|
||||
VOID UILabelComponent::Update()
|
||||
{
|
||||
}
|
||||
|
||||
VOID UILabelComponent::FixedUpdate()
|
||||
{
|
||||
}
|
||||
} // namespace ia::iae
|
||||
0
Engine/Src/Imp/CPP/Components/UITextComponent.cpp
Normal file
0
Engine/Src/Imp/CPP/Components/UITextComponent.cpp
Normal file
Reference in New Issue
Block a user