| 79 | {"ADBE Text Stroke Color", TextAnimatorPropertiesType::StrokeColor}}; |
| 80 | |
| 81 | static TextPropertyType GetTextPropertyType(const AEGP_StreamRefH& streamHandle) { |
| 82 | std::string matchName = GetStreamMatchName(streamHandle); |
| 83 | auto result = TextPropertyTypeMap.find(matchName); |
| 84 | if (result == TextPropertyTypeMap.end()) { |
| 85 | return TextPropertyType::Unknown; |
| 86 | } |
| 87 | return result->second; |
| 88 | } |
| 89 | |
| 90 | static TextAnimatorsType GetTextAnimatorsType(const AEGP_StreamRefH& streamHandle) { |
| 91 | std::string matchName = GetStreamMatchName(streamHandle); |
no test coverage detected