|
@@ -89,15 +89,6 @@ namespace AZ
|
|
result.Combine(componentLoadResult);
|
|
result.Combine(componentLoadResult);
|
|
}
|
|
}
|
|
|
|
|
|
- {
|
|
|
|
- JSR::ResultCode dependencyReadyLoadResult =
|
|
|
|
- ContinueLoadingFromJsonObjectField(&entityInstance->m_isDependencyReady,
|
|
|
|
- azrtti_typeid<decltype(entityInstance->m_isDependencyReady)>(),
|
|
|
|
- inputValue, "IsDependencyReady", context);
|
|
|
|
-
|
|
|
|
- result.Combine(dependencyReadyLoadResult);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
{
|
|
{
|
|
JSR::ResultCode runtimeActiveLoadResult =
|
|
JSR::ResultCode runtimeActiveLoadResult =
|
|
ContinueLoadingFromJsonObjectField(&entityInstance->m_isRuntimeActiveByDefault,
|
|
ContinueLoadingFromJsonObjectField(&entityInstance->m_isRuntimeActiveByDefault,
|
|
@@ -184,20 +175,6 @@ namespace AZ
|
|
result.Combine(resultComponents);
|
|
result.Combine(resultComponents);
|
|
}
|
|
}
|
|
|
|
|
|
- {
|
|
|
|
- AZ::ScopedContextPath subPathDependencyReady(context, "m_isDependencyReady");
|
|
|
|
- const bool* dependencyReady = &entityInstance->m_isDependencyReady;
|
|
|
|
- const bool* dependencyReadyDefault =
|
|
|
|
- defaultEntityInstance ? &defaultEntityInstance->m_isDependencyReady : nullptr;
|
|
|
|
-
|
|
|
|
- JSR::ResultCode resultDependencyReady =
|
|
|
|
- ContinueStoringToJsonObjectField(outputValue, "IsDependencyReady",
|
|
|
|
- dependencyReady, dependencyReadyDefault,
|
|
|
|
- azrtti_typeid<decltype(entityInstance->m_isDependencyReady)>(), context);
|
|
|
|
-
|
|
|
|
- result.Combine(resultDependencyReady);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
{
|
|
{
|
|
AZ::ScopedContextPath subPathRuntimeActive(context, "m_isRuntimeActiveByDefault");
|
|
AZ::ScopedContextPath subPathRuntimeActive(context, "m_isRuntimeActiveByDefault");
|
|
const bool* runtimeActive = &entityInstance->m_isRuntimeActiveByDefault;
|
|
const bool* runtimeActive = &entityInstance->m_isRuntimeActiveByDefault;
|