Esteban Papp
51ecbbca81
Removes ResizeResolutionDialog from Code/Editor
...
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com >
2022-01-20 14:57:38 -08:00
Esteban Papp
b3bd293390
Removes ConfigGroup from Code/Editor
...
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com >
2022-01-20 14:56:58 -08:00
Esteban Papp
412cf851a0
Removes DataBaseItem/Library/Manager from Code/Editor
...
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com >
2022-01-20 14:55:18 -08:00
Esteban Papp
7c77f21184
removes BaseLibrary/Item/Manager unused code from Code/Editor
...
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com >
2022-01-20 14:54:18 -08:00
Chris Galvan
514f0c1546
Merge pull request #6935 from RoddieKieley/issue5299
...
issue5299: Resolved via change to not disable custom window decorations.
2022-01-20 15:17:37 -06:00
Nicholas Van Sickle
687a3f1092
Merge pull request #7013 from aws-lumberyard-dev/mnaumov/FixingEOOrdering_signofffix
...
Fixing entity outliner order when creating prefab
2022-01-20 13:09:03 -08:00
Steve Pham
59e43813f0
GCC Support for Linux
...
Updates and fixes to support GCC for Linux
Signed-off-by: Steve Pham <82231385+spham-amzn@users.noreply.github.com >
Co-authored-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com >
2022-01-20 13:00:02 -08:00
Terry Michaels
3479b6e2d9
Merge pull request #6974 from aws-lumberyard-dev/SJ/TerrainOptimization
...
[Terrain] Update Terrain components to use the new ProcessRegion API functions
2022-01-20 14:32:02 -06:00
Chris Galvan
0ae1ab9eea
Merge pull request #6441 from pollend/feature/5886-add-unhandled-exception-support
...
feature: add Exception Handler support for unix
2022-01-20 12:25:02 -06:00
Mikhail Naumov
f599a30fae
Merge branch 'development' of https://github.com/aws-lumberyard-dev/o3de into mnaumov/FixingEOOrdering_signofffix
...
Signed-off-by: Mikhail Naumov <mnaumov@amazon.com >
2022-01-20 11:54:18 -06:00
amzn-sj
d6cdd1d053
Update another comment
...
Signed-off-by: amzn-sj <srikkant@amazon.com >
2022-01-20 09:51:38 -08:00
Ignacio Martinez
e1b2458591
Asset Browser Collapse All Fix ( #6996 )
...
* Added Icon
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Fixed indent in ui file
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
2022-01-20 13:09:00 +00:00
Michael Pollind
c95845d45b
chore: replace isspace
...
Signed-off-by: Michael Pollind <mpollind@gmail.com >
2022-01-19 20:02:50 -08:00
amzn-sj
7bba4172ec
Add a GetNumSamplesFromRegion function which returns the number of samples given a region and step size. Update Terrain Feature Processor to use this function to get the number of samples instead of computing num samples independently.
...
Signed-off-by: amzn-sj <srikkant@amazon.com >
2022-01-19 18:04:56 -08:00
AMZN-byrcolin
63d755b8f1
fix launcher not showing gems ( #7015 )
...
Signed-off-by: byrcolin <byrcolin@amazon.com >
2022-01-19 17:09:40 -08:00
Chris Galvan
7adccd0d48
Merge pull request #6722 from tjmgd/bug-import-restrictions-95
...
Fix: only files can be selected
2022-01-19 16:36:29 -06:00
Mikhail Naumov
f7c120b4b7
PR feedback
...
Signed-off-by: Mikhail Naumov <mnaumov@amazon.com >
2022-01-19 15:15:15 -06:00
Mikhail Naumov
3506a39759
Merge branch 'mnaumov/FixingEOOrdering' of https://github.com/aws-lumberyard-dev/o3de into mnaumov/FixingEOOrdering_signofffix
...
Signed-off-by: Mikhail Naumov <mnaumov@amazon.com >
2022-01-19 15:01:21 -06:00
Vincent Liu
5cac67bfad
Silence aws logging for unit test and have a new AWSNativeSDK as entry point for test env ( #6865 )
...
* Silence aws logging for unit test
* Create a new AWSNativeSDK entry point for test environment only
* Update naming for target and file
2022-01-19 12:11:39 -08:00
Nicholas Van Sickle
cfd721bce1
A bit of Generic DOM tidying/fixup ( #6914 )
...
* A bit of Generic DOM tidying/fixup
- Refactor out a test fixture for all DOM tests / benchmarks
- Optimize `GetType` implementation to not use `AZStd::variant::visit` (benchmark included to A/B the implementations)
- Tag a few more mutating Value functions with "Mutable" to avoid astonishing copy-on-writes
Benchmark results for GetType implementation:
```
DomValueBenchmark/AzDomValueGetType_UsingVariantIndex 18.2 ns 18.0 ns 40727273 items_per_second=443.667M/s
DomValueBenchmark/AzDomValueGetType_UsingVariantVisit 32.2 ns 32.2 ns 21333333 items_per_second=248.242M/s
```
Signed-off-by: Nicholas Van Sickle <nvsickle@amazon.com >
2022-01-19 11:52:57 -08:00
Mike Balfour
83878e6377
Change GetValues() to take in const positions. ( #6987 )
...
* Change GetValues() to take in const positions.
To support this, span needed some template deductions to correctly convert from non-const containers to const ones.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Removed the most problematic template deduction rules.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Remove duplicate validate_iterator methods.
iterator type is a pointer, not a value, so "const iterator" and "const const_iterator" produce the same function signature.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Fixed the span types.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
2022-01-19 12:57:52 -06:00
Danilo Aimini
a63ea12a1f
System shortcuts crash the Editor when Global Preferences are open ( #6994 )
...
* Changes to the keyPressEvent override of the Editor Preferences Dialog to prevent infinite loops on focus switches.
Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com >
* Renaming function to clarify its purpose.
Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com >
2022-01-19 09:52:27 -08:00
Ignacio Martinez
65a749494e
Fix: Entity Outliner: Outliner is unusable with the Editor in slice mode ( #6983 )
...
* Fixed vertical offset
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Fixed QPoint
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Fixed Entry delegate
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* SetRenderHint in Entry delegate
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Save and restore painter inside the highlighter
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Restoring Painter
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Removed comment
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
2022-01-19 16:45:52 +00:00
Guthrie Adams
843ca5a0ad
Merge pull request #6960 from aws-lumberyard-dev/Atom/guthadam/atom_tools_shared_asset_browser
...
Atom Tools: moving custom asset browser code to common location
2022-01-19 09:37:09 -06:00
T.J. McGrath-Daly
b10195ee1f
Merge branch 'development' into bug-import-restrictions-95
2022-01-19 09:46:29 +00:00
Guthrie Adams
eb51cd4c06
Atom Tools: moving custom asset browser code to common location
...
Consolidated duplicate asset browser code from multiple tools into single class in atom tools framework
Moved creation of asset browser and Python terminal windows into base main window class
Fixed docked window orientations
Added checks to asset browser to prevent crashes if tree state saver was null
Signed-off-by: Guthrie Adams <guthadam@amazon.com >
2022-01-18 18:05:23 -06:00
Chris Galvan
74623bb1d7
Removed some more unused Editor code and images
...
Signed-off-by: Chris Galvan <chgalvan@amazon.com >
2022-01-18 10:21:54 -06:00
Ignacio Martinez
e166479bb7
Fixed Camera angle on switch levels ( #6954 )
...
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
2022-01-18 15:47:27 +00:00
Ignacio Martinez
c1bbe3806d
Asset Browser Search Entries Highlight ( #6133 )
...
* Adding hilight to search entries
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Delegate Cleanup
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* delegate cleanup
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* General cleanup
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* reformatting file
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Updated Comments
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Abstracted richText functions
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Extracting highlighting behavior
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Added highlighter to the entity outliner
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Addressed Code Review Comments
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Switched to static functions
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* changed variable name
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Removed unused variable
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Apply changes to the Entity Outliner Model
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
* Removed duplicated line
Signed-off-by: AMZN-Igarri <82394219+AMZN-Igarri@users.noreply.github.com >
2022-01-18 12:29:06 +00:00
John Jones-Steele
0b9dc78d67
Fixed problem with inputting numbers in sliders ( #6859 )
...
* Fixed problem with inputting numbers in sliders
Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com >
* Changes from PR
Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com >
* Missed removing pragma optimize
Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com >
2022-01-17 17:58:19 +00:00
Roddie Kieley
646443cfe5
issue5299: Resolved via change to not disable custom window decorations.
...
Signed-off-by: Roddie Kieley <rkieley@redhat.com >
2022-01-15 14:54:23 -03:30
Alex Peterson
b87e6896e6
ScreenToWorld and WorldToScreen Camera functionality ( #6903 )
...
Signed-off-by: Alex Peterson <26804013+AMZN-alexpete@users.noreply.github.com >
2022-01-14 16:43:01 -08:00
Mike Balfour
c403fa3db6
More GetValues() overrides ( #6896 )
...
* Benchmarks and tests for Image and Constant GetValues
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Verify GetValues for Perlin and Random Gradients
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Standardized the assert format for GetValues().
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* More GetValues unit tests and test cleanup
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Fixed typos
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* GetValues() unit tests for surface gradients.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Benchmarks for ShapeAreaFalloff Gradient
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Added benchmarks for all remaining gradients and cleaned up the helper methods.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Renamed class for better report formatting.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Added missing Mocks dependencies for the Editor tests.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* First batch of specific GetValues() overrides.
Each one is measurably faster than the generic version. Also, in ShapeAreaFalloffGradient, I optimized and simplified the logic a bit, so GetValue() is marginally faster too.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Change GetValues() to use span and add more overrides.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Convert GetValues() to use AZStd::span and added more overrides.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Add missing include.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* PR feedback - switch to fill
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
* Fixed the logic and added unit tests and comments.
Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com >
2022-01-14 13:30:45 -06:00
Scott Romero
7680d1f9d0
[development] fixed issue with dangling budget pointers if the budget tracker is torn down and rebuilt ( #6801 )
...
Signed-off-by: AMZN-ScottR 24445312+AMZN-ScottR@users.noreply.github.com
2022-01-14 11:28:21 -08:00
AMZN-byrcolin
c778606c89
Templates restricted ( #6498 )
...
* Templates/Restricted upgrade/fixes:
Fixed template storage format: templates now only store true relative paths and no longer save "origin" paths and "optional" has been removed, it was never used.
Upgraded all templates to new standard
Template system now correctly handles child objects: Child objects no longer have to specify restricted they inherit from parent
Restricted now operates at the object level and makes no assumptions about parent
Restricted templates can now be combined and seperated on creation
ly_get_list_relative_filename has been deprecated for o3de_pal_dir
All Gems/Projects/Templates updated to use new code
Signed-off-by: byrcolin <byrcolin@amazon.com >
2022-01-14 10:27:20 -08:00
lumberyard-employee-dm
b62d130475
Updated AnimNode registration in LyShine and Maestro to register to a member variable map ( #6786 )
...
* Updated the Maestro MovieSystem and LyShine AnimationSystem to register
Anim Nodes and Anim Params into a member variable map
Previously the registration was occuring in a global variable map inside
of Movie.cpp and UiAnimationSystem.cpp
Rolled back the changes to update the CUiAnimNode and CAnimParamType to
use the stateless allocator in their m_name string member.
This was only needed because those types were used in global memory.
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com >
* Updated the AZStd::hash specializations for basic_string and
basic_fixed_string to be transparent.
This allows hashing of types that aren't basic_string or
basic_fixed_string using the hash specializations for those types
without needing to create an instance of those types.
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com >
* Adding call to disable saving of the UserSettings.xml in the DisplaySettingsPythonBindingsFixture to avoid race condition running the test in parallel
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com >
2022-01-14 11:32:29 -06:00
Nicholas Van Sickle
f026e543cc
Merge pull request #6395 from aws-lumberyard-dev/nvsickle/GenericDomDocument
...
Add a generic Value type to the Generic DOM
2022-01-13 16:45:32 -08:00
Jeremy Ong
7e5e4842b0
Merge pull request #6676 from aws-lumberyard-dev/Atom/mriegger/format
...
Remove 'INF' from integer widget and replace it with better formatted…
2022-01-13 17:18:57 -07:00
Vincent Liu
42c523b275
Add SetEnv and UnSetEnv for environment variable to util ( #6884 )
...
* Add SetEnv and UnSetEnv for environment variable to util
* Move utils to AzTest
* enable for ios and android
* fix wrong file path
2022-01-13 16:07:44 -08:00
Scott Romero
34d74857f5
[development] fix for a possible MSVC compiler bug ( #6870 )
...
Replaced a variable with the name "interface" to avoid conflict with MSVC keyword
Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com >
2022-01-13 12:55:36 -08:00
Chris Galvan
3f0bd92853
Removed some unused EditorUtils functions
...
Signed-off-by: Chris Galvan <chgalvan@amazon.com >
2022-01-13 10:28:58 -06:00
amzn-mike
fed1278fe6
AP: product dependency optimization ( #6619 )
...
* Initial pass at optimizing product path dependency resolution
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Add version of StripAssetPlatform that doesn't allocate or copy strings. Re-add missing test and fix up compile errors. Add benchmark test
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Change UpdateProductDependencies to directly call s_InsertProductDependencyQuery.BindAndStep
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Add test for same filename on multiple platforms
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Rework search logic to keep track of the source of a search path (source vs product) and keep track of which search matches which dependency to avoid doing another search through every product later on
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Clean up code, expand test
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Fix paths not being lowercased by SanitizeForDatabase. Fix UpdateProductDependencies not updating existing dependencies
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Add test for duplicate dependency matches. Fix saving duplicates
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Clean up code
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Separate test into test and benchmark versions
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Cleanup include
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Fix includes, switch hardcoded job manager setup to use JobManagerComponent instead
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Replaced wildcard_match with PathView::Match. Changed StripAssetPlatformNoCopy to use TokenizeNext. Removed Environment Create/Destroy calls. Made ScopedAllocatorFixture a base class of ScopedAllocatorSetupFixture
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Add AZ Environment create/destroy on AP test environment
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Add missing asserts on database functions
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Fix incorrect usage of StripAssetPlatformNoCopy
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Fix source/product dependency type being ignored. Removed need for unordered_set for list of resolved dependencies. Updated unit tests
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Better variable names
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Remove testing code
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
* Fix missing includes and namespaces
Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com >
2022-01-13 06:56:24 -08:00
Nicholas Van Sickle
74e4055195
Fix Prefab instance assets not preloading ( #6834 )
...
PrefabCatchmentProcessor::ProcessPrefab was no longer updating the ProcessedObjectStore's referenced object list, this change exposes the referenced asset list in the new PrefabDocument API and uses them to update the referenced asset list.
Signed-off-by: Nicholas Van Sickle <nvsickle@amazon.com >
2022-01-12 15:23:06 -08:00
amzn-sj
5dc442fcb0
[Terrain] First pass of the ProcessList and ProcessRegion APIs for retrieving surface data ( #6729 )
...
* [Terrain] First pass of the ProcessList and ProcessRegion APIs for retrieving surface data
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Add a couple of more tests. The expected values were plugged in based on the values generated by the brute force approach.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Move some declarations out of loops since they can be reused.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Update all the per position callbacks to pass SurfacePoint refs. Construct only one SurfacePoint object outside the loop which can be reused.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Update tests to use the new per position callbacks
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Add ProcessRegion functions to the terrain benchmark.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Change C style static casts to aznumeric_cast. Add maybe_unused to unused params in benchmarks.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Update the ProcessList API functions to use array_view instead of a vector. This includes some additional changes to satisfy build dependencies.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Add ProcessList API functions to benchmarks
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Update the ProcessList API functions to take Vector2 as input positions
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Revert changes to AtomCore library split. Add partial implementation of span(mostly just copied over from array_view) to AzCore std containers.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Adding some const/non-const overloads that were missing in span
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Move input position list generation to a function
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Bring back Vector3 version of ProcessList functions. Rename Vector2 version to follow similar pattern as the Get functions.
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Split span.h into .h/.inl files
Signed-off-by: amzn-sj <srikkant@amazon.com >
* Add [mayby_unused] for unused parameters to fix build errors
Signed-off-by: amzn-sj <srikkant@amazon.com >
2022-01-12 14:07:57 -06:00
Chris Galvan
5b195cb028
Removed some unused variables
...
Signed-off-by: Chris Galvan <chgalvan@amazon.com >
2022-01-12 12:33:36 -06:00
Chris Galvan
e31fa88c00
Removed unused legacy show icons option
...
Signed-off-by: Chris Galvan <chgalvan@amazon.com >
2022-01-12 11:13:40 -06:00
srikappa-amzn
13bc91aa77
Split editor entity activation from PrefabSystemComponent ( #6787 )
...
* Split editor entity activation from PrefabSystemComponent
Signed-off-by: srikappa-amzn <82230713+srikappa-amzn@users.noreply.github.com >
* Fixed a small typo
Signed-off-by: srikappa-amzn <82230713+srikappa-amzn@users.noreply.github.com >
* Pass entity activation callback during prefab instantiation for failing tests
Signed-off-by: srikappa-amzn <82230713+srikappa-amzn@users.noreply.github.com >
2022-01-11 16:53:46 -08:00
Chris Galvan
8162780a65
Merge pull request #6819 from aws-lumberyard-dev/cgalvan/FixNewLevelInputFocus
...
Fixed tab order for default input focus on new level dialog
2022-01-11 11:55:06 -06:00
Chris Galvan
df511c1ae8
Fixed tab order for default input focus on new level dialog
...
Signed-off-by: Chris Galvan <chgalvan@amazon.com >
2022-01-11 10:05:05 -06:00
lumberyard-employee-dm
751caf5f7c
Updated the Windows ScopedAutoTempDirectory creation logic to use a Uuid. ( #6789 )
...
Previously it was using `GetTickCount()` for the creation of the
directory which can collide if0 there are multiple processes
creating a temporary directory via teh ScopedAutoTempDirectory
constructor.
Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com >
2022-01-11 10:01:02 -06:00