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
Chris Burel d2cdb511d0
Improve the framerate of Editor widgets that update in the TickBus (#7408)
Previously, with no level loaded in the main editor, and no assets loaded
in the EMotionFX editor, the AnimGraph viewport would only update at 15fps,
even on a 64 core machine.

Digging into this with Pix, I found that EMotionFX's UI would only get
updated for every other call to the ComponentApplication tick.

The Editor's QApplication instance controls how the
`ComponentApplication::OnTick` method is called. This is done in the
`maybeProcessIdle()` method. Generally, I found callstacks like this:

```
EditorQtApplication::maybeProcessIdle()
  CCryEditApp::OnIdle()
    CCryEditApp::IdleProcessing()
      CGameEngine::Update()                  # ~2.2ms
        PhysX::Update()                      # ~1.8ms
        EMotionFX::Update()                  # ~0.2ms
          calls QWidget::update() on all the widgets that change per
          frame, only puts update events on the event queue, doesn't
          paint anything
      AZ::ComponentApplication::TickSystem() # ~25ms
        renders the frame with Atom          # ~24ms
```

The `maybeProcessIdle()` method is invoked by a QTimer, with a timeout
that changes depending on the application state. If the Editor is in
game mode, it used a timeout of 0, which essentially forced the game to
run at as high an fps as possible. If the Editor application has focus,
it used a timeout of 1ms, asking for the idle processing to happen at
1000 fps.  Otherwise, it used a timeout of 10ms, asking for idle
processing at 100 fps.

Those fps targets are not realistic. What happened in this case is that
while the PhysX system was being updated, while the previous
`maybeProcessIdle()` call was still processing, the idle processing
timer would timeout again, and place a timer event on Qt's event queue,
before anything else had a chance to do anything. Only afterward would
EMotionFX's MainWindow::OnTick would be invoked, placing paint events on
Qt's event queue.

The fix for this is to use a single shot timer at the end of each
`maybeProcessIdle()` call. This ensures that any events that are
enqueued during the `maybeProcessIdle()` call are processed prior to the
next call to `maybeProcessIdle()`.

Signed-off-by: Chris Burel <burelc@amazon.com>
4 years ago
..
AssetDatabase Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
AssetEditor Cleanup SerializeContext.h pt.1 (#4264) 4 years ago
AssetImporter Fix: only files can be selected 4 years ago
AzAssetBrowser Adding Collapse All tooltip in the Asset Browser (#7236) 4 years ago
Commands Removes CommandManagerBus from Code/Editor 4 years ago
Controls Removed legacy PropertyResourceCtrl 4 years ago
Core Improve the framerate of Editor widgets that update in the TickBus (#7408) 4 years ago
Dialogs Clang/Clazy pass over AzCore (#5045) 4 years ago
Export Cry Legacy: the Lessening (#5961) 4 years ago
Include Removed legacy/unused IEventLoopHook 4 years ago
Lib/Tests Removed legacy/unused IEventLoopHook 4 years ago
MainWindow git mv Code\Sandbox\Editor Code/Editor 5 years ago
Objects Remove an unused variable and explicitly initialize some bools to false 4 years ago
Platform Fix lambda returning `false` instead of `nullptr` 4 years ago
Plugins Fixed platform settings not using unique values for Android and iOS (#7198) 4 years ago
QtUI Removed legacy QtUi/ClickableLabel and re-worked about dialog to use QLabel for terms of use label 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
TrackView Merge branch 'development' of https://github.com/o3de/o3de into cgalvan/RemovedUnusedViewPaneClass 4 years ago
Translations git mv Code\Sandbox\Editor Code/Editor 5 years ago
Undo Cry Legacy: the Lessening (#5961) 4 years ago
Util Remove unused variables 4 years ago
WelcomeScreen [LYN-8041] Enable relocation of the Project Game Release Layout (#5380) 4 years ago
res Create config files automatically and UX style updates (#3514) 4 years ago
2DViewport.cpp Updates and fixes to viewport placement (#5712) 4 years ago
2DViewport.h Merge commit 'e34ea3bcaa0306699804072c6bce6eb01f65fc52' into puvvadar/gitflow_211118_o3de 4 years ago
AboutDialog.cpp Removed legacy QtUi/ClickableLabel and re-worked about dialog to use QLabel for terms of use label 4 years ago
AboutDialog.h Removed legacy QtUi/ClickableLabel and re-worked about dialog to use QLabel for terms of use label 4 years ago
AboutDialog.ui Removed legacy QtUi/ClickableLabel and re-worked about dialog to use QLabel for terms of use label 4 years ago
ActionManager.cpp Improved look for viewport ui border close button (#5757) 4 years ago
ActionManager.h Improved look for viewport ui border close button (#5757) 4 years ago
AnimationContext.cpp Removal and Replacement of the CryTimer (gEnv->pTimer) (#5409) 4 years ago
AnimationContext.h Code/Editor 4 years ago
CMakeLists.txt Removed unused AWSNativeSDK dependency from Editor (#7091) 4 years ago
CheckOutDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
Clipboard.h Merge branch 'development' into cmake/SPEC-7179 5 years ago
ConsoleDialog.cpp Fixes clang cases 4 years ago
ConsoleDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
CryEdit.cpp Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
CryEdit.h Removed legacy/unused IEventLoopHook 4 years ago
CryEdit.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
CryEditDoc.cpp Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
CryEditDoc.h Removes multiple Rendering files from LmbrCentral that are no longer used 4 years ago
CryEditPy.cpp Removed legacy Editor config spec 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) 5 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 Small `Code/Editor` cleanup pass (#4909) 4 years ago
CustomResolutionDlg.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
CustomizeKeyboardDialog.cpp Small `Code/Editor` cleanup pass (#4909) 4 years ago
CustomizeKeyboardDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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
DisplaySettings.cpp Initial improvements to fix viewport icon selection and draw order (#6284) 4 years ago
DisplaySettings.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
DisplaySettingsPythonFuncs.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
DisplaySettingsPythonFuncs.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
DocMultiArchive.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorCryEdit.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorDefs.h Removes some CryAssert methods that are not being used because we redirected it all to AZ_Assert 4 years ago
EditorEnvironment.cpp Merged the Editor.Camera.Tests with the Editor.Tests (#5463) 4 years ago
EditorEnvironment.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorFileMonitor.cpp Update the FileIO Aliases (#4186) 4 years ago
EditorFileMonitor.h Editor code: tidy up BOOLs,NULLs and overrides pt5. (#2876) 4 years ago
EditorModularViewportCameraComposer.cpp Prevent the camera from easily being set to an invalid orientation (#6203) 4 years ago
EditorModularViewportCameraComposer.h Improvements to feedback for default camera orbit point (when no entity is selected) (#5397) 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
EditorPreferencesDialog.cpp System shortcuts crash the Editor when Global Preferences are open (#6994) 4 years ago
EditorPreferencesDialog.h System shortcuts crash the Editor when Global Preferences are open (#6994) 4 years ago
EditorPreferencesDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorPreferencesPageAWS.cpp Remove an unused variable and explicitly initialize some bools to false 4 years ago
EditorPreferencesPageAWS.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesPageExperimentalLighting.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesPageExperimentalLighting.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesPageFiles.cpp Moved Max Number of Entries Shown in Asset Browser Search View to EditorViewportSettings (#4660) 4 years ago
EditorPreferencesPageFiles.h Moved Max Number of Entries Shown in Asset Browser Search View to EditorViewportSettings (#4660) 4 years ago
EditorPreferencesPageGeneral.cpp Removed legacy Editor config spec 4 years ago
EditorPreferencesPageGeneral.h Removed legacy Editor config spec 4 years ago
EditorPreferencesPageViewportCamera.cpp Update default camera orbit behavior (#5301) 4 years ago
EditorPreferencesPageViewportCamera.h Update default camera orbit behavior (#5301) 4 years ago
EditorPreferencesPageViewportDebug.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesPageViewportDebug.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesPageViewportGeneral.cpp Removed unused legacy show icons option 4 years ago
EditorPreferencesPageViewportGeneral.h Removed unused legacy show icons option 4 years ago
EditorPreferencesPageViewportManipulator.cpp Manipulator Bounds updates (#5959) 4 years ago
EditorPreferencesPageViewportManipulator.h Manipulator Bounds updates (#5959) 4 years ago
EditorPreferencesTreeWidgetItem.cpp Cleanup SerializeContext.h pt.1 (#4264) 4 years ago
EditorPreferencesTreeWidgetItem.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesTreeWidgetItemDelegate.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorPreferencesTreeWidgetItemDelegate.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
EditorVersion.rc git mv Code\Sandbox\Editor Code/Editor 5 years ago
EditorViewportCamera.cpp Remove camera LookAtAfterInterpolation (#4391) 4 years ago
EditorViewportCamera.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
EditorViewportSettings.cpp chore: remove unused setting and fixed compiling errors 4 years ago
EditorViewportSettings.h chore: remove unused setting and fixed compiling errors 4 years ago
EditorViewportWidget.cpp Fixed issue with viewport not rendering when creating a new level 4 years ago
EditorViewportWidget.h Initial improvements to fix viewport icon selection and draw order (#6284) 4 years ago
ErrorDialog.cpp Small `Code/Editor` cleanup pass (#4909) 4 years ago
ErrorDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
ErrorDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ErrorRecorder.cpp Removed legacy editor DatabaseLibrary code. 4 years ago
ErrorRecorder.h removes BaseLibrary/Item/Manager unused code from Code/Editor 4 years ago
ErrorReport.cpp Removed legacy editor DatabaseLibrary code. 4 years ago
ErrorReport.h Fixes for rebasing 4 years ago
ErrorReportDialog.cpp Removed legacy editor DatabaseLibrary code. 4 years ago
ErrorReportDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
ErrorReportDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ErrorReportTableModel.cpp Removed legacy editor DatabaseLibrary code. 4 years ago
ErrorReportTableModel.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
FBXExporterDialog.cpp Code/Editor 4 years ago
FBXExporterDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
FileTypeUtils.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
GameEngine.cpp Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
GameEngine.h Cry Legacy: the Lessening (#5961) 4 years ago
GameExporter.cpp Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
GameExporter.h Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
GameResourcesExporter.cpp More fixes for Code/Editor 4 years ago
GameResourcesExporter.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
GenericSelectItemDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
GotoPositionDlg.cpp Prevent the camera from easily being set to an invalid orientation (#6203) 4 years ago
GotoPositionDlg.h Prevent the camera from easily being set to an invalid orientation (#6203) 4 years ago
GotoPositionDlg.ui Resolved merge conflicts 5 years ago
GridUtils.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
IEditor.h Removed legacy/unused IEventLoopHook 4 years ago
IEditorImpl.cpp Removed legacy/unused IEventLoopHook 4 years ago
IEditorImpl.h Removed legacy/unused IEventLoopHook 4 years ago
IPostRenderer.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
IconListDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
IconManager.cpp Cry Legacy: the Lessening (#5961) 4 years ago
IconManager.h Cry Legacy: the Lessening (#5961) 4 years ago
InfoBar.qrc git mv Code\Sandbox\Editor Code/Editor 5 years ago
KeyboardCustomizationSettings.cpp Small `Code/Editor` cleanup pass (#4909) 4 years ago
KeyboardCustomizationSettings.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 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 Fix clang 13 compilation problems (#5791) 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) 5 years ago
LevelIndependentFileMan.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
LevelTreeModel.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
LogFileImpl.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
LogFileImpl.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
LogFile_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
LyViewPaneNames.h Animation Editor: Remove preview label (#5449) 4 years ago
MainStatusBar.cpp [development] removed CryLibrary (#5474) 4 years ago
MainStatusBar.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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 Deprecate IsPrefabSystemForLevelsEnabled and use IsPrefabSystemEnabled everywhere (#7327) 4 years ago
MainWindow.h Merge branch 'development' into optimization/unused_files 4 years ago
MainWindow.qrc Removed some more unused Editor code and images 4 years ago
MainWindow_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
NewLevelDialog.cpp Removed some more unused Editor code and images 4 years ago
NewLevelDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
NewLevelDialog.ui Fixed tab order for default input focus on new level dialog 4 years ago
Plugin.cpp Removed unused IViewPane Editor class 4 years ago
Plugin.h Merge branch 'development' of https://github.com/o3de/o3de into cgalvan/RemovedUnusedViewPaneClass 4 years ago
PluginManager.cpp Code/Editor 4 years ago
PluginManager.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
PreferencesStdPages.cpp Fix compile issues blocking adoption of Pix 2108 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) 5 years ago
PythonEditorEventsBus.h Updated the GameApplication to mount the engine.pak (#4128) 4 years ago
PythonEditorFuncs.cpp Cleanup SerializeContext.h pt.1 (#4264) 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) 5 years ago
QtViewPane.h Removed unused IViewPane Editor class 4 years ago
QtViewPaneManager.cpp Minor formatting. 4 years ago
QtViewPaneManager.h Removed unused IViewPane Editor class 4 years ago
QuickAccessBar.cpp runtime fixes (Editor running) 4 years ago
QuickAccessBar.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
Resource.h Removed more unused Editor code and images 4 years ago
SelectLightAnimationDialog.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
SelectLightAnimationDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
SelectSequenceDialog.cpp Code/Editor 4 years ago
SelectSequenceDialog.h Code/Editor 4 years ago
Settings.cpp Remove an unused variable and explicitly initialize some bools to false 4 years ago
Settings.h Removed legacy Editor config spec 4 years ago
SettingsManager.cpp Legacy cleanup (#3383) 4 years ago
SettingsManager.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 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 5 years ago
ShortcutDispatcher.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
StartupLogoDialog.cpp Update Splashscreen and About Us dialogs for General Availability (#4901) 4 years ago
StartupLogoDialog.h Update Splashscreen and About Us dialogs for General Availability (#4901) 4 years ago
StartupLogoDialog.qrc Update Splashscreen and About Us dialogs for General Availability (#4901) 4 years ago
StartupLogoDialog.ui Updated splash screen and about dialog with development name 4 years ago
StartupTraceHandler.cpp Removes some CryAssert methods that are not being used because we redirected it all to AZ_Assert 4 years ago
StartupTraceHandler.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
StringDlg.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
StringDlg.h Editor code: tidy up BOOLs,NULLs and overrides pt6. 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) 5 years ago
ToolbarCustomizationDialog.h Code/Editor 4 years ago
ToolbarCustomizationDialog.ui git mv Code\Sandbox\Editor Code/Editor 5 years ago
ToolbarManager.cpp LYN-4946 | Merge Game Mode buttons in the Play Controls toolbar (#5557) 4 years ago
ToolbarManager.h LYN-4946 | Merge Game Mode buttons in the Play Controls toolbar (#5557) 4 years ago
ToolsConfigPage.cpp Legacy cleanup, part 2 (#3659) 4 years ago
ToolsConfigPage.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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 GCC Support for Linux 4 years ago
TrackViewExportKeyTimeDlg.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
TrackViewExportKeyTimeDlg.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 years ago
TrackViewFBXImportPreviewDialog.h Shorten copyright headers by splitting into 2 lines (#2213) 5 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) 5 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
UndoDropDown.cpp Fix "index out of range" error in AssetProcessor (#4324) 4 years ago
UndoDropDown.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
UsedResources.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
UsedResources.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
ViewManager.cpp Merge remote-tracking branch 'upstream/development' into camera_and_editor_viewport_widget_improvements 4 years ago
ViewManager.h Removed unused IViewPane Editor class 4 years ago
ViewPane.cpp Prefab Focus Mode | Fixes to viewport top toolbar (#7094) 4 years ago
ViewPane.h Code/Editor 4 years ago
Viewport.cpp Removed more unused Editor code and images 4 years ago
Viewport.h Removed more unused Editor code and images 4 years ago
ViewportManipulatorController.cpp Add manipulator for atom render plugin in animation editor. (#7068) 4 years ago
ViewportManipulatorController.h Add manipulator for atom render plugin in animation editor. (#7068) 4 years ago
ViewportTitleDlg.cpp Prefab Focus Mode | Fixes to viewport top toolbar (#7094) 4 years ago
ViewportTitleDlg.h Prefab Focus Mode | Fixes to viewport top toolbar (#7094) 4 years ago
ViewportTitleDlg.ui Prefab Focus Mode | Fixes to viewport top toolbar (#7094) 4 years ago
WaitProgress.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
WaitProgress.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
WindowObserver_mac.h Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
WindowObserver_mac.mm Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
editor_core_files.cmake Removed legacy PropertyResourceCtrl 4 years ago
editor_core_test_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
editor_darwin_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
editor_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
editor_headers_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
editor_lib_files.cmake Removed legacy PropertyResourceCtrl 4 years ago
editor_lib_test_files.cmake Removed legacy QtUi/ClickableLabel and re-worked about dialog to use QLabel for terms of use label 4 years ago
editor_win_files.cmake Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
main.cpp Shorten copyright headers by splitting into 2 lines (#2213) 5 years ago
o3de_logo.svg git mv Code\Sandbox\Editor Code/Editor 5 years ago
splashscreen_background_2021_11.jpg Update Splashscreen and About Us dialogs for General Availability (#4901) 4 years ago
splashscreen_background_gradient.jpg git mv Code\Sandbox\Editor Code/Editor 5 years ago