| 329 | } |
| 330 | |
| 331 | void Prefab::UpdatePrefabName(std::string path) |
| 332 | { |
| 333 | std::vector<std::string> tokens = ofSplitString(path, GetPathSeparator()); |
| 334 | mPrefabName = tokens[tokens.size() - 1]; |
| 335 | ofStringReplace(mPrefabName, ".pfb", ""); |
| 336 | } |
| 337 | |
| 338 | void Prefab::SaveLayout(ofxJSONElement& moduleInfo) |
| 339 | { |
nothing calls this directly
no test coverage detected