NcEngine
WireframeRenderer.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "ncengine/asset/Assets.h"
9
10#include <vector>
11
12namespace nc
13{
16{
17 Internal,
18 Renderer,
19 Collider
20};
21
41{
42 explicit WireframeRenderer(WireframeSource source_, Entity target_, const Vector4& color_ = Vector4{0.9f, 0.25f, 0.9f, 1.0f}) noexcept
43 : source{source_}, target{target_}, mesh{}, instances{}, color{color_}
44 {
45 }
46
47 explicit WireframeRenderer(asset::MeshView mesh_, std::vector<DirectX::XMMATRIX> instances_, const Vector4& color_ = Vector4{0.9f, 0.25f, 0.9f, 1.0f}) noexcept
48 : source{WireframeSource::Internal}, target{}, mesh{mesh_}, instances{std::move(instances_)}, color{color_}
49 {
50 }
51
52 WireframeSource source;
53 Entity target;
54 asset::MeshView mesh;
55 std::vector<DirectX::XMMATRIX> instances;
56 Vector4 color;
57};
58} // namespace nc
WireframeSource
Specifies the source a WireframeRenderer should pull from.
Definition: WireframeRenderer.h:16
Identifies an object in the registry.
Definition: Entity.h:18
A four component vector.
Definition: Vector.h:48
Component for rendering wireframe models.
Definition: WireframeRenderer.h:41
Definition: AssetViews.h:51