|
@@ -949,6 +949,12 @@ namespace
|
|
|
{
|
|
|
return testAnimation(node.String(), node.meta);
|
|
|
}
|
|
|
+
|
|
|
+ std::string videoFile(const JsonNode & node)
|
|
|
+ {
|
|
|
+ TEST_FILE(node.meta, "Video/", node.String(), EResType::VIDEO);
|
|
|
+ return "Video file \"" + node.String() + "\" was not found";
|
|
|
+ }
|
|
|
|
|
|
std::string imageFile(const JsonNode & node)
|
|
|
{
|
|
@@ -1040,6 +1046,7 @@ namespace
|
|
|
ret["soundFile"] = Formats::soundFile;
|
|
|
ret["defFile"] = Formats::defFile;
|
|
|
ret["animationFile"] = Formats::animationFile;
|
|
|
+ ret["videoFile"] = Formats::videoFile;
|
|
|
ret["imageFile"] = Formats::imageFile;
|
|
|
|
|
|
return ret;
|