Commit Graph

33 Commits

Author SHA1 Message Date
Matthew Griffin
bb70b349ce Merging CL 2804086 from //UE4/Release-4.11 to Dev-Main (//UE4/Dev-Main) to isolate copyright update
#lockdown Nick.Penwarden

[CL 2819020 by Matthew Griffin in Main branch]
2016-01-07 08:17:16 -05:00
Chris Wood
4516e48e3f Integrate MTBF analytics to 4.10 => Main
Changes are edits/reimplementations of changes from 4.10 branch - not integrations as far as p4 is concerned to avoid issues in future integrations.
Changes are from the following changes in 4.10
  -CL 2717436 - Added AbnormalShutdown engine analytics event when editor starts after a crash.
  -CL 2724685 - Added AbnormalShutdown engine analytics event when editor starts after a crash.
  -CL 2725534 - Added AbnormalShutdown engine analytics event when editor starts after a crash.
  -CL 2736468 - Improved Engine analytics handling for Editor and games [UE-21892]
  -CL 2736480 - Updating wording in privacy settings text.
  -CL 2738137 - Fix build errors in standalone tools such as BuildPatchTool, CrashReporterClient, etc.
  -CL 2740043 - Improved abnormal termination tracking for analytics to handle multiple instances of the editor.
  -CL 2750764 - Added check for debugger present when reporting abnormal termination to analytics.
  -CL 2753661 - Added FSystemWideCriticalSection for desktop platforms. Used by analytics to lock access to editor instances list in the OS.
  -CL 2753709 - Updating wording in privacy settings text.
  -CL 2755381 - Mac and Linux CIS fix
  -CL 2755831 - Linux CIS fix
  -CL 2773486 - Improvements to previous changes from CL 2753661 based on code review.

#lockdown nick.penwarden

[CL 2784778 by Chris Wood in Main branch]
2015-12-01 10:59:16 -05:00
Dan Hertzka
1aa277ebed Icons for Project Settings and Editor Preferences tabs
[CL 2532731 by Dan Hertzka in Main branch]
2015-04-30 18:13:48 -04:00
Nick Darnell
d7f2257ae3 Editor - Continuing to tweak the settings auto registration system, moving the logic into the SettingsEditor and letting it manage it, since it knows when widgets exist and the information actually needs to be refreshed. Making several old settings use the new UDeveloperSettings class.
[CL 2521606 by Nick Darnell in Main branch]
2015-04-22 15:56:47 -04:00
Nick Darnell
b95a622406 Editor - UDeveloperSettings is now available to create settings objects that can be auto-discovered by the editor without building a plugin or some other system to register the settings with the settings viewer.
[CL 2520193 by Nick Darnell in Main branch]
2015-04-21 18:12:25 -04:00
Dinesh Kumar
7aef1ff5ee Paper2D: Moved 2d level editor settings -> project settings
- Added shortcut to edit layers settings
- Added button to snap selected actors to selected layer

[CL 2510137 by Dinesh Kumar in Main branch]
2015-04-13 06:38:54 -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
Andrew Rodham
3ac1e0da19 Added editor project setting to define whether to display units in imperial or metric (or not at all)
Also added a default input unit that is used when no units are specified on a text input.

This addresses UE-11863 and UE-9313

[CL 2499638 by Andrew Rodham in Main branch]
2015-04-02 05:30:34 -04:00
Lina Halper
4b3432c8e0 #ANIM: Add Animation Compression Setting to project
[CL 2436096 by Lina Halper in Main branch]
2015-02-06 17:01:51 -05:00
Mieszko Zielinski
aa214a3090 Fixed handling serialization of navigation system SupportedAgents' NavigationDataClass refs #UE4
- addressed UE-7509
- removed UNavigationSystem.RequiredNavigationDataClassNames as no longer needed with changes to SupportedAgents
- also, fixes Project Settings for navigation system not using game-specific navigation system class, if one has been declared

[CL 2407641 by Mieszko Zielinski in Main branch]
2015-01-15 14:24:58 -05:00
Ben Marsh
149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00
Mieszko Zielinski
0d33b106a9 CrowdManager's properties exposed to confing Project Settings #UE4
- github PR#655 by bozaro

[CL 2376511 by Mieszko Zielinski in Main branch]
2014-12-04 16:43:07 -05:00
Mieszko Zielinski
a64482c33c Perception System's update towards generic and BP usable interface #UE4
- pass 1, some more improvements to come
- updated lots of Fortnite code to accommodate API changes
- same goes for Orion, though a lot less of code had to be touched
- includes a minor extension to IGenericTeamAgentInterface

