summaryrefslogtreecommitdiffstats
path: root/editor/collada
diff options
context:
space:
mode:
Diffstat (limited to 'editor/collada')
-rw-r--r--editor/collada/collada.cpp10
-rw-r--r--editor/collada/collada.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/editor/collada/collada.cpp b/editor/collada/collada.cpp
index cf39abdc53..8ef9d17083 100644
--- a/editor/collada/collada.cpp
+++ b/editor/collada/collada.cpp
@@ -1773,12 +1773,12 @@ void Collada::_parse_animation(XMLParser &parser) {
return;
}
- Map<String, Vector<float> > float_sources;
- Map<String, Vector<String> > string_sources;
+ Map<String, Vector<float>> float_sources;
+ Map<String, Vector<String>> string_sources;
Map<String, int> source_strides;
- Map<String, Map<String, String> > samplers;
- Map<String, Vector<String> > source_param_names;
- Map<String, Vector<String> > source_param_types;
+ Map<String, Map<String, String>> samplers;
+ Map<String, Vector<String>> source_param_names;
+ Map<String, Vector<String>> source_param_types;
String id = "";
if (parser.has_attribute("id"))
diff --git a/editor/collada/collada.h b/editor/collada/collada.h
index 10ed42260b..4707d7d779 100644
--- a/editor/collada/collada.h
+++ b/editor/collada/collada.h
@@ -570,8 +570,8 @@ public:
Vector<AnimationClip> animation_clips;
Vector<AnimationTrack> animation_tracks;
- Map<String, Vector<int> > referenced_tracks;
- Map<String, Vector<int> > by_id_tracks;
+ Map<String, Vector<int>> referenced_tracks;
+ Map<String, Vector<int>> by_id_tracks;
float animation_length;