Skip to content
Snippets Groups Projects
Commit a339e63b authored by dohan's avatar dohan
Browse files

translate definitions starting with ANIMATION_ or CUSTOM_GRAPH_

parent 31aa961d
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan
String defName = opDef.getName().toString();
// GOAL, ANIMATION_FUNCTION, ANIMATION_IMGxx, SET_PREF_xxx,
if (defName.equals("GOAL") || defName.startsWith("ANIMATION_FUNCTION")
|| defName.startsWith("ANIMATION_IMG") || defName.startsWith("SET_PREF_")) {
|| defName.startsWith("ANIMATION_")|| defName.startsWith("CUSTOM_GRAPH_") || defName.startsWith("SET_PREF_")) {
bDefinitionsSet.add(opDef);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment