aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/GameObject.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-26 09:28:12 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-26 09:28:12 +0100
commit07ac07ce4cafe8ec454a1e53b1541dcaab10cf40 (patch)
treedef28215f182f750bc4ff6d892455f7ce0dd6eb2 /src/crepe/api/GameObject.cpp
parentf52e7e1450d47604983dba5f3cbab364ffd77cdc (diff)
It is now possible to reset the persistent flag
Diffstat (limited to 'src/crepe/api/GameObject.cpp')
-rw-r--r--src/crepe/api/GameObject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/GameObject.cpp b/src/crepe/api/GameObject.cpp
index 6c1de12..9ef4682 100644
--- a/src/crepe/api/GameObject.cpp
+++ b/src/crepe/api/GameObject.cpp
@@ -31,8 +31,8 @@ void GameObject::set_parent(const GameObject & parent) {
parent_metadata.at(0).get().children.push_back(this->id);
}
-void GameObject::set_persistent() {
+void GameObject::set_persistent(bool persistent) {
ComponentManager & mgr = this->component_manager;
- mgr.set_persistent(this->id);
+ mgr.set_persistent(this->id, persistent);
}