SurfaceData
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -271,7 +271,7 @@ namespace UnitTest
|
||||
{
|
||||
// We don't actually remove the entry from our list because we use handles as indices, so the indices can't change.
|
||||
// Clearing out the entity Id should be good enough.
|
||||
uint32 index = static_cast<uint32>(handle) - 1;
|
||||
uint32_t index = static_cast<uint32_t>(handle) - 1;
|
||||
if (index < entryList.size())
|
||||
{
|
||||
entryList[index].m_entityId = AZ::EntityId();
|
||||
@@ -281,7 +281,7 @@ namespace UnitTest
|
||||
void UpdateEntry(const SurfaceData::SurfaceDataRegistryHandle& handle, const SurfaceData::SurfaceDataRegistryEntry& entry,
|
||||
AZStd::vector<SurfaceData::SurfaceDataRegistryEntry>& entryList)
|
||||
{
|
||||
uint32 index = static_cast<uint32>(handle) - 1;
|
||||
uint32_t index = static_cast<uint32_t>(handle) - 1;
|
||||
if (index < entryList.size())
|
||||
{
|
||||
entryList[index] = entry;
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "SurfaceDataColliderComponent.h"
|
||||
|
||||
#include <AzCore/Debug/Profiler.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "SurfaceDataShapeComponent.h"
|
||||
|
||||
#include <AzCore/Component/TransformBus.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "EditorSurfaceDataColliderComponent.h"
|
||||
#include <AzCore/Serialization/Utils.h>
|
||||
#include <AzToolsFramework/API/ToolsApplicationAPI.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "EditorSurfaceDataShapeComponent.h"
|
||||
#include <AzCore/Serialization/Utils.h>
|
||||
#include <AzToolsFramework/API/ToolsApplicationAPI.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "EditorSurfaceDataSystemComponent.h"
|
||||
#include <AzCore/Serialization/SerializeContext.h>
|
||||
#include <AzCore/Serialization/EditContext.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include "EditorSurfaceTagListAsset.h"
|
||||
#include <AzCore/Serialization/EditContext.h>
|
||||
#include <AzCore/Serialization/SerializeContext.h>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include <SurfaceDataEditorModule.h>
|
||||
#include <SurfaceDataSystemComponent.h>
|
||||
#include <Editor/EditorSurfaceDataSystemComponent.h>
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include <SurfaceDataModule.h>
|
||||
|
||||
namespace SurfaceData
|
||||
|
||||
@@ -5,8 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include <SurfaceDataModule.h>
|
||||
#include <SurfaceDataSystemComponent.h>
|
||||
#include <Components/SurfaceDataColliderComponent.h>
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include <AzCore/Module/Module.h>
|
||||
|
||||
namespace SurfaceData
|
||||
|
||||
@@ -5,8 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include <AzCore/RTTI/BehaviorContext.h>
|
||||
#include <AzCore/Serialization/SerializeContext.h>
|
||||
#include <AzCore/Serialization/EditContext.h>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include <SurfaceData/Utility/SurfaceDataUtility.h>
|
||||
#include <Atom/RPI.Reflect/Model/ModelAssetCreator.h>
|
||||
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <platform.h> // Many CryCommon files require that this is included first.
|
||||
@@ -5,7 +5,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SurfaceData_precompiled.h"
|
||||
#include <SurfaceData/SurfaceTag.h>
|
||||
|
||||
#include <AzCore/RTTI/BehaviorContext.h>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include "TerrainSurfaceDataSystemComponent.h"
|
||||
#include <AzCore/Debug/Profiler.h>
|
||||
#include <AzCore/Math/MathUtils.h>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include <SurfaceData/Tests/SurfaceDataTestMocks.h>
|
||||
|
||||
#include <AzTest/AzTest.h>
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
#include "SurfaceData_precompiled.h"
|
||||
|
||||
#include <AzTest/AzTest.h>
|
||||
#include <Mocks/ITimerMock.h>
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
#
|
||||
|
||||
set(FILES
|
||||
Source/SurfaceData_precompiled.h
|
||||
Include/SurfaceData/SurfaceDataConstants.h
|
||||
Include/SurfaceData/SurfaceDataTypes.h
|
||||
Include/SurfaceData/SurfaceDataSystemRequestBus.h
|
||||
|
||||
Reference in New Issue
Block a user