Fix frame sequences

This commit is contained in:
Bill 2021-02-26 01:59:32 -05:00
parent 38fb354711
commit a6a19a595b

View File

@ -305,7 +305,7 @@ export class VisualizationMapper extends Mapper
{ {
if(!xml || !xml.length || !output) return; if(!xml || !xml.length || !output) return;
const i = 0; let i = 0;
for(const offsetXML of xml) for(const offsetXML of xml)
{ {
@ -316,6 +316,8 @@ export class VisualizationMapper extends Mapper
if(offsetXML.y !== undefined) offset.y = offsetXML.y; if(offsetXML.y !== undefined) offset.y = offsetXML.y;
output[i.toString()] = offset; output[i.toString()] = offset;
i++;
} }
} }