------------------------------------------------------------------------------------------------
| 177 | |
| 178 | // ------------------------------------------------------------------------------------------------ |
| 179 | AnimationLayer::AnimationLayer(uint64_t id, const Element &element, const std::string &name, const Document &doc) : |
| 180 | Object(id, element, name), doc(doc) { |
| 181 | const Scope &sc = GetRequiredScope(element); |
| 182 | |
| 183 | // note: the props table here bears little importance and is usually absent |
| 184 | props = GetPropertyTable(doc, "AnimationLayer.FbxAnimLayer", element, sc, true); |
| 185 | } |
| 186 | |
| 187 | // ------------------------------------------------------------------------------------------------ |
| 188 | AnimationCurveNodeList AnimationLayer::Nodes(const char *const *target_prop_whitelist /*= nullptr*/, |
nothing calls this directly
no test coverage detected