mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Fix build error
This commit is contained in:
parent
2046fcfd09
commit
1c9a4fd322
1 changed files with 5 additions and 0 deletions
|
@ -108,6 +108,11 @@ bool EntityScriptingInterface::canReplaceContent() {
|
|||
return nodeList->getThisNodeCanReplaceContent();
|
||||
}
|
||||
|
||||
bool EntityScriptingInterface::canGetAndSetPrivateUserData() {
|
||||
auto nodeList = DependencyManager::get<NodeList>();
|
||||
return nodeList->getThisNodeCanGetAndSetPrivateUserData();
|
||||
}
|
||||
|
||||
void EntityScriptingInterface::setEntityTree(EntityTreePointer elementTree) {
|
||||
if (_entityTree) {
|
||||
disconnect(_entityTree.get(), &EntityTree::addingEntityPointer, this, &EntityScriptingInterface::onAddingEntity);
|
||||
|
|
Loading…
Reference in a new issue