mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
move setSpaceIndex() to cpp file for easier debugging in future
This commit is contained in:
parent
62df4999ef
commit
addbb597fc
2 changed files with 6 additions and 1 deletions
|
@ -3037,6 +3037,11 @@ void EntityItem::retrieveMarketplacePublicKey() {
|
|||
});
|
||||
}
|
||||
|
||||
void EntityItem::setSpaceIndex(int32_t index) {
|
||||
assert(_spaceIndex == -1);
|
||||
_spaceIndex = index;
|
||||
}
|
||||
|
||||
void EntityItem::preDelete() {
|
||||
}
|
||||
|
||||
|
|
|
@ -505,7 +505,7 @@ public:
|
|||
bool getCauterized() const { return _cauterized; }
|
||||
|
||||
float getBoundingRadius() const { return _boundingRadius; }
|
||||
void setSpaceIndex(int32_t index) { assert(_spaceIndex == -1); _spaceIndex = index; }
|
||||
void setSpaceIndex(int32_t index);
|
||||
int32_t getSpaceIndex() const { return _spaceIndex; }
|
||||
|
||||
virtual void preDelete();
|
||||
|
|
Loading…
Reference in a new issue