aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/GameObject.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-06 14:16:55 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-06 14:16:55 +0100
commitc6ce7e13c5fe802a7eba35189916023925dbfdc1 (patch)
tree98a5d61b4f5484c269acfbf82e1007763270c998 /src/crepe/api/GameObject.cpp
parentdb5a3668aa4b3919ee8dce7ed0872aa5707f80ff (diff)
Added comments and replaced some auto with concrete types
Diffstat (limited to 'src/crepe/api/GameObject.cpp')
-rw-r--r--src/crepe/api/GameObject.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/crepe/api/GameObject.cpp b/src/crepe/api/GameObject.cpp
index 51cd08f..ffc9510 100644
--- a/src/crepe/api/GameObject.cpp
+++ b/src/crepe/api/GameObject.cpp
@@ -9,20 +9,21 @@ using namespace std;
GameObject::GameObject(uint32_t id, std::string name, std::string tag,
const Point & position, double rotation, double scale)
: id(id) {
+ // Add Transform and Metadata components
ComponentManager & mgr = ComponentManager::get_instance();
mgr.add_component<Transform>(this->id, position, rotation, scale);
mgr.add_component<Metadata>(this->id, name, tag);
}
void GameObject::set_parent(const GameObject & parent) {
- auto & mgr = ComponentManager::get_instance();
+ ComponentManager & mgr = ComponentManager::get_instance();
- // set parent on own Metadata component
+ // Set parent on own Metadata component
vector<reference_wrapper<Metadata>> this_metadata
= mgr.get_components_by_id<Metadata>(this->id);
this_metadata.at(0).get().parent = parent.id;
- // add own id to children list of parent's Metadata component
+ // Add own id to children list of parent's Metadata component
vector<reference_wrapper<Metadata>> parent_metadata
= mgr.get_components_by_id<Metadata>(parent.id);
parent_metadata.at(0).get().children.push_back(this->id);