[CL 2361462 by Mieszko Zielinski in Main branch]
2014-11-15 20:50:16 -05:00
Jamie Dale
b903ba8d80 Added support for disabling tab spawner menu entries
You could previously only have them enabled or hidden, you can now add them as disabled.

You can also now bind the menu item state to a delegate to let it update after the tab spawner has been registered.

#codereview Nick.Atamas

[CL 2341064 by Jamie Dale in Main branch]
2014-10-27 09:51:25 -04:00
Max Preussner
f41be7ca18 SettingsEditor: API improvements
- made public headers compilable individually
- moved interfaces to public root
- removed module singleton getter
- code and documentation cleanup

#UpgradeNotes:
- instead of ISettingsEditorModule::GetRef() use FModuleManager::GetModuleChecked<ISettingsModule>("SettingsModule")
- instead of including SettingsEditor.h include the interface headers you actually use

[CL 2340730 by Max Preussner in Main branch]
2014-10-27 07:53:55 -04:00
Max Preussner
9884344213 Settings: Various improvements to the API
- made public headers compilable individually
- easier access to settings section delegates
- removed module singleton accessor
- moved non-trivial definitions into cpp files
- code & documentation cleanup

#UpgradeNotes:

- instead of ISettingsModule::Get() use FModuleManager::GetModulePtr<ISettingsModule>("Settings")
- instead of using FSettingsSectionDelegates assign delegates directly through the new ISettingsSection methods

[CL 2340711 by Max Preussner in Main branch]
2014-10-27 07:53:18 -04:00
Nick Darnell
4a56ebf912 UMG - Now displaying the currently applied DPI Scale in the UMG designer, along with a button that brings up the settings for the DPI Curve. Moved the UI related settings out of URendererSettings, they're now in thier own settings class UUserInterfaceSettings.
[CL 2334520 by Nick Darnell in Main branch]
2014-10-20 09:38:32 -04:00
Wes Hunt
31e2bb00ac Removed a bunch of stuff from Slate standard include, created SlateBasics.h
* Moved Slate.h into SlateBasics.h and began shifting less commonly used headers into SlateExtras.h.
* Slate.h now simply includes SlateBasics.h and SlateExtras.h.
* Slate.h includes a deprecated warning now to indicate that SlateBasics.h + specific includes should be used instead.
* Moved dozens of inlined functions using Slate widgets into .cpp files to avoid header dependencies.
* All code samples now include SlateBasics.h and SlateExtras.h so future shifts will not break most those projects, but not trigger the deprecation warning of including Slate.h.
#BUN

[CL 2329610 by Wes Hunt in Main branch]
2014-10-14 22:50:06 -04:00
Michael Noland
c7907dd2d2 Engine: Remove RenderingSettings.h and AudioSettings.h from Engine.h, including them where actually used
[CL 2293299 by Michael Noland in Main branch]
2014-09-10 22:35:49 -04:00
Jamie Dale
69ae594af9 Renamed the "Game" section under "Project Settings" to be "Project"
Suggested via an email discussion, as not everyone using UE4 is making a game.

#codereview Max.Preussner

[CL 2267272 by Jamie Dale in Main branch]
2014-08-22 07:18:30 -04:00
Chris Babcock
84571c0bbb Add HTTP support for Android with libcurl with option to allow self-signed certificates (n.VerifyPeer)
#Android
#TTP 341904
#codereview Josh.Adams,Daniel.Lamb

[CL 2266824 by Chris Babcock in Main branch]
2014-08-21 20:35:47 -04:00
Saul Abreu
bb99c72154 Corrected bad copy-pasted comment in project settings viewer code.
[CL 2255246 by Saul Abreu in Main branch]
2014-08-13 17:35:08 -04:00
Jeff Campeau
8fbc7cd02d Fix include path for new CookerSettings.h location
[CL 2226296 by Jeff Campeau in Main branch]
2014-07-21 21:22:08 -04:00
Josh Adams
e63371f39c - Added cooker settings to Project settings, first prop is PVRTC quality level
[CL 2112238 by Josh Adams in Main branch]
2014-06-20 17:03:43 -04:00
Max Preussner
3aece47882 Docs: Removed file comments and added missing code documentation
Please note that file comments had no purpose in nearly all cases and just added visual clutter. The two files that had meaningful file comments had their comments moved into the corresponding classes. There are still hundreds of file comments left in other files that will be removed over time.

Also cleaned up some random stuff along the way:
- relative paths to public headers within the same module are no longer necessary (automatically discovered by UBT now)
- header guards are deprecated, use #pragma once instead (all compilers support it now)
- space between multiple template brackets is no longer required (all compilers support >> now)
- NULL to nullptr, OVERRIDE to override
- spelling errors, whitespace, line breaks

[CL 2104067 by Max Preussner in Main branch]
2014-06-12 23:22:18 -04:00