aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mwe/ecs-homemade/src/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/mwe/ecs-homemade/src/main.cpp b/mwe/ecs-homemade/src/main.cpp
index 2ee6edd..9e230e5 100644
--- a/mwe/ecs-homemade/src/main.cpp
+++ b/mwe/ecs-homemade/src/main.cpp
@@ -69,9 +69,6 @@ int main() {
}
std::cout << std::endl;
- ComponentManager::GetInstance().DeleteAllComponentsOfId(gameObect0.mId);
- gameObect0.AddComponent<Rigidbody>(-10, -120, -564);
-
std::cout << "Finding all rigidbodies of entity 3" << std::endl;
std::vector<std::reference_wrapper<Rigidbody>> rigidbodyOfEntity3 = ComponentManager::GetInstance().GetComponentsByID<Rigidbody>(gameObect3.mId);
for(Rigidbody& rigidbodyEntity3 : rigidbodyOfEntity3) {