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.
o3de/Code/Editor
SJ 1f542838bb
[Mac] Generate O3DE SDK app bundle that can be notarized and distributed (#4150)
* [Mac] Initial support for building with hardened runtime enabled and code signing the binaries and bundles generated by the CMake install process.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Move call to ly_post_install_step
2. Entitlements should only be added for executables
3. Change use of CMake exec_program to newer execute_process
4. Remove broken symlinks from embedded Python frameworks
5. Run post install code signing only if hardened runtime is enabled

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove unnecessary flag

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove unnecessary additional call to condesign python inside a bundle

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Move commonly used install functions for codesigning, copying files, and fixing frameworks to a utility script
2. Remove unnecessary wait in the Editor/AP launchers I added earlier.
3. Codesign 3rd party libraries for distribution.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Codesigning on 3rd party libs should only happen when hardened runtime is enabled.
2. Change the order of the if blocks in Editor's main_dummy.cpp. This was causing strange notarization issues because it wass too similar to AP's main executable.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Add new line to end of file

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Move architecture specification to PAL_mac cmake file. 2. Codesign failure should be fatal.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Address some PR feedback

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove unnecessary comment. Change if to use IN_LIST.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* HOME may not always be defined. Adding alternate POSIX way of determining HOME.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Checking in partial work to get O3DE SDK built as an app bundle. Has a bunch of debug code that needs to be cleaned up.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove this and add it back later with fixed casing.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Adding file back with fixed case

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Add entitlements sparingly(only when necessary)
2. Convert entitlements to plist files which we can directly pass to codesign
3. Install python site-packages in the o3de_sdk launcher and then launch the project manger.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Move hardened runtime check to codesigning functions only. This way, non-hardened runtime install is identical to the former except for codesign. Makes it easy for QA to test internally.
2. Move cmake min version for install to the pre-install steps.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Remove the dummy launchers for AssetProcessor and Editor
2. Add loader_path to the rpaths of binaries outside an app bundle so that the dynamic loader can load their dependencies if any.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove file named main_dummy.cpp

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Add O3DE SDK launcher

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Add missing runtime dependencies to gems

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Update the path to binaries when codesigning to the correct one.
2. Remove some debug messages.
3. Move installed binary path setreg generation to the target install function. This way, we get the correct path to the bundle accounting for different configs and subdirectories.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Add explanatory comments.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. ly_install_add_install_path_setreg cannot be called during install target because the runtime dependencies are already processed by then.
2. The SDK launcher now uses the ProjectManager's bundle setreg to find the path to the installed binaries

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Update path to install relative binaries after merge from dev

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Only one config of the SDK launcher needs to be installed. Preinstall steps should not be run per config, but only once.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Install python dependencies using the get_python.sh script.
2. Replace any reference to hard-coded package name/version numbers with variables.
3. Add one more missing runtime dependency.
4. Misc. PR feedback.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Remove the need for setreg files in all tool bundle. Project binary path can be used instead.
2. Move O3DE_SDK_Launcher to Code/Tools/BundleLauncher
3. Add ly_install_run_script() function for install(SCRIPT) functionality.
4. Address some other PR feedback.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Add source permission when installing O3DE_SDK executable.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Rename setreg file to add specialization tag.

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Remove LY_BUILD_PERMUTATION that's not needed

Signed-off-by: amzn-sj <srikkant@amazon.com>

* 1. Add BinariesInstallPath.setreg to all our bundles like before. This is now only added during the install process though.
2. Fix path in Install_common.cmake

Signed-off-by: amzn-sj <srikkant@amazon.com>

* Fix comment

Signed-off-by: amzn-sj <srikkant@amazon.com>
4 years ago
..
Animation Removal of unused files from Code/Editor 4 years ago
AssetDatabase Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
AssetEditor Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
AssetImporter Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
AzAssetBrowser Switched over to AzQtComponents::TableView (#3949) 4 years ago
Commands Fixes clang cases 4 years ago
Common git mv Code\Sandbox\Editor Code/Editor 5 years ago
Controls Implemented C++23 deleted nullptr_t constructor/assignment for AZStd string classes (#4158) 4 years ago
Core Add support for keyboard events from xcb (#3971) 4 years ago
Dialogs Final fixes for MSVC 4 years ago
EditMode PR comments/fixes 4 years ago
Export Code/Editor 4 years ago
Geometry Legacy cleanup, part 2 (#3659) 4 years ago
Include Nearly all build jobs fail with a missing function in Archive.cpp (#4195) 4 years ago
Launcher Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
Lib/Tests Merge branch 'development' into cmake/warn_virtual 4 years ago
LightmapCompiler Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
MainWindow git mv Code\Sandbox\Editor Code/Editor 5 years ago
Objects Code/Editor 4 years ago
Platform [Mac] Generate O3DE SDK app bundle that can be notarized and distributed (#4150) 4 years ago
Plugins [Mac] Generate O3DE SDK app bundle that can be notarized and distributed (#4150) 4 years ago
QtUI Code/Editor 4 years ago
RenderHelpers Code/Editor 4 years ago
Style Introduce default font size. This fixes sizing and spacing for text rendered via a painter with not font specified. (#4069) 4 years ago
TimeOfDay git mv Code\Sandbox\Editor Code/Editor 5 years ago
TrackView Merge branch 'development' into cmake/warn_virtual 4 years ago
Translations git mv Code\Sandbox\Editor Code/Editor 5 years ago
Undo Legacy code cleanup - part 3 (#3903) 4 years ago
Util Implemented C++23 deleted nullptr_t constructor/assignment for AZStd string classes (#4158) 4 years ago
WelcomeScreen PerScreenDpi | QLabels incorrectly handle scale for icons (#4070) 4 years ago
res Create config files automatically and UX style updates (#3514) 4 years ago
2DViewport.cpp Code/Editor 4 years ago
2DViewport.h Code/Editor 4 years ago
AboutDialog.cpp PerScreenDpi | QLabels incorrectly handle scale for icons (#4070) 4 years ago
AboutDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
AboutDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ActionManager.cpp Fix unused warnings release (#3677) 4 years ago
ActionManager.h Code/Editor 4 years ago
AnimationContext.cpp Updating PR to change lower API to return AZStd::string instead of const char* for safety. 4 years ago
AnimationContext.h Code/Editor 4 years ago
BaseLibrary.cpp Merge branch 'development' into cmake/SPEC-7484 4 years ago
BaseLibrary.h Code/Editor 4 years ago
BaseLibraryItem.cpp more fixes, will merge fixes for w4245 and w4389 4 years ago
BaseLibraryItem.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
BaseLibraryManager.cpp Merge branch 'development' into cmake/SPEC-7484 4 years ago
BaseLibraryManager.h Code/Editor 4 years ago
CMakeLists.txt Set enable gem variants feature (#3631) 4 years ago
CVarMenu.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CVarMenu.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CheckOutDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CheckOutDialog.h Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
CheckOutDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
Clipboard.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
Clipboard.h Merge branch 'development' into cmake/SPEC-7179 4 years ago
ConfigGroup.cpp More fixes for Code/Editor 4 years ago
ConfigGroup.h Merge branch 'development' into cmake/SPEC-7484 4 years ago
ConsoleDialog.cpp Fixes clang cases 4 years ago
ConsoleDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CrtDebug.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
CryEdit.cpp Used actual types instead of auto and some more minor changes 4 years ago
CryEdit.h Final fixes for MSVC 4 years ago
CryEdit.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
CryEditDoc.cpp Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
CryEditDoc.h Merge branch 'development' into Prefab/SaveAllPrefabs 4 years ago
CryEditLiveCreate.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
CryEditPy.cpp Remove viewport freeze request bus (#4089) 4 years ago
CustomAspectRatioDlg.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
CustomAspectRatioDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CustomAspectRatioDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
CustomResolutionDlg.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
CustomResolutionDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CustomResolutionDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
CustomizeKeyboardDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
CustomizeKeyboardDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
CustomizeKeyboardDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
DPIAware.xml git mv Code\Sandbox\Editor Code/Editor 5 years ago
DimensionsDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
DimensionsDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
DimensionsDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
DisplaySettings.cpp Code/Editor 4 years ago
DisplaySettings.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
DisplaySettingsPythonFuncs.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
DisplaySettingsPythonFuncs.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
DocMultiArchive.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorCryEdit.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorDefs.h Add AZ_BUDGET_DEFINE/AZ_BUDGET_DECLARE and remove driller 4 years ago
EditorEnvironment.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorEnvironment.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorFileMonitor.cpp Merge branch 'development' into cmake/SPEC-7484 4 years ago
EditorFileMonitor.h Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
EditorModularViewportCameraComposer.cpp Remove unused lambda capture variable (#3634) 4 years ago
EditorModularViewportCameraComposer.h Expose camera input channels to the UI and ensure the cached values are refreshed when updated (#3607) 4 years ago
EditorModularViewportCameraComposerBus.h Expose camera input channels to the UI and ensure the cached values are refreshed when updated (#3607) 4 years ago
EditorPanelUtils.cpp unnecessary pragmas incompatible with clang 4 years ago
EditorPanelUtils.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesBus.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesDialog.cpp updates after file renames 4 years ago
EditorPreferencesDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorPreferencesPageAWS.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageAWS.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageExperimentalLighting.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageExperimentalLighting.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageFiles.cpp Merge branch 'develop' into LYN-4700 4 years ago
EditorPreferencesPageFiles.h Merge branch 'develop' into LYN-4700 4 years ago
EditorPreferencesPageGeneral.cpp Changed parameter names to reflect the recursive nature of functions and some more changes 4 years ago
EditorPreferencesPageGeneral.h Changed parameter names to reflect the recursive nature of functions and some more changes 4 years ago
EditorPreferencesPageViewportCamera.cpp updates after file renames 4 years ago
EditorPreferencesPageViewportCamera.h updates after file renames 4 years ago
EditorPreferencesPageViewportDebug.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageViewportDebug.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesPageViewportGeneral.cpp Expose sticky select option to the SettingsRegistry and disable by default (#4149) 4 years ago
EditorPreferencesPageViewportGeneral.h Expose sticky select option to the SettingsRegistry and disable by default (#4149) 4 years ago
EditorPreferencesPageViewportManipulator.cpp updates after file renames 4 years ago
EditorPreferencesPageViewportManipulator.h updates after file renames 4 years ago
EditorPreferencesTreeWidgetItem.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesTreeWidgetItem.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesTreeWidgetItemDelegate.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorPreferencesTreeWidgetItemDelegate.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorToolsApplication.cpp Additional test support for Manipulator Ditto commands (#4191) 4 years ago
EditorToolsApplication.h Additional test support for Manipulator Ditto commands (#4191) 4 years ago
EditorToolsApplicationAPI.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorVersion.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorViewportCamera.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorViewportCamera.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
EditorViewportSettings.cpp Expose sticky select option to the SettingsRegistry and disable by default (#4149) 4 years ago
EditorViewportSettings.h Expose sticky select option to the SettingsRegistry and disable by default (#4149) 4 years ago
EditorViewportWidget.cpp Additional test support for Manipulator Ditto commands (#4191) 4 years ago
EditorViewportWidget.h Additional test support for Manipulator Ditto commands (#4191) 4 years ago
ErrorDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ErrorDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ErrorDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ErrorRecorder.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ErrorRecorder.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ErrorReport.cpp Legacy code cleanup - part 3 (#3903) 4 years ago
ErrorReport.h Legacy code cleanup - part 3 (#3903) 4 years ago
ErrorReportDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
ErrorReportDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ErrorReportDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ErrorReportTableModel.cpp Code/Editor 4 years ago
ErrorReportTableModel.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
FBXExporterDialog.cpp Code/Editor 4 years ago
FBXExporterDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
FBXExporterDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
FileTypeUtils.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
FileTypeUtils.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
GameEngine.cpp Legacy code cleanup - part 3 (#3903) 4 years ago
GameEngine.h [redcode/crythread-2nd-pass] post merge include fixes 4 years ago
GameExporter.cpp Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
GameExporter.h Legacy code cleanup - part 3 (#3903) 4 years ago
GameResourcesExporter.cpp More fixes for Code/Editor 4 years ago
GameResourcesExporter.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
GenericSelectItemDialog.cpp Merge branch 'development' into cmake/SPEC-7484 4 years ago
GenericSelectItemDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
GenericSelectItemDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
GotoPositionDlg.cpp Code/Editor 4 years ago
GotoPositionDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
GotoPositionDlg.ui Resolved merge conflicts 5 years ago
GridUtils.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
IEditor.h Legacy code cleanup - part 3 (#3903) 4 years ago
IEditorImpl.cpp Remove redundant API calls from EditorViewportWidget and use new WorldToScreen call (#4022) 4 years ago
IEditorImpl.h Code/Editor 4 years ago
IEditorPanelUtils.h Remove ResourceSelectorHost and clean up/refactor related bits (#3050) 4 years ago
IObservable.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
IPostRenderer.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
IconListDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
IconManager.cpp Legacy code cleanup - part 3 (#3903) 4 years ago
IconManager.h Legacy cleanup (#3383) 4 years ago
InfoBar.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
KeyboardCustomizationSettings.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
KeyboardCustomizationSettings.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LayoutConfigDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
LayoutConfigDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LayoutConfigDialog.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
LayoutConfigDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
LayoutWnd.cpp Code/Editor 4 years ago
LayoutWnd.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
LevelFileDialog.cpp Code/Editor 4 years ago
LevelFileDialog.h Code/Editor 4 years ago
LevelFileDialog.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
LevelFileDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
LevelIndependentFileMan.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LevelIndependentFileMan.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LevelInfo.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
LevelInfo.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LevelTreeModel.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LevelTreeModel.h Code/Editor 4 years ago
LogFile.cpp Fixes clang cases 4 years ago
LogFile.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LogFileImpl.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LogFileImpl.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LogFile_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
LyViewPaneNames.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
MainStatusBar.cpp Added context menu on game folder status bar item to open project path in file explorer. 4 years ago
MainStatusBar.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
MainStatusBarItems.h Added context menu on game folder status bar item to open project path in file explorer. 4 years ago
MainWindow.cpp PR comments/fixes 4 years ago
MainWindow.h changes to the move rotate and scale 4 years ago
MainWindow.qrc Create config files automatically and UX style updates (#3514) 4 years ago
MainWindow_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
NewLevelDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
NewLevelDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
NewLevelDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
NewTerrainDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
NewTerrainDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
NewTerrainDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
PakManagerDlg.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
PakManagerDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
Plugin.cpp Code/Editor 4 years ago
Plugin.h Legacy cleanup (#3383) 4 years ago
PluginManager.cpp Code/Editor 4 years ago
PluginManager.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
PreferencesStdPages.cpp updates after file renames 4 years ago
PreferencesStdPages.h Code/Editor 4 years ago
ProcessInfo.cpp more replacements of A functions 4 years ago
ProcessInfo.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
PythonEditorEventsBus.h Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
PythonEditorFuncs.cpp Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
PythonEditorFuncs.h Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
QtUtil.h Merge branch 'development' into cmake/SPEC-7182 4 years ago
QtUtilWin.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
QtViewPane.h Code/Editor 4 years ago
QtViewPaneManager.cpp Code/Editor 4 years ago
QtViewPaneManager.h Code/Editor 4 years ago
QuickAccessBar.cpp runtime fixes (Editor running) 4 years ago
QuickAccessBar.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
QuickAccessBar.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
RenderViewport_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
Report.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ResizeResolutionDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
ResizeResolutionDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ResizeResolutionDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
Resource.h changes to the move rotate and scale 4 years ago
SelectEAXPresetDlg.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
SelectEAXPresetDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SelectEAXPresetDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
SelectLightAnimationDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SelectLightAnimationDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SelectSequenceDialog.cpp Code/Editor 4 years ago
SelectSequenceDialog.h Code/Editor 4 years ago
Settings.cpp Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
Settings.h Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
SettingsManager.cpp Legacy cleanup (#3383) 4 years ago
SettingsManager.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SettingsManagerDialog.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
SettingsManagerDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SettingsManagerDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ShortcutDispatcher.cpp fix for focus being removed from main viewport widget when interacting with viewport ui elements 4 years ago
ShortcutDispatcher.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
StartupLogoDialog.cpp PerScreenDpi | QLabels incorrectly handle scale for icons (#4070) 4 years ago
StartupLogoDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
StartupLogoDialog.qrc Updated splash and about screens (#1839) 5 years ago
StartupLogoDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
StartupTraceHandler.cpp Code/Editor 4 years ago
StartupTraceHandler.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
StringDlg.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
StringDlg.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
SurfaceTypeValidator.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
SurfaceTypeValidator.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ToolBox.cpp Code/Editor 4 years ago
ToolBox.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
ToolbarCustomizationDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ToolbarCustomizationDialog.h Code/Editor 4 years ago
ToolbarCustomizationDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ToolbarManager.cpp Code/Editor 4 years ago
ToolbarManager.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ToolsConfigPage.cpp Legacy cleanup, part 2 (#3659) 4 years ago
ToolsConfigPage.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ToolsConfigPage.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
TopRendererWnd.cpp Merge branch 'development' into cmake/linux_fix_warn_unused 4 years ago
TopRendererWnd.h Code/Editor 4 years ago
TrackViewExportKeyTimeDlg.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
TrackViewExportKeyTimeDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
TrackViewExportKeyTimeDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
TrackViewFBXImportPreviewDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
TrackViewFBXImportPreviewDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
TrackViewFBXImportPreviewDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
TrackViewNewSequenceDialog.cpp Updating PR to change lower API to return AZStd::string instead of const char* for safety. 4 years ago
TrackViewNewSequenceDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
TrackViewNewSequenceDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
TrustInfo.manifest git mv Code\Sandbox\Editor Code/Editor 5 years ago
UIEnumsDatabase.cpp Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
UIEnumsDatabase.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoConfigSpec.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoConfigSpec.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoDropDown.cpp More fixes for Code/Editor 4 years ago
UndoDropDown.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoViewPosition.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoViewPosition.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UndoViewRotation.cpp Address PR feedback 4 years ago
UndoViewRotation.h Camera Component, Editor Viewport Widget refactoring. 4 years ago
UsedResources.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UsedResources.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
UserMessageDefines.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
ViewManager.cpp Merge remote-tracking branch 'upstream/development' into camera_and_editor_viewport_widget_improvements 4 years ago
ViewManager.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
ViewPane.cpp enable warning 4296: 'operator': expression is always false 4 years ago
ViewPane.h Code/Editor 4 years ago
Viewport.cpp Remove redundant API calls from EditorViewportWidget and use new WorldToScreen call (#4022) 4 years ago
Viewport.h Merge branch 'development' into cmake/warn_virtual 4 years ago
ViewportManipulatorController.cpp Fix mouse capture behavior for Editor Viewport (#3417) 4 years ago
ViewportManipulatorController.h Fix for events that should have been consumed by manipulators (#3108) 4 years ago
ViewportTitleDlg.cpp Expose sticky select option to the SettingsRegistry and disable by default (#4149) 4 years ago
ViewportTitleDlg.h Code/Editor 4 years ago
ViewportTitleDlg.ui Added tooltips to the viewport title buttons (#1691) 5 years ago
WaitProgress.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
WaitProgress.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
WinWidgetId.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
WindowObserver_mac.h Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
WindowObserver_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
WipFeatureManager.cpp More fixes for Code/Editor 4 years ago
WipFeatureManager.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
WipFeaturesDlg.cpp More fixes for Code/Editor 4 years ago
WipFeaturesDlg.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 4 years ago
WipFeaturesDlg.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
WipFeaturesDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
arhitype_tree_00.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
arhitype_tree_01.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
arhitype_tree_02.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
arhitype_tree_03.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_00.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_01.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_02.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_03.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_04.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_05.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_06.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_07.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_08.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00005_09.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_00.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_01.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_02.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_03.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_04.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_05.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_06.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
bmp00006_07.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
editor_core_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_core_test_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_darwin_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_headers_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_lib_files.cmake updates after file renames 4 years ago
editor_lib_terrain_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_lib_test_files.cmake Fix issue with mouse input for viewport camera (#3210) 4 years ago
editor_lib_test_terrain_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
editor_win_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
main.cpp Shorten copyright headers by splitting into 2 lines (#2213) 4 years ago
o3de_logo.svg git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_00.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_01.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_02.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_03.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_04.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_05.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_06.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
particles_tree_07.png git mv Code\Sandbox\Editor Code/Editor 5 years ago
splashscreen_background_developer_preview.jpg Updated splash and about screens (#1839) 5 years ago
splashscreen_background_gradient.jpg git mv Code\Sandbox\Editor Code/Editor 5 years ago
water.png git mv Code\Sandbox\Editor Code/Editor 5 years ago