Commit Graph

357 Commits

Author SHA1 Message Date
Matt Kuhlenschmidt
a483137720 Added placed cameras to the camera type dropdown menu in the level editor viewport
[CL 2527174 by Matt Kuhlenschmidt in Main branch]
2015-04-27 13:40:02 -04:00
Ben Marsh
2c34190d5b Remove project/plugin includes from UnrealEd. Only a handful of things needs to access it, so just include it manually.
[CL 2524420 by Ben Marsh in Main branch]
2015-04-24 11:25:20 -04:00
Daniel Wright
3e185d944f Removed defunct LightingTools menu
[CL 2521737 by Daniel Wright in Main branch]
2015-04-22 16:52:06 -04:00
Mike Fricker
403a84fcfa Asset Size Mapper tool
- New "Size Map" feature that shows the resource size for selected assets in Content Browser
- Select assets in Content Browser, right click and choose "Size Map..." to show sizes for those assets
- Select actors and press Alt+Shift+M to show sizes of assets used by those actors
- Select assets in Reference Viewer, right click and choose "Size Map..." to show sizes for those assets
- Also added a new "Tree Map" general purpose Slate widget (STreeMap)

[CL 2521609 by Mike Fricker in Main branch]
2015-04-22 15:58:21 -04:00
Dmitriy Dyomin
ba1b145186 Additional clean-up of obsolte levels module
[CL 2520615 by Dmitriy Dyomin in Main branch]
2015-04-22 00:24:23 -04:00
Matt Kuhlenschmidt
8f3aa2c7c7 Safeguard against unreproducible crash on mac opening the favorites menu
[CL 2519644 by Matt Kuhlenschmidt in Main branch]
2015-04-21 14:25:43 -04:00
sebastian kowalczyk
b2a324881a Fixed non unity compilation.
[CL 2518903 by sebastian kowalczyk in Main branch]
2015-04-21 04:51:10 -04:00
Marc Audy
5984cb0926 Mark actors dirty when modifying GameMode properties via the level editor toolbar
[CL 2518336 by Marc Audy in Main branch]
2015-04-20 17:34:34 -04:00
Andrew Rodham
8ff0d8b98b Added config migration path for newer versions of the engine.
Newly installed versions of the engine will now attempt to copy the project-agnostic config settings from a previous engine installation. This happens by way of a versioned manifest that copies old versions when the manifest does not exist, or is a different version. This code path is benign for non-installed versions of the engine (or FPaths::ShouldSaveToUserDir() is false).

EditorGameAgnosticSettings and EditorUserSettings ini paths have been renamed to EditorSettings and EditorPerProjectUserSettings respectively to better convey their purpose. In general, most settings should be saved in EditorSettings (project-agnostic) so that they apply regardless of which project is open. We have some way to go migrating existing settings for this to be the case, however.

Some previously per-project configuration files are now project-agnostic (such as Editor.ini, EditorKeyBindings.ini, and EditorLayout.ini)

GEditor->Access...Settings and GEditor->Get...Settings have been removed in favor of direct access of the CDO through GetMutableDefault<> and GetDefault<> respectively. Global config ini filenames that are not set up are now neither loaded nor saved on build machines, to handle the problem of indeterminate state more generically.

This addresses UETOOL-270 (Most editor preferences should be project-agnostic)

[CL 2517558 by Andrew Rodham in Main branch]
2015-04-20 10:12:55 -04:00
Dmitriy Dyomin
d01cb96f2a Removed obsolete "Levels" module
[CL 2517193 by Dmitriy Dyomin in Main branch]
2015-04-19 23:20:53 -04:00
Rolando Caloca
27d7a0e070 UE4 - Fix ES3.1 emulation shader issues
#codereview Allan.Bentham

