| 97 | std::vector<std::string> animComands; |
| 98 | |
| 99 | bool valid() { |
| 100 | if (staticMesh.meshes.size()) { |
| 101 | return true; |
| 102 | } |
| 103 | if (boundingMesh.meshes.size()) { |
| 104 | return true; |
| 105 | } |
| 106 | if (lodMeshes.size()) { |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | return false; |
| 111 | } |
| 112 | }; |
| 113 | |
| 114 |
no test coverage detected