mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 11:53:28 +02:00
Update clipboard call to exportModels to not scale to tree size
This commit is contained in:
parent
a39a7e2356
commit
68f1ad79d6
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ void ClipboardScriptingInterface::nudgeVoxel(float x, float y, float z, float s,
|
|||
|
||||
|
||||
void ClipboardScriptingInterface::exportModels(const QString& filename, float x, float y, float z, float s) {
|
||||
Application::getInstance()->exportModels(filename, x / (float)TREE_SCALE, y / (float)TREE_SCALE, z / (float)TREE_SCALE, s / (float)TREE_SCALE);
|
||||
Application::getInstance()->exportModels(filename, x, y, z, s);
|
||||
}
|
||||
|
||||
void ClipboardScriptingInterface::importModels(const QString& filename) {
|
||||
|
|
Loading…
Reference in a new issue