Commit Graph

74 Commits

Author SHA1 Message Date
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
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
Michael Schoell
3f52b7d131 In "Region and Language" you can toggle localization of node and pins in all graph editors.
SNodeTitle no longer compares cached node titles to the title the node wants to be to determine a reconstruction, it checks if the schema wants to purge all cached node titles.

#jira UE-8371 - Change Editor language while leaving Blueprint Editor node & pin names in English

[CL 2508681 by Michael Schoell in Main branch]
2015-04-10 14:37:56 -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
Marc Audy
4562acb429 Fix shadow variables
[CL 2507160 by Marc Audy in Main branch]
2015-04-09 15:23:52 -04:00
Michael Schoell
73a4a605c3 Added a menu option when right clicking on Blueprint nodes to view node's documentation.
Moved the "GoToDocumentation" command from MaterialEditorCommands up to GraphEditorCommands.

#jira UE-11783 - Right click on BP nodes should offer link to API docs for node.

[CL 2506859 by Michael Schoell in Main branch]
2015-04-09 11:34:39 -04:00
Richard TalbotWatkin
a7eb9c7a6d Fix so that material thumbnail is updated when a dependent texture is reimported.
#jira UE-10802 - Re-importing and overwriting a normal texture that is used by a material breaks the material

[CL 2502504 by Richard TalbotWatkin in Main branch]
2015-04-06 05:12:48 -04:00
Marc Audy
a425eba9ed Unify Slate's FInputGesture and Engine's FInputChord as FInputChord defined in Slate
[CL 2481648 by Marc Audy in Main branch]
2015-03-17 11:36:28 -04:00
Dan Hertzka
c3e27d84e2 Material editor viewport now properly drives Slate tick/paint when realtime is enabled
[CL 2472375 by Dan Hertzka in Main branch]
2015-03-09 10:00:46 -04:00
Richard TalbotWatkin
439cad4f2a Material editor preview now refreshes correctly when a referenced texture is (re)imported.
#jira UE-10802 - Re-importing and overwriting a normal texture that is used by a material breaks the material
#reviewedby Matt.Kuhlenschmidt

[CL 2472018 by Richard TalbotWatkin in Main branch]
2015-03-08 15:25:46 -04:00
Michael Noland
a7aa52f10c Material Editor: Add support for previewing any kind of asset with an associated UMeshComponent subclass, such as static meshes, skeletal meshes, and Paper2D sprites
[UE-10085]

[CL 2451301 by Michael Noland in Main branch]
2015-02-19 00:33:19 -05:00
Mikolaj Sieluzycki
52c71176ab Rename StaticConstructObject to StaticConstructObject_Internal and use it only in CoreUObject module. Change rest of usages to NewObject.
#codereview Robert.Manuszewski

[CL 2437731 by Mikolaj Sieluzycki in Main branch]
2015-02-09 05:43:45 -05:00
Mikolaj Sieluzycki
fa01cacb6c Trim down the amount of UObject constructors.
#codereview Robert.Manuszewski

[CL 2429641 by Mikolaj Sieluzycki in Main branch]
2015-02-03 05:40:57 -05:00
Daniel Wright
30d41a588f Only recompile materials on save if dirty
[CL 2426340 by Daniel Wright in Main branch]
2015-01-30 16:12:10 -05:00
Simon Tovey
59722a75c3 Fixed performance issue introduced in CL2407391.
UpdatePreviewMaterial no longer triggers a global component reregister.

#lockdown Zachary.EdgertonJones

[CL 2422900 by Simon Tovey in Main branch]
2015-01-28 17:30:08 -05:00
Ben Marsh
bf75048443 [INTEGRATE] Change 2411119 by Matt.Kuhlenschmidt@matt_kuhlenschmidt_main on 2015/01/19 13:39:29
Fixed up the details panel name area to be aware of in world component editing.
	Fixed up usage of the details panel name area to use new enum based usage flag for name areas

[CL 2419254 by Ben Marsh in Main branch]
2015-01-26 17:14:50 -05:00
Jack Porter
db8a6c14e0 Material compiler CustomOutput
Landscape Grass material output node
LandscapeGrassType asset and factory

[CL 2412252 by Jack Porter in Main branch]
2015-01-20 11:04:04 -05:00
Simon Tovey
164e02b6fe Better fix for UE-3123
Placed FMaterialUpdateContext in UpdatePreviewMaterial for saftey and made PasteNodesHere use it.

#codereview Nick.Penwarden, Stephen.Ellis, daniel.wright

[CL 2407391 by Simon Tovey in Main branch]
2015-01-15 11:51:31 -05:00
Jeff Farris
3672452617 Added information to documentation links URLs to be able to gather stats about where users are coming from when they view documentation.
[CL 2406128 by Jeff Farris in Main branch]
2015-01-14 13:15:22 -05:00
Rolando Caloca
6d43349dfd UE4 - Materials using WPO with period functions now properly compute their velocity
#codereview Nick.Penwarden, Daniel.Wright

[CL 2405483 by Rolando Caloca in Main branch]
2015-01-13 19:47:46 -05:00
Jamie Dale
a569f6b356 Fixed code relying on SLATE_TEXT_ATTRIBUTE for STextBlock.
UETOOL-213 - Minimize Slate FString -> FText conversion (remove SLATE_TEXT_ATTRIBUTE)

This fixes any editor/engine specific code that was passing text to Slate as FString rather than FText.

[CL 2399803 by Jamie Dale in Main branch]
2015-01-07 09:52:40 -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
Jamie Dale
040a92dc33 Removed SLATE_TEXT_ATTRIBUTE from Editor specific widgets
[CL 2369939 by Jamie Dale in Main branch]
2014-11-25 17:51:09 -05:00
Daniel Wright
a38afb6cc9 Fixed convert parameter to constant crashing
[CL 2342424 by Daniel Wright in Main branch]
2014-10-28 12:23:01 -04:00
Daniel Wright
3d39232797 Convert Vector parameter turns into a Constant3, avoids compile error (vector parameter has rgb pin as primary)
[CL 2341772 by Daniel Wright in Main branch]
2014-10-27 20:13:48 -04:00