diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-15 20:49:37 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-15 20:49:37 +0100 | 
| commit | fdd5c471dffd4a204a91e8d1d70567fa56ea29a5 (patch) | |
| tree | ece2c3e32261fe9b0f7ccd3aa3bd4e98f74e3b28 /src/crepe/api/GameObject.cpp | |
| parent | e8cd950b8ebd152d76d588d4fedc7f4c239b0835 (diff) | |
`make format`
Diffstat (limited to 'src/crepe/api/GameObject.cpp')
| -rw-r--r-- | src/crepe/api/GameObject.cpp | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/src/crepe/api/GameObject.cpp b/src/crepe/api/GameObject.cpp index 2b836e1..287e81d 100644 --- a/src/crepe/api/GameObject.cpp +++ b/src/crepe/api/GameObject.cpp @@ -7,7 +7,11 @@  using namespace crepe;  using namespace std; -GameObject::GameObject(ComponentManager & component_manager, game_object_id_t id, const std::string & name, const std::string & tag, const Vector2 & position, double rotation, double scale) : id(id), component_manager(component_manager) { +GameObject::GameObject(ComponentManager & component_manager, game_object_id_t id, +					   const std::string & name, const std::string & tag, +					   const Vector2 & position, double rotation, double scale) +	: id(id), +	  component_manager(component_manager) {  	// Add Transform and Metadata components  	ComponentManager & mgr = this->component_manager; @@ -19,10 +23,12 @@ void GameObject::set_parent(const GameObject & parent) {  	ComponentManager & mgr = this->component_manager;  	// Set parent on own Metadata component -	vector<reference_wrapper<Metadata>> this_metadata = mgr.get_components_by_id<Metadata>(this->id); +	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 -	vector<reference_wrapper<Metadata>> parent_metadata = mgr.get_components_by_id<Metadata>(parent.id); +	vector<reference_wrapper<Metadata>> parent_metadata +		= mgr.get_components_by_id<Metadata>(parent.id);  	parent_metadata.at(0).get().children.push_back(this->id);  } |