You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
* Update the FileIOAlias naming to make the cache, project root and engine root paths more clear The alias of `@root@`, `@assets@`, and `@projectplatformcache@` has been collapsed to `@projectproductassets@` The alias of `@devroot@` and `@engroot@` has been collapsed to `@engroot@` The alias of `@devassets@` and `@projectroot@` has been collapsed to `@projectroot@` Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated use of devassets and devroot properties in python Those properties now use projectroot and engroot Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updating the alias @engroot@ alias path comment in each platform specific LocalFileIO_*.cpp file Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removed hardcoded size of 9 for the product asset alias. The ResolvePath function now just appends the @projectproductassets@ alias with the input path Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Remove duplicate @projectproductassets@ check in ProcessFileTreeRequest Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fix for typos in Hydra python test Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated LocalFileIO::Copy call on Windows to use the Unicode aware CopyFileW API Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated the AWSMetreicsGemAllocatorFixture to properly suppress asset cache write errors for Test file creation. Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removed unneeded call to set the @projectproductasstes@ alias at the bottom of the AssetSeedManagerTest SetUp Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Added a deprecated alias map to the FileIO System When a deprecated alias is accessed, the FileIO System logs an AZ_Error and indicates the alias that should be used Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated python test scripts to use the projectroot binding Retrieving the AutomatedTesting project path based on "<devroot>/AutomatedTesting" has been removed. Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated references to devroot and devgame within the codebase The GetAbsoluteDevGameFolderPath functions has been replaced with direct call to AZ::Utils::GetProjectPath The GetAbsoluteDevRootFolderPath functions has been replaced with direct calls to AZ::Utils::GetEnginePath Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated <engroot>/AutomatedTesting references to projectroot Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Replaced references that assumes the project path is <engroot>/AutomatedTesting with <projectroot> in the AutomatedTesting python test Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Correct casing in emfxworkspace file Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removed newly added AppendPathParts function Removed the Path constructors which accepts a PathIterable instance The PathIterable isn't safe to return to a user of the Path class as it might be referencing temporary paths supplied via PathView arguments Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed unused parameter warning Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Undid change to the LexicallyProximate function to set the path result to the base path. It needs to return the *this path if the pathResult is empty Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Moved the LocalFileIO ConvertToAbsolutePath implementations to AZ::Utils Fixed the ConvertToAbsolutePath implementation for Unix platforms to use a buffer that is size PATH_MAX(4096 on all our supported Unix platforms). Because the buffer before was AZ::IO::MaxPathLength which as a size of 1024, this was resulting in the Unix `realpath` function smashing the stack when it converts a path to an absolute path that is longer than 1024 characters Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated the EditorCore.Tests to attach the AZ Environment to the EditorCore shared library that is statically loaded on launch. Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed for DeprecatedAlaisesKeyVisitor Visit function causing the non string_view overloads being hidden causing a hidden base class function warning Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Changed the AWSMetricsGemMock to use a temporary for writing test assets Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated the LocalFileIO::ResolvePath function to use HasRootPath to determine if a path starts with a root path such as "D:", "D:/" or "/" IsAbsolute was not the corect check as the path of "D:" is a relative path. To be absolute according to the Windows the path must have a root directory. i.e "D:/" or "D:\" Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removed absolute path comment from LocalFile_UnixLike.cpp and LocalFile_Android.cpp FindFiles implementations Updated the ConvertToAlias to supply an AZ::IO::FixedMaxPath Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Replaced usage of the @projectproductassets@ alias with @engroot@ when referring to the LmbrCentral source folder in the CopyDependencyBuilderTest and the SeedBuilderTests Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated the ScriptCanvas Upgrade Tool to output backed up files to the Project User Path instead of the engine root Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed whitespacing issues in Application.cpp Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Remove unnecessary creation of a FixedMaxPath in the UpgradeTool.cpp Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Modified testSeedFolder variable in the SeedBuilderTests to use the @engroot@ alias instead of @projectproductassets@/.. alias when referring to the LmbrCentral Gem source path Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Updated references to the Project Asset Cache in the PythonTests. Those tests no longer use the logic `azlmbr.paths.projectroot / "Cache" / "pc"` to retrieve a path to the cache root but instead the `azlmbr.paths.projectproductassets` constant Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed the FileIO Deprecated Alias test on Windows Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removing @projectsourceassets@ alias, as it is only used once. Updated the PhysX EditorSystemComponent.cpp to query the ProjectPath form the SettingsRegistry. Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Replaced @projectproductassets@ alias with @products@ Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Rollback changes to the PhysX EditorSystemComponent.cpp The changes to use the ProjectPath from the SettingsRegistry has been implemented in PR #4497 Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> |
4 years ago | |
|---|---|---|
| .. | ||
| Animation | 4 years ago | |
| AssetDatabase | 4 years ago | |
| AssetEditor | 4 years ago | |
| AssetImporter | 4 years ago | |
| AzAssetBrowser | 4 years ago | |
| Commands | 4 years ago | |
| Common | 5 years ago | |
| Controls | 4 years ago | |
| Core | 4 years ago | |
| Dialogs | 4 years ago | |
| EditMode | 4 years ago | |
| Export | 4 years ago | |
| Geometry | 4 years ago | |
| Include | 4 years ago | |
| Launcher | 4 years ago | |
| Lib/Tests | 4 years ago | |
| LightmapCompiler | 4 years ago | |
| MainWindow | 5 years ago | |
| Objects | 4 years ago | |
| Platform | 4 years ago | |
| Plugins | 4 years ago | |
| QtUI | 4 years ago | |
| RenderHelpers | 4 years ago | |
| Style | 4 years ago | |
| TimeOfDay | 5 years ago | |
| TrackView | 4 years ago | |
| Translations | 5 years ago | |
| Undo | 4 years ago | |
| Util | 4 years ago | |
| WelcomeScreen | 4 years ago | |
| res | 4 years ago | |
| 2DViewport.cpp | 4 years ago | |
| 2DViewport.h | 4 years ago | |
| AboutDialog.cpp | 4 years ago | |
| AboutDialog.h | 4 years ago | |
| AboutDialog.ui | 5 years ago | |
| ActionManager.cpp | 4 years ago | |
| ActionManager.h | 4 years ago | |
| AnimationContext.cpp | 4 years ago | |
| AnimationContext.h | 4 years ago | |
| BaseLibrary.cpp | 4 years ago | |
| BaseLibrary.h | 4 years ago | |
| BaseLibraryItem.cpp | 4 years ago | |
| BaseLibraryItem.h | 4 years ago | |
| BaseLibraryManager.cpp | 4 years ago | |
| BaseLibraryManager.h | 4 years ago | |
| CMakeLists.txt | 4 years ago | |
| CVarMenu.cpp | 4 years ago | |
| CVarMenu.h | 4 years ago | |
| CheckOutDialog.cpp | 4 years ago | |
| CheckOutDialog.h | 4 years ago | |
| CheckOutDialog.ui | 5 years ago | |
| Clipboard.cpp | 4 years ago | |
| Clipboard.h | 4 years ago | |
| ConfigGroup.cpp | 4 years ago | |
| ConfigGroup.h | 4 years ago | |
| ConsoleDialog.cpp | 4 years ago | |
| ConsoleDialog.h | 4 years ago | |
| CrtDebug.cpp | 4 years ago | |
| CryEdit.cpp | 4 years ago | |
| CryEdit.h | 4 years ago | |
| CryEdit.rc | 5 years ago | |
| CryEditDoc.cpp | 4 years ago | |
| CryEditDoc.h | 4 years ago | |
| CryEditLiveCreate.rc | 5 years ago | |
| CryEditPy.cpp | 4 years ago | |
| CustomAspectRatioDlg.cpp | 4 years ago | |
| CustomAspectRatioDlg.h | 4 years ago | |
| CustomAspectRatioDlg.ui | 5 years ago | |
| CustomResolutionDlg.cpp | 4 years ago | |
| CustomResolutionDlg.h | 4 years ago | |
| CustomResolutionDlg.ui | 5 years ago | |
| CustomizeKeyboardDialog.cpp | 4 years ago | |
| CustomizeKeyboardDialog.h | 4 years ago | |
| CustomizeKeyboardDialog.ui | 5 years ago | |
| DPIAware.xml | 5 years ago | |
| DimensionsDialog.cpp | 4 years ago | |
| DimensionsDialog.h | 4 years ago | |
| DimensionsDialog.ui | 5 years ago | |
| DisplaySettings.cpp | 4 years ago | |
| DisplaySettings.h | 4 years ago | |
| DisplaySettingsPythonFuncs.cpp | 4 years ago | |
| DisplaySettingsPythonFuncs.h | 4 years ago | |
| DocMultiArchive.h | 4 years ago | |
| EditorCryEdit.rc | 5 years ago | |
| EditorDefs.h | 4 years ago | |
| EditorEnvironment.cpp | 4 years ago | |
| EditorEnvironment.h | 4 years ago | |
| EditorFileMonitor.cpp | 4 years ago | |
| EditorFileMonitor.h | 4 years ago | |
| EditorModularViewportCameraComposer.cpp | 4 years ago | |
| EditorModularViewportCameraComposer.h | 4 years ago | |
| EditorModularViewportCameraComposerBus.h | 4 years ago | |
| EditorPanelUtils.cpp | 4 years ago | |
| EditorPanelUtils.h | 4 years ago | |
| EditorPreferencesBus.h | 4 years ago | |
| EditorPreferencesDialog.cpp | 4 years ago | |
| EditorPreferencesDialog.h | 4 years ago | |
| EditorPreferencesDialog.ui | 5 years ago | |
| EditorPreferencesPageAWS.cpp | 4 years ago | |
| EditorPreferencesPageAWS.h | 4 years ago | |
| EditorPreferencesPageExperimentalLighting.cpp | 4 years ago | |
| EditorPreferencesPageExperimentalLighting.h | 4 years ago | |
| EditorPreferencesPageFiles.cpp | 4 years ago | |
| EditorPreferencesPageFiles.h | 4 years ago | |
| EditorPreferencesPageGeneral.cpp | 4 years ago | |
| EditorPreferencesPageGeneral.h | 4 years ago | |
| EditorPreferencesPageViewportCamera.cpp | 4 years ago | |
| EditorPreferencesPageViewportCamera.h | 4 years ago | |
| EditorPreferencesPageViewportDebug.cpp | 4 years ago | |
| EditorPreferencesPageViewportDebug.h | 4 years ago | |
| EditorPreferencesPageViewportGeneral.cpp | 4 years ago | |
| EditorPreferencesPageViewportGeneral.h | 4 years ago | |
| EditorPreferencesPageViewportManipulator.cpp | 4 years ago | |
| EditorPreferencesPageViewportManipulator.h | 4 years ago | |
| EditorPreferencesTreeWidgetItem.cpp | 4 years ago | |
| EditorPreferencesTreeWidgetItem.h | 4 years ago | |
| EditorPreferencesTreeWidgetItemDelegate.cpp | 4 years ago | |
| EditorPreferencesTreeWidgetItemDelegate.h | 4 years ago | |
| EditorToolsApplication.cpp | 4 years ago | |
| EditorToolsApplication.h | 4 years ago | |
| EditorToolsApplicationAPI.h | 4 years ago | |
| EditorVersion.rc | 5 years ago | |
| EditorViewportCamera.cpp | 4 years ago | |
| EditorViewportCamera.h | 4 years ago | |
| EditorViewportSettings.cpp | 4 years ago | |
| EditorViewportSettings.h | 4 years ago | |
| EditorViewportWidget.cpp | 4 years ago | |
| EditorViewportWidget.h | 4 years ago | |
| ErrorDialog.cpp | 4 years ago | |
| ErrorDialog.h | 4 years ago | |
| ErrorDialog.ui | 5 years ago | |
| ErrorRecorder.cpp | 4 years ago | |
| ErrorRecorder.h | 4 years ago | |
| ErrorReport.cpp | 4 years ago | |
| ErrorReport.h | 4 years ago | |
| ErrorReportDialog.cpp | 4 years ago | |
| ErrorReportDialog.h | 4 years ago | |
| ErrorReportDialog.ui | 5 years ago | |
| ErrorReportTableModel.cpp | 4 years ago | |
| ErrorReportTableModel.h | 4 years ago | |
| FBXExporterDialog.cpp | 4 years ago | |
| FBXExporterDialog.h | 4 years ago | |
| FBXExporterDialog.ui | 5 years ago | |
| FileTypeUtils.cpp | 4 years ago | |
| FileTypeUtils.h | 4 years ago | |
| GameEngine.cpp | 4 years ago | |
| GameEngine.h | 4 years ago | |
| GameExporter.cpp | 4 years ago | |
| GameExporter.h | 4 years ago | |
| GameResourcesExporter.cpp | 4 years ago | |
| GameResourcesExporter.h | 4 years ago | |
| GenericSelectItemDialog.cpp | 4 years ago | |
| GenericSelectItemDialog.h | 4 years ago | |
| GenericSelectItemDialog.ui | 5 years ago | |
| GotoPositionDlg.cpp | 4 years ago | |
| GotoPositionDlg.h | 4 years ago | |
| GotoPositionDlg.ui | 5 years ago | |
| GridUtils.h | 4 years ago | |
| IEditor.h | 4 years ago | |
| IEditorImpl.cpp | 4 years ago | |
| IEditorImpl.h | 4 years ago | |
| IEditorPanelUtils.h | 4 years ago | |
| IObservable.h | 4 years ago | |
| IPostRenderer.h | 4 years ago | |
| IconListDialog.ui | 5 years ago | |
| IconManager.cpp | 4 years ago | |
| IconManager.h | 4 years ago | |
| InfoBar.qrc | 5 years ago | |
| KeyboardCustomizationSettings.cpp | 4 years ago | |
| KeyboardCustomizationSettings.h | 4 years ago | |
| LayoutConfigDialog.cpp | 4 years ago | |
| LayoutConfigDialog.h | 4 years ago | |
| LayoutConfigDialog.qrc | 5 years ago | |
| LayoutConfigDialog.ui | 5 years ago | |
| LayoutWnd.cpp | 4 years ago | |
| LayoutWnd.h | 4 years ago | |
| LevelFileDialog.cpp | 4 years ago | |
| LevelFileDialog.h | 4 years ago | |
| LevelFileDialog.qrc | 5 years ago | |
| LevelFileDialog.ui | 5 years ago | |
| LevelIndependentFileMan.cpp | 4 years ago | |
| LevelIndependentFileMan.h | 4 years ago | |
| LevelInfo.cpp | 4 years ago | |
| LevelInfo.h | 4 years ago | |
| LevelTreeModel.cpp | 4 years ago | |
| LevelTreeModel.h | 4 years ago | |
| LogFile.cpp | 4 years ago | |
| LogFile.h | 4 years ago | |
| LogFileImpl.cpp | 4 years ago | |
| LogFileImpl.h | 4 years ago | |
| LogFile_mac.mm | 4 years ago | |
| LyViewPaneNames.h | 4 years ago | |
| MainStatusBar.cpp | 4 years ago | |
| MainStatusBar.h | 4 years ago | |
| MainStatusBarItems.h | 4 years ago | |
| MainWindow.cpp | 4 years ago | |
| MainWindow.h | 4 years ago | |
| MainWindow.qrc | 4 years ago | |
| MainWindow_mac.mm | 4 years ago | |
| NewLevelDialog.cpp | 4 years ago | |
| NewLevelDialog.h | 4 years ago | |
| NewLevelDialog.ui | 5 years ago | |
| NewTerrainDialog.cpp | 4 years ago | |
| NewTerrainDialog.h | 4 years ago | |
| NewTerrainDialog.ui | 5 years ago | |
| PakManagerDlg.qrc | 5 years ago | |
| PakManagerDlg.ui | 5 years ago | |
| Plugin.cpp | 4 years ago | |
| Plugin.h | 4 years ago | |
| PluginManager.cpp | 4 years ago | |
| PluginManager.h | 4 years ago | |
| PreferencesStdPages.cpp | 4 years ago | |
| PreferencesStdPages.h | 4 years ago | |
| ProcessInfo.cpp | 4 years ago | |
| ProcessInfo.h | 4 years ago | |
| PythonEditorEventsBus.h | 4 years ago | |
| PythonEditorFuncs.cpp | 4 years ago | |
| PythonEditorFuncs.h | 4 years ago | |
| QtUtil.h | 4 years ago | |
| QtUtilWin.h | 4 years ago | |
| QtViewPane.h | 4 years ago | |
| QtViewPaneManager.cpp | 4 years ago | |
| QtViewPaneManager.h | 4 years ago | |
| QuickAccessBar.cpp | 4 years ago | |
| QuickAccessBar.h | 4 years ago | |
| QuickAccessBar.ui | 5 years ago | |
| RenderViewport_mac.mm | 4 years ago | |
| Report.h | 4 years ago | |
| ResizeResolutionDialog.cpp | 4 years ago | |
| ResizeResolutionDialog.h | 4 years ago | |
| ResizeResolutionDialog.ui | 5 years ago | |
| Resource.h | 4 years ago | |
| SelectEAXPresetDlg.cpp | 4 years ago | |
| SelectEAXPresetDlg.h | 4 years ago | |
| SelectEAXPresetDlg.ui | 5 years ago | |
| SelectLightAnimationDialog.cpp | 4 years ago | |
| SelectLightAnimationDialog.h | 4 years ago | |
| SelectSequenceDialog.cpp | 4 years ago | |
| SelectSequenceDialog.h | 4 years ago | |
| Settings.cpp | 4 years ago | |
| Settings.h | 4 years ago | |
| SettingsManager.cpp | 4 years ago | |
| SettingsManager.h | 4 years ago | |
| SettingsManagerDialog.cpp | 4 years ago | |
| SettingsManagerDialog.h | 4 years ago | |
| SettingsManagerDialog.ui | 5 years ago | |
| ShortcutDispatcher.cpp | 4 years ago | |
| ShortcutDispatcher.h | 4 years ago | |
| StartupLogoDialog.cpp | 4 years ago | |
| StartupLogoDialog.h | 4 years ago | |
| StartupLogoDialog.qrc | 5 years ago | |
| StartupLogoDialog.ui | 5 years ago | |
| StartupTraceHandler.cpp | 4 years ago | |
| StartupTraceHandler.h | 4 years ago | |
| StringDlg.cpp | 4 years ago | |
| StringDlg.h | 4 years ago | |
| SurfaceTypeValidator.cpp | 4 years ago | |
| SurfaceTypeValidator.h | 4 years ago | |
| ToolBox.cpp | 4 years ago | |
| ToolBox.h | 4 years ago | |
| ToolbarCustomizationDialog.cpp | 4 years ago | |
| ToolbarCustomizationDialog.h | 4 years ago | |
| ToolbarCustomizationDialog.ui | 5 years ago | |
| ToolbarManager.cpp | 4 years ago | |
| ToolbarManager.h | 4 years ago | |
| ToolsConfigPage.cpp | 4 years ago | |
| ToolsConfigPage.h | 4 years ago | |
| ToolsConfigPage.ui | 5 years ago | |
| TopRendererWnd.cpp | 4 years ago | |
| TopRendererWnd.h | 4 years ago | |
| TrackViewExportKeyTimeDlg.cpp | 4 years ago | |
| TrackViewExportKeyTimeDlg.h | 4 years ago | |
| TrackViewExportKeyTimeDlg.ui | 5 years ago | |
| TrackViewFBXImportPreviewDialog.cpp | 4 years ago | |
| TrackViewFBXImportPreviewDialog.h | 4 years ago | |
| TrackViewFBXImportPreviewDialog.ui | 5 years ago | |
| TrackViewNewSequenceDialog.cpp | 4 years ago | |
| TrackViewNewSequenceDialog.h | 4 years ago | |
| TrackViewNewSequenceDialog.ui | 5 years ago | |
| TrustInfo.manifest | 5 years ago | |
| UIEnumsDatabase.cpp | 4 years ago | |
| UIEnumsDatabase.h | 4 years ago | |
| UndoConfigSpec.cpp | 4 years ago | |
| UndoConfigSpec.h | 4 years ago | |
| UndoDropDown.cpp | 4 years ago | |
| UndoDropDown.h | 4 years ago | |
| UndoViewPosition.cpp | 4 years ago | |
| UndoViewPosition.h | 4 years ago | |
| UndoViewRotation.cpp | 4 years ago | |
| UndoViewRotation.h | 4 years ago | |
| UsedResources.cpp | 4 years ago | |
| UsedResources.h | 4 years ago | |
| UserMessageDefines.h | 4 years ago | |
| ViewManager.cpp | 4 years ago | |
| ViewManager.h | 4 years ago | |
| ViewPane.cpp | 4 years ago | |
| ViewPane.h | 4 years ago | |
| Viewport.cpp | 4 years ago | |
| Viewport.h | 4 years ago | |
| ViewportManipulatorController.cpp | 4 years ago | |
| ViewportManipulatorController.h | 4 years ago | |
| ViewportTitleDlg.cpp | 4 years ago | |
| ViewportTitleDlg.h | 4 years ago | |
| ViewportTitleDlg.ui | 4 years ago | |
| WaitProgress.cpp | 4 years ago | |
| WaitProgress.h | 4 years ago | |
| WinWidgetId.h | 4 years ago | |
| WindowObserver_mac.h | 4 years ago | |
| WindowObserver_mac.mm | 4 years ago | |
| WipFeatureManager.cpp | 4 years ago | |
| WipFeatureManager.h | 4 years ago | |
| WipFeaturesDlg.cpp | 4 years ago | |
| WipFeaturesDlg.h | 4 years ago | |
| WipFeaturesDlg.qrc | 5 years ago | |
| WipFeaturesDlg.ui | 5 years ago | |
| arhitype_tree_00.png | 5 years ago | |
| arhitype_tree_01.png | 5 years ago | |
| arhitype_tree_02.png | 5 years ago | |
| arhitype_tree_03.png | 5 years ago | |
| bmp00005_00.png | 5 years ago | |
| bmp00005_01.png | 5 years ago | |
| bmp00005_02.png | 5 years ago | |
| bmp00005_03.png | 5 years ago | |
| bmp00005_04.png | 5 years ago | |
| bmp00005_05.png | 5 years ago | |
| bmp00005_06.png | 5 years ago | |
| bmp00005_07.png | 5 years ago | |
| bmp00005_08.png | 5 years ago | |
| bmp00005_09.png | 5 years ago | |
| bmp00006_00.png | 5 years ago | |
| bmp00006_01.png | 5 years ago | |
| bmp00006_02.png | 5 years ago | |
| bmp00006_03.png | 5 years ago | |
| bmp00006_04.png | 5 years ago | |
| bmp00006_05.png | 5 years ago | |
| bmp00006_06.png | 5 years ago | |
| bmp00006_07.png | 5 years ago | |
| editor_core_files.cmake | 4 years ago | |
| editor_core_test_files.cmake | 4 years ago | |
| editor_darwin_files.cmake | 4 years ago | |
| editor_files.cmake | 4 years ago | |
| editor_headers_files.cmake | 4 years ago | |
| editor_lib_files.cmake | 4 years ago | |
| editor_lib_terrain_files.cmake | 4 years ago | |
| editor_lib_test_files.cmake | 4 years ago | |
| editor_lib_test_terrain_files.cmake | 4 years ago | |
| editor_win_files.cmake | 4 years ago | |
| main.cpp | 4 years ago | |
| o3de_logo.svg | 5 years ago | |
| particles_tree_00.png | 5 years ago | |
| particles_tree_01.png | 5 years ago | |
| particles_tree_02.png | 5 years ago | |
| particles_tree_03.png | 5 years ago | |
| particles_tree_04.png | 5 years ago | |
| particles_tree_05.png | 5 years ago | |
| particles_tree_06.png | 5 years ago | |
| particles_tree_07.png | 5 years ago | |
| splashscreen_background_developer_preview.jpg | 5 years ago | |
| splashscreen_background_gradient.jpg | 5 years ago | |
| water.png | 5 years ago | |