mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
Merge pull request #5522 from huffman/fix-billboard-url
Fix BillboardOverlay breaking when changing url
This commit is contained in:
commit
65b9c7bed8
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void Image3DOverlay::update(float deltatime) {
|
|||
}
|
||||
|
||||
void Image3DOverlay::render(RenderArgs* args) {
|
||||
if (!_texture) {
|
||||
if (!_isLoaded) {
|
||||
_isLoaded = true;
|
||||
_texture = DependencyManager::get<TextureCache>()->getTexture(_url);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue