NcEngine
AssetData.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "Assets.h"
8#include "ncasset/Assets.h"
9
10#include <span>
11#include <string>
12#include <vector>
13
14namespace nc::asset
15{
17enum class UpdateAction : uint8_t
18{
19 Load,
20 Unload,
21 UnloadAll
22};
23
26{
27 std::span<const BonesData> data;
28 std::vector<std::string> ids;
29 UpdateAction updateAction;
30};
31
34{
35 CubeMap cubeMap;
36 size_t id;
37};
38
41{
43 std::span<const CubeMapWithId> data_);
44
45 std::span<const CubeMapWithId> data;
46 UpdateAction updateAction;
47};
48
51{
52 std::span<const MeshVertex> vertices;
53 std::span<const uint32_t> indices;
54};
55
58{
59 std::span<const std::string> ids;
60 std::span<const SkeletalAnimation> data;
61 UpdateAction updateAction;
62};
63
66{
67 Texture texture;
68 size_t id;
69};
70
73{
75 std::span<const TextureWithId> data_);
76
77 std::span<const TextureWithId> data;
78 UpdateAction updateAction;
79};
80
83{
84 std::span<const ConvexHull> convexHulls;
85 std::span<const AssetId> ids;
86 UpdateAction updateAction;
87};
88
91{
92 std::span<const MeshCollider> colliders;
93 std::span<const AssetId> ids;
94 UpdateAction updateAction;
95};
96} // namespace nc::asset
UpdateAction
Indicates the type of an asset update event.
Definition: AssetData.h:18
Event data for mesh bones/rig load and unload operations.
Definition: AssetData.h:26
Event data for ConvexHull load and unload operations.
Definition: AssetData.h:83
Definition: Assets.h:146
Event data for cubemap load and unload operations.
Definition: AssetData.h:41
A data/id pair for a loaded CubeMap.
Definition: AssetData.h:34
Event data for MeshCollider load and unload operations.
Definition: AssetData.h:91
Event data for mesh load and unload operations.
Definition: AssetData.h:51
Event data for skeletal animation load and unload operations.
Definition: AssetData.h:58
Definition: Assets.h:135
Event data for texture load and unload operations.
Definition: AssetData.h:73
A data/id pair for a loaded texture.
Definition: AssetData.h:66