Merge pull request #13 from Unity-Technologies/exception-error-fix

IndexOutOfRangeException error fix
This commit is contained in:
Nupur Yadav 2020-06-29 13:13:49 -07:00 коммит произвёл GitHub
Родитель f76cda3e42 1c00571769
Коммит bc84bf4b04
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -259,7 +259,7 @@ unsafe public class ForegroundObjectPlacer : JobComponentSystem
// If it cant be placed within the scene due to violations of the cropping or overlap
// constraints we stop processing the current foreground scene
// and start with the next one.
} while (placedSuccessfully && PlaceObjects.Length < NativePlacementStatics.MaxForegroundObjects);
} while (placedSuccessfully && PlaceObjects.Length < NativePlacementStatics.MaxForegroundObjects && CurriculumStatePtr->ScaleIndex < NativePlacementStatics.ScaleFactors.Length);
}
}

Просмотреть файл

@ -118,7 +118,7 @@ public class ProjectInitialization : MonoBehaviour
#endif
Manager.Instance.ShutdownNotification += CleanupState;
PerceptionCamera.renderedObjectInfosCalculated += OnRenderedObjectInfosCalculated;
//PerceptionCamera.renderedObjectInfosCalculated += OnRenderedObjectInfosCalculated;
}
static bool TryGetAppParamPathFromCommandLine(out string appParamPath)