[CL 2514517 by Rolando Caloca in Main branch]
2015-04-16 13:02:21 -04:00
Rolando Caloca
9a899d66d4 UE4 - Mobile Preview for feature level ES3.1/Metal (experimental)
[CL 2510893 by Rolando Caloca in Main branch]
2015-04-13 18:00:32 -04:00
Matt Kuhlenschmidt
49ff855cb5 Remove task browser. Not used internally, not supported
[CL 2510220 by Matt Kuhlenschmidt in Main branch]
2015-04-13 08:45:18 -04:00
Mikolaj Sieluzycki
a96989f147 Add includes to files to remove the need of including Engine.h.
[CL 2508000 by Mikolaj Sieluzycki in Main branch]
2015-04-10 03:30:54 -04:00
Michael Noland
5f40368357 Editor: Passed in a host command list in SActorDetails uses
[CL 2507939 by Michael Noland in Main branch]
2015-04-10 02:12:48 -04:00
Matt Kuhlenschmidt
fc35810c0b No longer focus the level viewport when PIE ends. It causes annoyances when PIE is ended from other editors such as blueprints are umg.
[CL 2505960 by Matt Kuhlenschmidt in Main branch]
2015-04-08 17:33:53 -04:00
Nick Darnell
6818029208 Editor - Giving the DetailsView more capability to allow it to be set to automatically handle the EditDefaultsOnly flag for showing/hiding nodes when selecting a CDO instead of needing to monitor it, and show/hide them manually.
[CL 2505946 by Nick Darnell in Main branch]
2015-04-08 17:27:30 -04:00
tommybear
a6a96d4a34 PR #868: Add "Snap Object To View" to Editor (Contributed by tommybear)
This allows you to align your view in the editor, select an actor in the
world outliner or in scene, right-click and select "Snap Actor to
Camera".  Actor will then set its location and rotation to match the
view.  This is super handy for quickly finding an awesome camera view in
the editor and then making your CameraActors match that view.

[CL 2501200 by Matt Kuhlenschmidt in Main branch]
2015-04-03 11:51:54 -04:00
Matt Kuhlenschmidt
41a8bd5eee Fix display name of transparent box select option
[CL 2498516 by Matt Kuhlenschmidt in Main branch]
2015-04-01 09:03:57 -04:00
Mike Fricker
114458bf0f Clang warning fixes: Fixed missing 'override' specifiers
- Also removed some unreferenced functions that adding 'override' revealed

PR #1002 -- Thank you, Omar007!

[CL 2498415 by Mike Fricker in Main branch]
2015-04-01 07:20:55 -04:00
PaulEremeeff
3d878d5a79 PR #996: Fixing PVS-Studio warnings (Contributed by PaulEremeeff)
I have reviewed each change carefully, but it is a large change and I could have missed something! Here is a summary of the types of changes in this CL:
 * Made nullptr checks consistent (the plurality of the changes are of this type)
 * Completed switch statements (IE, switch did not explicitly handle default case, but had unhandled enum entries - this is the second most popular type of fix)
 * Removed unused variables
 * Removed redundant initializations
 * WidgetNavigationCustomization.cpp was fixed by the owner
 * integers converted to floats where result was stored in a float
 * Removed redundent null checks (e.g. before delete statements)
 * Renamed variables to prevent non-obvious shadowing
 * Fixed use of bitwise & when checking for equality to an enum entry (which is often 0)
 * Fixes for some copy paste errors (e.g. FoliageEdMode.cpp)

[CL 2498053 by Dan Oconnor in Main branch]
2015-03-31 20:12:31 -04:00
Richard TalbotWatkin
7243396c44 Editor sessions now remember the view modes set for perspective / ortho viewports.
#jira UE-12526 - Editor: ortho vieport views do not save the visualization settings you choose

[CL 2497153 by Richard TalbotWatkin in Main branch]
2015-03-31 09:52:20 -04:00
bruce nesbit
6550cbe91c Tweaked coupld of some meta tags used by tutorials (viewport and toolbar)
[CL 2493529 by bruce nesbit in Main branch]
2015-03-27 06:34:29 -04:00
Dan Oconnor
06806b2237 PR #946: Fixing PVS-Studio warning (Contributed by PaulEremeeff)
https://github.com/EpicGames/UnrealEngine/pull/946

I have gone through these changes and verified that whatever behavior change they cause could only be an improvement (generally they just prevent possible access to nullptrs, but there are also some style corrections). A separate changelist is being prepared that includes changes that could unintentionally caues behavior change for the worse.

[CL 2486801 by Dan Oconnor in Main branch]
2015-03-20 17:18:31 -04:00
Marc Audy
d89359c18a Remove GWorld from TexAlign
[CL 2484437 by Marc Audy in Main branch]
2015-03-19 10:06:05 -04:00