mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-15 12:38:46 +02:00
added const to valid inputs
This commit is contained in:
parent
1b6c85edb0
commit
14935e5924
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@
|
|||
const QString listPolyUrl = "https://poly.googleapis.com/v1/assets?";
|
||||
const QString getPolyUrl = "https://poly.googleapis.com/v1/assets/model?";
|
||||
|
||||
QStringList validFormats = QStringList() << "BLOCKS" << "FBX" << "GLTF" << "GLTF2" << "OBJ" << "TILT" << "";
|
||||
QStringList validCategories = QStringList() << "animals" << "architecture" << "art" << "food" <<
|
||||
const QStringList validFormats = QStringList() << "BLOCKS" << "FBX" << "GLTF" << "GLTF2" << "OBJ" << "TILT" << "";
|
||||
const QStringList validCategories = QStringList() << "animals" << "architecture" << "art" << "food" <<
|
||||
"nature" << "objects" << "people" << "scenes" << "technology" << "transport" << "";
|
||||
|
||||
GooglePolyScriptingInterface::GooglePolyScriptingInterface() {
|
||||
|
|
Loading…
Reference in a new issue