/**
  * This method change the assets path without using a tool for it. That is necessary when old animations are changed at LO generation
  */
 public void changeAssetPath(int index, string path)
 {
     resources.deleteAsset(assetsInformation[index].name);
     resources.addAsset(assetsInformation[index].name, path);
 }