#lockdown Nick.Penwarden
#rb none
============================
MAJOR FEATURES & CHANGES
============================
Change 3623004 by Ben.Marsh
Fix RemoteExecutor not taking the remote machine specs into account.
Change 3623172 by Ben.Marsh
UGS: Fix "More Info..." button not using P4 server override.
Change 3628820 by Ben.Marsh
PR #3979: Get working directory from task element, not tool node (Contributed by nullbus)
Change 3630424 by Graeme.Thornton
Make the AES key parameter const in FAES::EncryptData()
Change 3632786 by Steve.Robb
FString constructor fixed to not take an ignored void* parameter, which can be misleading.
Change 3639534 by Ben.Marsh
Remove old P4.NET library. Doesn't seem to be used by anything.
Change 3640536 by Steve.Robb
GitHub #4007 : Delete unnecessary specialization of MakeArrayView
#jira UE-49617
Change 3641155 by Gil.Gribb
UE4 - Speculative fix for problem with summary reading in FAsyncArchive2.
Change 3643932 by Ben.Marsh
Add an example build script for updating the version number, then compiling and staging the editor and tools to an output directory. Optionally submits at the end (requires -Submit argument).
Change 3644825 by Ben.Marsh
Use VSWHERE to find the location of MsBuild.exe, if available.
https://github.com/EpicGames/UnrealEngine/pull/3879#issuecomment-329688645
Change 3647395 by Ben.Marsh
Allow compiling of monolithic binaries from BuildEditorAndTools.xml, using the -set:GameTarget=FooGame -set:TargetPlatforms=Win32;Win64 options.
Change 3650300 by Ben.Marsh
UAT: Remove code that deletes cooked data on a failed cook. The engine should write packages out transactionally now (by writing to a temporary file and moving into place), and deleting the cooked data just prevents post-mortem analysis.
Change 3650856 by Robert.Manuszewski
Adding checks to prevent FlushAsyncLoading and LoadObject/LoadPackage from being called from any threads other than the game thread
Change 3651022 by Gil.Gribb
UE4 - Possible fix for mysterious ensure indicating problematic recursion in the pak precacher.
Change 3658331 by Steve.Robb
Fix for the parsing of large integer values.
Change 3661958 by Gil.Gribb
UE4 - Fixed rare hang in task graph.
Change 3664021 by Robert.Manuszewski
Fix for a potential GC crash caused by stale pointer in AnimInstanceProxy
See https://udn.unrealengine.com/questions/392432/gc-issue-uaniminstancemontageinstances-empty-but-u.html
Change 3664254 by Steve.Robb
Use ANSI allocator when thread sanitizer is enabled. This allows the generation of more accurate and meaningful reports.
Change 3664436 by Steve.Robb
Use TUniquePtr instead of a thread-unsafe TSharedPtr to move data between threads.
Change 3666461 by Graeme.Thornton
Improvements to signing/encryption key embedding and runtime access
- Changed method of embedding key into the executable to make it more secure
- Added FAESKey class to wrap a 32 byte key
Change 3666462 by Graeme.Thornton
Cut ShooterGame AES key down to 32 characters
Change 3677560 by Ben.Marsh
PR #4074: UBT: Add include and library-related fields to module JSON output (Contributed by adamrehn)
Change 3683534 by Steve.Robb
Refactoring of enum/struct lookup during hot reload.
Change 3683754 by Steve.Robb
Alignment fixes to allow int64 on 32-bit platforms
Support for integral types in IsAligned.
Static asserts so that alignment functions will no longer be called with non-intergal, non-pointer types.
Some fixes to existing code.
Change 3686670 by Steve.Robb
Fix for thread-unsafe modification of static array in FString::ParseIntoArrayWS.
Change 3687540 by Ben.Marsh
Fix all UBT/UAT output going to stderr rather than stdout.
Change 3688931 by Gil.Gribb
UE4 - Critical fix for a rare race condition in the pak file async IO layer.
Change 3690000 by Graeme.Thornton
Manual copy of 4.18 CL 3687869
Make UBT include the destination INI file for a given hierarchy if it exists
Renamed VSCode enum value to VisualStudioCode, so it matches the source accessor plugin name
Change 3690030 by Graeme.Thornton
VSCode fixes
- Source Code Accessor plugin changes. Add new interface method to open a solution at a given path
- GameProjectUtils now uses the source navigation API to open solutions rather than hardcoding which solution file types to look for
- Various fixes for vscode project file generation
#jira UE-50554
Change 3690885 by Steve.Robb
Atomic reads in FReferenceControllerOps<ESPMode::ThreadSafe>.
Change 3691052 by Steve.Robb
Free stats thread on shutdown.
Change 3695138 by Steve.Robb
AsConst helper function added.
Change 3696627 by James.Hopkin
Changed player controller iterator typedefs to use TWeakObjectPtr rather than the deprecated TAutoWeakObjectPtr
(review-3606695)
Change 3697099 by Steve.Robb
GitHub #4105 : Removed redundant class access modifier
Change 3697154 by Steve.Robb
Removal of deprecated functions in delegates.
Mutable lambdas to can now be bound to delegates.
Change 3697180 by Steve.Robb
GitHub #4115 : Incorrect CPPMacroType used for USoftClassProperty
Change 3697239 by Steve.Robb
Allow TArray::Insert to take an array with any allocator type.
Change 3697269 by Steve.Robb
RelocateConstructItems instead of MoveConstructItems.
Change 3697558 by Steve.Robb
New _GetRef functions for TArray, which return a reference to the newly-added element.
Unit tests for these functions.
Change 3699776 by Steve.Robb
TSAN warning suppression around IAsyncReadRequest::bCompleteAndCallbackCalled.
Change 3702397 by Steve.Robb
TIsTrivial type trait.
Change 3702569 by Steve.Robb
Allow a TGuardValue to be assigned to a different type from the one being guarded.
Change 3706644 by Robert.Manuszewski
Different stack ingore count for development builds for FArchiveStackTrace
Change 3709272 by Steve.Robb
Removal of redundant UpdateVertices, which causes a race condition on the renderer thread.
Change 3709452 by Robert.Manuszewski
Fixed a bug where with async time limit set to a low value the async loading could hang because the linker would keep reloading the preload dependencies
Change 3709454 by Robert.Manuszewski
Added command line option -NOEDL to disable EDL
Change 3709487 by Steve.Robb
Remove use of PLATFORM_HAS_64BIT_ATOMICS, which is always 1.
Change 3709645 by Ben.Marsh
Fix race condition between multiple instances of UBT trying to write out the XML config cache.
Change 3711193 by Ben.Marsh
Add an editor setting for the shared DDC location to use.
#jira UE-51487
Change 3713811 by Steve.Robb
Update .modules files after a hot reload.
Don't check for directory timestamp changes as a way of detecting new files if hot reloading with a makefile, as this is already done during makefile invalidation checks.
Pass hotreload flags around in UBT instead of relying on global state.
This fixes the hot reload iteration speed regression without also regressing the fix to UE-42205.
#jira UE-51472
Change 3715654 by Steve.Robb
GitHub #4156 : Fixed not compiling template function Algo::UpperBoundBy.
Change 3718782 by Steve.Robb
TSharedPtr, TSharedRef and TWeakPtr assignment are now implemented as copy-and-swap to avoid an invalid smart pointer state being visible to any destructors being called.
Change 3720830 by Steve.Robb
Initial import of TAtomic object wrapper, which guarantees atomic access to an object.
Change 3720881 by Steve.Robb
FCompression ThreadSanitizer data race fixes.
Change 3722640 by Graeme.Thornton
Guard network platform file heartbeat function with the socket critical section. Stop heartbeat from causing a crash when firing during async loading.
#jira UE-51463
Change 3722655 by Steve.Robb
Don't null name table because it's already zeroed at startup.
Some tidy-ups.
Change 3722754 by Steve.Robb
Thread sanitizer fix.
Small typo fix.
Change 3722849 by Graeme.Thornton
Improve "caching file" message in networkplatformfile so it says "Requesting file..." and is only output when we actually request the file from the server
Change 3723081 by Steve.Robb
TAtomic is now aligned to the underlying integer type.
TAtomic will now static assert with a better error message when given an unsupported type.
Define added for the maximum platform-supported atomic type, and used instead of a (wrong) hardcoded number.
Misc renames.
Change 3723270 by Ben.Marsh
Include /d2cgsummary argument when running UBT with -Timing.
Change 3723683 by Ben.Marsh
Do not include documentation in the generated project files by default. Suspect that the 30,000 UDN files that get added to the solution take up memory and degrate performance.
Change 3725422 by Robert.Manuszewski
When serializing compressed archive with multithreaded compression enabled, wait for the oldest async task instead of spinning.
Change 3725735 by Robert.Manuszewski
Making all CheckDefaultSubobjects related functions const
Change 3726167 by Steve.Robb
FMinimalName::IsNone added.
Change 3726458 by Steve.Robb
TAtomic will no longer instantiate for types which are not exactly a size supported by the platform layer.
Change 3726542 by Ben.Marsh
UGS: Always include the project filename in the editor build command. The project may not be in one of the .uprojectdirs paths.
Change 3726595 by Ben.Marsh
Allow building multiple game targets in the example BuildEditorAndTools.xml script.
Change 3726724 by Ben.Marsh
Fix ambiguities in calculating root directory. (GitHub #4172)
Change 3726959 by Ben.Marsh
Make sure that AutomationTool uses the same list of preprocessor definitions when compiling *.target.cs files as UnrealBuildTool does.
Change 3728437 by Steve.Robb
VisitTupleElements now supports invocation of a functor taking arguments from multiple tuples in parallel.
Some improved documentation.
NOTE: This is a backward-incompatible change to VisitTupleElements. Any existing calls will need their arguments swapping.
Change 3732262 by Gil.Gribb
UE4 - Fixed rare hangs in the task graph.
Change 3732755 by Steve.Robb
Stats TSAN fixes.
Optimizations to FCycleCounter::Start() to only read the stat name once.
Change 3735000 by Robert.Manuszewski
Always preload the AssetRegistry module on startup. even if EDL is disabled.
Even without EDL, if the async loading thread is enabled the AssetRegistryModule will otherwise be loaded from the ASL thread and that will assert.
Change 3735292 by Robert.Manuszewski
Made sure component visualizer is removed from VisualizersForSelection when UnregisterComponentVisualizer() is called otherwise it may cause crashes when the engine terminates.
Change 3735332 by Steve.Robb
Refactoring of UDelegateProperty::Identical() to clarify logic.
Fixed UMulticastDelegateProperty::Identical() to compare the bound function names.
PPF_DeltaComparison removed, as it doesn't seem useful.
Change 3737960 by Graeme.Thornton
VSCode - Add launch task for generating project files for the given folder
Change 3738398 by Graeme.Thornton
Make Visual Studio source code accessor's module hotreload handler pass the 'save all files' message to the current accesor, rather than direct to the visual studio accessor
#jira UE-51451
Change 3738405 by Graeme.Thornton
VSCode: Format c/cpp settings strings using comment path formatting function
Change 3738928 by Steve.Robb
Fix for lack of null conditional operators in some older Monos. (replicated from CL# 3729574 in Release-4.18)
#jira UE-51842
Change 3739135 by Ben.Marsh
Fix being unable to package projects in a folder called "Wolf". This is only a restricted folder for Epic's Perforce history.
#jira UE-51855
Change 3739360 by Ben.Marsh
UAT: Fix issue with P4PORT setting not being parsed correctly.
Change 3745959 by James.Hopkin
#core Added ImplicitConv for safe upcasts to a specific required type, e.g. deduced delegate payload types
Change 3746125 by Steve.Robb
FName ThreadSanitizer fixes.
Change 3747274 by Steve.Robb
TSAN fix for FMediaTicker::Stopping.
Change 3747618 by Steve.Robb
ThreadSanitizer data race fix for FShaderCompileThreadRunnableBase::bForceFinish.
Change 3747720 by Steve.Robb
ThreadSanitizer fix for FMessageRouter::Stopping.
Change 3749207 by Graeme.Thornton
First pass of CryptoKeys plugin. Allows creation/editing/cycling of AES/RSA keys.
Change 3749323 by Graeme.Thornton
Fix UAT crash when only -targetplatform is specifiied
Change 3749349 by Steve.Robb
TSAN_SAFE guards around LockFreeList to silence ThreadSanitizer.
Change 3749617 by Steve.Robb
Logf static_assert for formatting string enabled.
Change 3749897 by Steve.Robb
FDebug::LogAssertFailedMessage static assert for formatting string enabled.
Change 3754011 by Steve.Robb
Static asserts that the allocator supports move.
Move-enabled our allocators which don't support move.
Change 3754227 by Ben.Marsh
Fix build command line in generated projects missing a space before the compiler version override.
#jira UE-52226
Change 3754562 by Ben.Marsh
PR #4206: Replace deprecated wsprintf with secure swprintf for Bootstrap executable (Contributed by jessicafalk)
Change 3755616 by Graeme.Thornton
Runtime code for using the new crypto ini files to define signing/encryption keys
#jira UE-46580
Change 3755666 by James.Hopkin
Used ImplicitConv to remove Casts being used for up-casts
#review-3745965
Change 3755671 by Graeme.Thornton
Add log message in unrealpak to say which config file system it is using for crypto keys
Change 3755672 by Graeme.Thornton
Updating ShooterGame with new CryptoKeys based security setup
Change 3756778 by Ben.Marsh
Add support for running multiple jobs simultaneously on a single builder.
When running job or agent setup, the --num-slots=X parameter defines the number of steps that can run simultaneously (EC procedures pass in the resource step limit). A lock file is created under the workspace root (D:\Build) and a reservation file is created for the first slot that can be allocated (slot-1, slot-2, etc...). The slot number is used to define the workspace name that should be used.
Change 3758498 by Ben.Marsh
Re-throw exceptions when a file cannot be deleted when cleaning a target.
Change 3758921 by Steve.Robb
ThreadSanitizer fix to FThreadSafeStaticStatBase::HighPerformanceEnable to do a relaxed atomic load on access.
DoSetup() now returns the newly-allocated pointer, instead of reloading it from memory.
Change 3760599 by Graeme.Thornton
Added missing epic header comment to some new source files
Change 3760642 by Steve.Robb
ThreadSanitizer fix for concurrent access to GMainThreadBlockedOnRenderThread.
Change 3760669 by Graeme.Thornton
Improvement to OpenSSL based signing key generator. Generate a full RSA key then steal the primes from it, rather than generating the primes manually.
Added a test mode to the cryptokeys commandlet to test signing key generation
Change 3760711 by Steve.Robb
ThreadSanitizer fixes to GIsRenderingThreadSuspended.
Change 3760739 by Steve.Robb
ThreadSanitizer fix for FQueuedThread::TimeToDie.
Change 3760763 by Steve.Robb
ThreadSanitizer fix for GRunRenderingThreadHeartbeat.
Removal of unnecessary/dangerous initializer for GMainThreadBlockedOnRenderThread.
Change 3760793 by Steve.Robb
Some simple refactoring to remove some volatile reads of BufferStartPos and BufferEndPos.
Change 3760817 by Steve.Robb
ThreadSanitizer fixes for FAsyncWriter::BufferStartPos and BufferEndPos.
Change 3761331 by Josh.Engebretson
UnrealBuildTool enforcement of Development and Debug configurations in existing .csproj
#jira UE-52416
Change 3761521 by Steve.Robb
ThreadSanitizer fixes for FEvent::EventStartCycles and EventUniqueId.
Change 3763117 by Graeme.Thornton
PR #3722: Optimising FPaths::IsRelative() (Contributed by jovisgCL)
Change 3763358 by Graeme.Thornton
Ensure that all branches within FGenericPlatformMisc::RootDir() produce an absolute path with no duplicate slashes
Remove relative->abs conversion of root dir from FPaths::MakeStandardFilename(), now that we know RootDir() always returns an absolute path
Derived from the content of this PR:
PR #3742: Treat RootDirectory the same way as Standardized (Contributed by TroutZhang)
Change 3764058 by Graeme.Thornton
Generate a .code-workspace file for the current workspace. Allows foreign projects to "mount" the UE4 folder so that the engine tasks are avaible, and all engine source is visible to VSCode for searching purposes
#jira UE-52359
Change 3764705 by Steve.Robb
Better handling of whitespace in ImportText_Internal() for set and map properties.
Containers are now emptied upon import failure, to avoid leaving bad container states (unhashed, partial data).
Fix to USetProperty's temp buffer size to avoid buffer overruns.
Duplicate map keys are now skipped during import, same as USetProperty's behavior.
Change 3764731 by Steve.Robb
Don't re-run UHT if only source files have changed in the same folder as headers. This was already done for hot reload, but there's no reason why it should be limited to that.
Change 3765923 by Graeme.Thornton
VSCode - "taskName" -> "label" for C# build tasks
Change 3766018 by Steve.Robb
constexpr constructor for TAtomic.
Change 3766037 by Steve.Robb
Misc tidyings in HotReload.cpp.
Change 3766046 by Steve.Robb
ThreadSanitizer fixes to ENamedThreads::RenderThread and ENamedThreads::ENamedThreads_Local.
Change 3766288 by Steve.Robb
Improved efficiency of adding/removing elements to UGCObjectReferencer::ReferencedObjects.
Change 3766374 by Josh.Engebretson
Fix issue with ini quoted value comparison
#jira UE-52066
Change 3766532 by Josh.Engebretson
PR #3680: Added NetSerialize to FDateTime fixing UE-22533 (Contributed by druhasu)
#jira UE-46156
Change 3766740 by Steve.Robb
TMultiMap::Append added.
Change 3767523 by Steve.Robb
ThreadSanitizer fix for UE4Delegates_Private::GNextID.
Change 3767601 by Steve.Robb
ThreadSanitizer fix for FStats::GameThreadStatsFrame.
Change 3770567 by Ben.Marsh
Add a FAnnotatedArchiveFormatter interface which allows querying structural type information that may not be in binary archives.
Change 3770826 by Ben.Marsh
Move StructuredArchive implementation into Core, so primitive types can implement serialization overloads for it.
Change 3770875 by Steve.Robb
Redundant UScriptStruct::PostLoad removed, which was causing a race condition in async loading. This was re-establishing the CppStructOps, but that is unnecessary because native classes cannot change as a result of a load - only BP structs can, and they don't have CppStructOps.
Change 3772167 by Ben.Marsh
Add a context-free binary formatter that can serialize tagged data. This functions as a lower-overhead binary intermediate format for JSON data.
Change 3772248 by Steve.Robb
ThreadSanitizer fixes to FMalloc call counters.
Change 3772383 by Ben.Marsh
Separate archive metadata from FArchive into FArchiveContext, so it can be safely exposed to consumers of FStructuredArchive.
Change 3772906 by Graeme.Thornton
TextAssetCommandlet - Utility commandlet for testing/converting to text asset format
Change 3772932 by Ben.Marsh
Fix "String:" prefix not being stripped from escaped string values.
Change 3772942 by Graeme.Thornton
Add experimental setting to enable in-editor text asset format functionality
Add "export to text" option into the content browser asset actions context menu
Change 3772955 by Ben.Marsh
Add a new "stream" compound type to FStructuredArchive, which allows serializing a sequence of elements similarly to an array, but without serializing an explicit size. Allows passing through data to an underlying binary archive without breaking compatibility.
Change 3772963 by Ben.Marsh
Allow querying record keys and stream lengths from annotated archive formatters, since these archives have markup for field boundaries.
Change 3773010 by Graeme.Thornton
Added CORE_API to FArchiveFromStructuredArchive
Gave text asset format experimental option a slightly less random tooltip comment
Change 3773057 by Ben.Marsh
Add a flag to FArchive to determine whether the archive is text (IsTextFormat()).
Add support for seeking within FArchiveFromStructuredArchive. For text formats, data is serialized to an in-memory buffer, with names and objects serialized as indices into an array. For non-text formats, data is serialized directly to the underlying archive.
Also rename FStructuredArchive::TryEnterSlot() to TryEnterField().
Change 3773118 by Steve.Robb
TSignedIntType and TUnsignedIntType type traits for getting an integer type of a given size.
Change 3773122 by Steve.Robb
TAtomic fixes for pointer arithmetic.
TSignedIntType used instead of reimplementing its own trait.
Change 3773123 by Steve.Robb
Unit tests for TAtomic.
Change 3773138 by Steve.Robb
Run numeric tests on integer types instead of basic tests.
Fix for compiler warnings when subtracting from unsigned atomics.
Change 3773166 by Steve.Robb
Refactoring of arithmetic operations into its own class, then basing the pointer and integral versions on that.
Change 3774216 by Gil.Gribb
UE4 - Fix rare crash in the pak precacher immediately after unmounting a pak file.
Change 3774426 by Ben.Marsh
Copy all C# tools to a staging directory before compiling them. This prevents access violations when compiling tools like iPhonePackager that reference DotNETCommon, and ensures we strip NotForLicensees folders out of them all.
See: https://answers.unrealengine.com/questions/726010/418-will-not-build-from-source.html
Change 3774658 by Ben.Marsh
Improve error reporting while generating intellisense for project files. Include the name of the target being compiled, and allow project file generation to continue without it.
Change 3775141 by Ben.Marsh
Always output HTML5 diagnostics at "information" verbosity, to avoid every line being prefixed with "WARNING:" and screwing up the EC postprocessor.
Change 3775459 by Ben.Marsh
Removing .NET Framework Perforce DLL as runtime dependency of engine third party library. The actual library is linked statically.
Change 3775522 by Ben.Marsh
UGS: Treat .uproject and .uplugin files as code changes.
Change 3775597 by Ben.Marsh
Fix post-build steps for plugins not being executed.
#jira UE-52754
Change 3777895 by Graeme.Thornton
StructuredArchiveFromArchive - An adapter class for wrapping an existing FArchive with a structured archive
Change 3777931 by Graeme.Thornton
Refactored FArchiveUObjects serialization code into some static helpers
Added FArchiveUObjectFromStructuredArchive which allows the adaption of a structured archive into an FArchive that supports the extra UObect serialization functions for weak/soft pointers
Change 3777942 by Graeme.Thornton
Added missing CORE_API to FStructuredArchive::FStream
Added FStructuredArchive::FSlot insertion operator for char
Added specialization of TArray<uint8> serializer for structured archives which serializes the contents as one value
Change 3778084 by Graeme.Thornton
Adding FPackageName::GetTextAssetPackageExtension() to access the file extension we use for text asset files
Change 3778096 by Graeme.Thornton
Add a constructor to FArchiveUObjectFromStructuredArchive that takes a slot and passes it to the base class
Change 3778389 by Josh.Engebretson
Fix an optimization issue with CPU benchmarking
Add better support for debugging/testing local rocket builds
UDN Link: https://udn.unrealengine.com/questions/400909/command-scalability-auto-gives-inaccurate-cpu-benc.html
#jira UE-52192
Change 3778701 by Josh.Engebretson
Ensure plugin content folders are mounted consistently. Fixes TryConvertFilenameToLongPackageName failing to work on plugin assets
UDN Link: https://udn.unrealengine.com/questions/276386/tryconvertfilenametolongpackagename-fails-for-plug.html
#jira UE-40317
Change 3778832 by Chad.Garyet
Adding enterprise path support for PCB's for UGS
Change 3780258 by Graeme.Thornton
TextAssetCommandlet - Accumulate timings for loading packages and saving packages
Change 3780463 by Graeme.Thornton
CryptoKeys improvements
- Enable CryptoKeys plugin by default
- Attempt to inherit settings from the old system by default
- Hide ini/index encryption settings from packaging settings and just inherit previous values into new system
Minor UBT change to remove a trailing comma from the end of encryption/signing key binary strings
Change 3780557 by Ben.Marsh
Fix LoginFlow module not being precompiled for the binary release.
Change 3780846 by Josh.Engebretson
Improve filename to long package name resolution when provided a relative path
Change 3780863 by Ben.Marsh
UAT: Add a better error message when a C# project has an invalid reference.
Change 3780911 by Ben.Marsh
Update the BuildEditorAndTools.xml script to allow submitting archived binaries to Perforce.
The "Submit To Perforce For UGS" node creates a zip of all the binaries that have been built, and submits it to the stream specified by the 'ArchiveStream' argument.
Change 3780956 by Josh.Engebretson
Add support for ! (RemoveKey) config command to UBT
UDN Link: https://udn.unrealengine.com/questions/397267/index.html
#jira UE-52033
Change 3782957 by Robert.Manuszewski
UE4 - Fixed a linear search in EDL that caused performance problems for very large maps.
Change 3784503 by Ben.Marsh
Optimizations for FStructuredArchive:
* Store the depth explicitly in element objects, to avoid having to loop through the scope stack to find it.
* Prevent shrinking of arrays when removing elements.
* Add an inline allocator to the scope and container stacks.
Change 3784700 by Ben.Marsh
Remove the inline allocator from FStructuredArchive; checking whether the inline or backup allocator is being used is slower than just allocating up-front.
Change 3784989 by Ben.Marsh
Compile out all the FStructuredArchive validation code when WITH_TEXT_ARCHIVE_SUPPORT = 0.
Change 3786860 by Gil.Gribb
UE4 - Remove no buffering flag from windows async IO because it disabled the disk cache entirely.
Change 3787159 by Ben.Marsh
Guard against UE4.0 backwards compatibility path when determining if an engine is a source distribution.
Change 3787493 by Josh.Engebretson
Parallel pak generation now uses MaxDegreeOfParallelism option which is now set to the number of CPU cores
Moved cryptography settings parsing out of threaded CreatePak method to avoid concurrency issue in ConfigCache.TryReadFile
Fix for multiple threads parsing ini keys (PR 3995)
#PR 3995
#jira 52913
#jira 49503
Change 3787773 by Steve.Robb
Fix for missing final values from FOREACH_ENUM_ macros.
Change 3788287 by Ben.Marsh
TBA: Add checks in debug builds that key names in maps and records for FStructuredArchive are unique.
Change 3788678 by Ben.Marsh
Fix compile error due to inability to instantiate TArray<> of forward declared struct. Convert set of key names to an array to avoid including Set.h in public header for FStructuredArchive.
Change 3789353 by Graeme.Thornton
Removed unused/rotten modes from TextAsset commandlet.
Used existing "-iterations=n" switch to control a global iteration over the given command. Useful for performance testing.
Change 3789396 by Ben.Marsh
Move code to validate container keys/sizes into DO_GUARD_SLOW checks, and allocate container metadata instances dynamically to fix problems with references to things not declared in headers that can't be included from StructuredArchive.h
Change 3789772 by Ben.Marsh
Always strip trailing slashes from the end of paths specified by .build.cs files; they can cause quoted paths to be escaped on the command line.
Change 3790003 by Ben.Marsh
TBA: Rename FStructuredArchive::EElementType::Object to FStructuredArchive::EElementType::Record.
Change 3790051 by Steve.Robb
PIE is disabled during a hot reload.
Hot reload in editor is disabled during PIE.
Hot reload from IDE is deferred until after PIE is exited.
Compiling multiple times before a hot reload (e.g. compiling multiple times in PIE) will now load the most recent change.
#jira UE-20357
#jira UE-52137
Change 3790709 by Steve.Robb
Better move support for TVariant.
EVariantTypes switched over to using an enum class to aid debugger visualization.
Change 3791422 by Ben.Marsh
TBA: Return the type of a field from an annotated archive formatter at the point that we enter it, rather than querying all the time.
Change 3791489 by Graeme.Thornton
TBA: Change StructuredArchiveFromArchive adapter to use the archive.Open() result directly, now that it's a slot and not a record
Change 3792344 by Ben.Marsh
Improvements to base64 encoding library.
* Now supports encoding and decoding with ANSICHAR and WIDECHAR implementations.
* Added support for decoding base-64 blobs without padding marks.
* Added support for decoding into pre-allocated buffer.
* Added constexpr functions for determining the encoded and maximum decoded size of an input buffer.
* Prevent writes past the end of allocated buffer (no longer need to manually remove padding bytes).
Change 3792949 by Ben.Marsh
TBA: Rename FAnnotatedArchiveFormatter to FAnnotatedStructuredArchiveFormatter.
Change 3794078 by Robert.Manuszewski
Fixing a crash that could happen when FGCObjects were constructed and destructed when shutting down the engine
#jira UE-52392
Change 3794413 by Ben.Marsh
TBA: Remove the element type parameter to SetScope(). It isn't really needed; we can just assume the element ID correctly identifies the item on the stack.
Change 3794731 by Ben.Marsh
TBA: Optimize creation of stack elements for empty slots in FStructuredArchive. This saves a lot of bookkeeping when serializing a large number of individual fields. Since only one slot can be active at a time (and it only exists temporarily, until we write into it), we can just store the element ID assigned to it in a member variable.
Change 3795081 by Ben.Marsh
UBT: Move LinuxCommon.cs into Platform/Linux folder.
Change 3795137 by Ben.Marsh
UBT: Allow modules to specify private compiler definitions from the build.cs file, only visible within that module (via the "PrivateDefinitions" property).
Change 3795247 by Ben.Marsh
Fix missing header when creating a new interface from the editor new code wizard.
#jira UE-53174
Change 3796025 by Graeme.Thornton
Fixed some deprecated "Definitions" warnings in OpenCV build files
Change 3796103 by Graeme.Thornton
Disable experimental text asset option - it does nothing useful yet.
Change 3796157 by Graeme.Thornton
Fix path type mismatch in visual studio source code accessor meaning that the DTE comms wouldn't identify a running instance of VS as having the current solution open.
#jira UE-53206
Change 3796315 by Ben.Marsh
Move Formatter to the correct position for initializer.
#jira UE-53208
Change 3797082 by Ben.Marsh
UAT: Work around for exception thrown by launching cook with "-platform=Android_ETC1 -targetplatform=Android -cookflavor=ETC1". Anrdoid_ETC1 is not a valid platform (it's a cook platform), and can't be parsed by UAT.
#jira UE-53232
Change 3799050 by Ben.Marsh
Make UnrealPak.version files writable for Mac and Linux.
Change 3801012 by Graeme.Thornton
VSCode - Update source accessor to use code workspace as it's target, rather than just the project directory
Change 3801214 by Gil.Gribb
UE4 - Remove assert to work around minor problem with lock free lists.
#jira UE-49600
Change 3801219 by Steve.Robb
WeakObjectPtrs now warn when casting away const.
Change 3801299 by Graeme.Thornton
Fix quote issue with foreign project build tasks on PC
Change 3803292 by Graeme.Thornton
Fix crash on startup when using cook-on-the-side. Force a flush of the asset registry background scanning when creating the cook-on-the-side platform registries
Change 3803559 by Steve.Robb
TSAN fix for FMalloc::MaxSingleAlloc.
Change 3803735 by Graeme.Thornton
Last set of cryptokeys changes
- Added some comments for editor exposed settings
- Split "encrypt assets" option into "encrypt uassets" and "encrypt all assets"
Change 3803929 by Ben.Marsh
UGS: Show an in-place error panel when a project fails to open, allowing the user to retry and have their tabs saved instead of creating a modal dialog.
Change 3624590 by Steve.Robb
AddReferencedObjects now generates a compile error with containers of UObject*s where the UObjectType is forward-declared, as these which won't be added to the reference collector.
Tidy-up of existing calls to AddReferencedObjects.
Change 3629473 by Ben.Marsh
Build: Rename the option for embedding source server information in PDB files for installed engine builds.
Change 3632894 by Steve.Robb
VARARG* macros deprecated and usage replaced with variadic templates.
Change 3640704 by Steve.Robb
MakeWeakObjectPtr added, which deduces a TWeakObjectPtr type from a raw pointer type.
Fix to TWeakObjectPtr's constructor which implicitly removed const.
Fixes to everything which didn't compile as a result.
Change 3650813 by Graeme.Thornton
Removed FStartupPackages and associated code
Change 3651000 by Ben.Marsh
Return the stack size from FPlatformStackWalk::CaptureStackBacktrace() rather than checking for the first null pointer, to prevent truncated callstacks if parts of the stack are zeroed out.
#jira UE-49980
Change 3690842 by Steve.Robb
FPlatformAtomics::AtomicRead added - needs optimizing.
AtomicRead() used in FThreadSafeCounter::GetValue().
Change 3699416 by Steve.Robb
Fix to debugger visualization of TArray with a TInlineAllocator or TFixedAllocator.
Improved readability of TSparseArray visualization.
Change 3720812 by Steve.Robb
Atomic functions for 8-bit and 16-bit.
Android, Linux and Switch implementations now just use the Clang implementation.
AtomicRead64 deprecated in favor of the int64* AtomicRead overload.
Change 3722698 by Steve.Robb
VS debugger visualizers for TAtomic.
Change 3732270 by Steve.Robb
Relaxed stores and loads.
Change 3749315 by Graeme.Thornton
If UAT is invoked with platforms in both the -platform and -targetplatform command line switches, build using all of them rather than just the ones in -targetplatform
#jira UE-52034
Change 3750657 by Josh.Engebretson
Fixed issue when debugging editor cook/package and project launch operations
#jira UE-52207
Change 3758514 by Steve.Robb
Fixes to FString::Printf having non-literals being passed as its formatting string.
Change 3763356 by Steve.Robb
ENamedThreads::RenderThread and ENamedThreads::RenderThread_Local encapsulated by getters and setters.
Change 3770549 by Steve.Robb
Removal of obsolete PLATFORM_COMPILER_HAS_DEFAULTED_FUNCTIONS and PLATFORM_COMPILER_HAS_AUTO_RETURN_TYPES.
Tidy up of existing code which uses it.
Change 3770553 by Ben.Marsh
Adding structured serialization API to Core/CoreUObject for use with text-based assets.
* FStructuredArchive abstracts an archive which is made up of compound types (records, arrays, and maps). Values are stored in slots within these types.
* Records are string -> value dictionaries where the key names can be compiled out in non-editor builds or when WITH_TEXT_ARCHIVE_SUPPORT = 0.
* Maps are string -> value dictionaries where the key names are present regardless of the build type.
* Proxy objects are defined to express the context for serialization (FStructuredArchive::FRecord, FStructuredArchive::FArray, FStructuredArchive::FMap, FStructuredArchive::FSlot) which allows basic validation through static typing. These objects act as lightweight handles, and can be cheaply constructed and passed around on the stack. Most serialization to and from the archive is done through these objects.
* Runtime checks perform additional validation to ensure that serialized data is well formed and written in a forward-only manner, regardless of the underlying archive type.
* The actual input/output format is determined by a separate interface (FArchiveFormatter). Context validation (always causing matching LeaveArray for every EnterArray, etc...) is done by FStructuredArchive, so implementing these classes is fairly trivial. FArchiveFormatter can be de-virtualized in non-editor builds, where WITH_TEXT_ARCHIVE_SUPPORT = 0.
* Includes implementations of FArchiveFormatter for binary and JSON formats.
Change 3771105 by Steve.Robb
Deprecation warnings for PLATFORM_COMPILER_HAS_AUTO_RETURN_TYPES and PLATFORM_COMPILER_HAS_DEFAULTED_FUNCTIONS.
Fix for incorrect warning formatting on Clang platforms.
Change 3771520 by Steve.Robb
Start moving Clang-using platforms' pre-setup stuff into a Clang-specific header.
Change 3771564 by Steve.Robb
More common macros moved to the Clang pre-setup header.
Change 3771613 by Steve.Robb
EMIT_CUSTOM_WARNING_AT_LINE moved to ClangPlatformCompilerPreSetup.h.
Change 3772881 by Ben.Marsh
Add support for serializing FName and UObject through FStructuredArchive.
In order to allow custom linker behavior when serializing objects:
* The constructor to JSON input formatter now takes a delegate to convert a string object name into a UObject pointer.
* The constructor to tagged binary formatter takes a delegate to serialize a UObject pointer into any form it chooses (likely an integer index into the import table)
Object and name types are stored as strings in JSON, using an "Object:" or "Name:" prefix to differentiate them from regular strings. Any strings that already contain one of these prefixes are prepended with a "String:" prefix (as is any string that already has a "String:" prefix).
Change 3772941 by Graeme.Thornton
Make build work when including StructuredArchive.h from core container types
Added standard header to new files
Add structured archive serializer for TArray
Fix bug in structured archive where containers weren't being popped from the scope stack
Change 3772972 by Ben.Marsh
Add an adapter which presents a legacy FArchive interface to a FStructuredArchive slot.
Data is serialized into this slot as a stream of elements; raw data is buffered up into fixed size chunks, names and objects are serialized separately.
When used with FBinaryArchiveFormatter, this should result in all data being passed through to the underlying archive in a backwards compatible way, wiith no additional bookkeeping fields.
Change 3773006 by Ben.Marsh
Rename FStructuredArchive::FRecord::EnterSlot() to EnterField().
Change 3773013 by Steve.Robb
bUseInlining target rule added to UnrealBuildTool, which defaults to true, to allow inlining to be disabled for debugging purposes.
Change 3774499 by Ben.Marsh
Minor fixes for FStructuredArchive related classes:
* Text-based archive formats are now compiled out when WITH_TEXT_ARCHIVE_SUPPORT = 0.
* Fixed issue with FTaggedBinaryArchiveFormatter state becoming corrupted when looking ahead at field types.
* FArchiveFieldName constructor is now explicit, to fix cases where strings were being passed directly to serialize functions.
Change 3774600 by Ben.Marsh
Add CopyFormattedData() function, which can copy data from one formatter to another. Add a test case to SerializationAPI that converts from data -> JSON -> binary -> JSON -> data.
This function can be used to implement a generic visitor pattern, by implementing a FArchiveFormatter which receives the deserialized data.
Change 3789721 by Ben.Marsh
TBA: Split FTaggedBinaryArchiveFormatter into separate classes for reading and writing.
Change 3789920 by Ben.Marsh
TBA: Support automatic coercion between any numeric types in tagged binary archives. Also report the smallest type that can contain a value, rather than just in32/double.
#jira UECORE-364
Change 3789982 by Ben.Marsh
TBA: Change FStructuredArchive::Open() to return a slot, rather than a record, to make it easier to implement a raw FArchive adapter.
Change 3792466 by Ben.Marsh
TBA: Better handling of raw data in text based assets. Short sequences of binary data are Base64 encoded as a single string. Longer sequences are stored as an array of Base64 encoded lines, push a SHA1 hash to detect cases where the data was merged incorrectly.
In order to allow inference of the correct type for a field, other fields called "Base64" will be escaped to "_Base64", and any field beginning with "_" will have an additional underscore inserted. Reading files back in reverses these transformations.
Change 3792935 by Ben.Marsh
TBA: Rename FArchiveFormatter to FStructuredArchiveFormatter for consistency with FStructuredArchive.
Change 3795100 by Ben.Marsh
UBT: Rename the ModuleRules Definitions property to PublicDefinitions, to make its semantics clearer.
Change 3795106 by Ben.Marsh
Replace all internal usages of ModuleRules.Definitions, and replace it with ModuleRules.PublicDefinitions.
Change 3796275 by Ben.Marsh
Fix paths to Version.h includes from resource files.
Change 3800683 by Josh.Engebretson
Remove WER from Mac and Linux crash reports in favor of unified runtime-xml format
#jira UE-50073
Change 3803545 by Steve.Robb
TWeakObjPtr const-dropping assignment fix.
Fixes to change.
[CL 3805231 by Ben Marsh in Main branch]
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3151855 on 2016/10/05 by Jeff.Wilson
- Updated Metadata
- Formatting improvements
Change 3192934 on 2016/11/10 by Kimio.Yasuda
Accidentally submitted. No change.
Change 3242329 on 2016/12/21 by Mitchell.Wilson
#UEDoc - Added meta data to materials pages. Added materials tag
Change 3260884 on 2017/01/17 by Sam.Deiter
#UE4 Docs: Adding that Landscape works in VR to the pages.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3373299 on 2017/03/30 by Robert.Gervais
#jira UEDOC-4667
Made a few edits and added some missing metadata as part of Editorial Review process.
#UE4Doc
#code_review tim.hobson
Change 3373485 on 2017/03/30 by Robert.Gervais
#jira UEDOC-4753
Making some minor edits, adding a ToC, and updating metadata as part of Editorial Review process.
#UE4Doc
Change 3373652 on 2017/03/30 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3373798 on 2017/03/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3356303
Change 3373830 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3373838 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372149
Change 3373844 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372149
Change 3373852 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372539
Change 3373853 on 2017/03/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3373854 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372539
Change 3373883 on 2017/03/31 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3373886 on 2017/03/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3367473
Change 3373898 on 2017/03/31 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3340410
Change 3373959 on 2017/03/31 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3361084
Change 3373994 on 2017/03/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3358386
Change 3374024 on 2017/03/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3358386
Change 3375296 on 2017/03/31 by Robert.Gervais
#jira UEDOC-4548
Made several edits during the Editorial Review process.
Updated metadata per latest S&S.
#UE4Doc
#code_review Sam.Dieter
Change 3376001 on 2017/04/02 by Tianmin.Xie
#loc UE4DocCHN. catch up the update notes pages
Change 3376529 on 2017/04/03 by Tim.Hobson
#UE4 Docs: UEDOC-4753 - Editorial Review Edits for Center of Mass page.
* fixed oversteering and understeering images
* used comparison sliders for image comparisons
* corrected metadata and capitalization issues with images.
Change 3376682 on 2017/04/03 by Tim.Hobson
#UE4 Docs: UEDOC-4667 - Editorial Review Edits for Material Slotting
Change 3376692 on 2017/04/03 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Moving Files up a section to Engine/Rendering/Materials/
Change 3376705 on 2017/04/03 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Moving and Separating Mesh Decals into an Overview and HowTo page sections
Change 3376720 on 2017/04/03 by Chase.McAllister
#jira UEDOC-4828 Adding missing order meta data to properly display the order of steps in the navigation sidebar
Change 3377051 on 2017/04/03 by Chase.McAllister
#UE-Doc #jira UEDOC-4832 Updating available ini setting to VR Content Setup page
Change 3377213 on 2017/04/03 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Reorganizing Mesh Decal doc
* Added topic image for Mesh Decals Overview and order information for Materials page
* Split Using Mesh Decals into two pages; Overview and How-to
* Updated Materials and Material How-To pages to use latest version.
Change 3377407 on 2017/04/03 by Richard.Hinckley
#jira UEDOC-4631
Implemented peer review suggestions.
Change 3377935 on 2017/04/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367477
Change 3377972 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3344913
Change 3377990 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3377995 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3377998 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3378003 on 2017/04/03 by Kimio.Yasuda
Updated file against INTSourceChangelist:3369756
Change 3378004 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3378007 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3378014 on 2017/04/03 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3378016 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3378017 on 2017/04/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376720
Change 3378058 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346514
Change 3378061 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3369668
Change 3378064 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3369658
Change 3378066 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378075 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378076 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3377407
Change 3378083 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378085 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372893
Change 3378116 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378121 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378124 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378126 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3378497 on 2017/04/04 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Mesh Decals Reorganization
Change 3378634 on 2017/04/04 by Wes.Bunn
#ue4 docs
changed usage from "allow" to "enable".
Change 3378664 on 2017/04/04 by Jeff.Wilson
Renamed folder to match sample
Change 3378674 on 2017/04/04 by Wes.Bunn
#ue4 docs
changed usage of "allows" to "enables".
Change 3378683 on 2017/04/04 by Wes.Bunn
#ue4 docs
minor update (removed description of acronym for EDL on second usage case).
Change 3378700 on 2017/04/04 by Wes.Bunn
#ue4 docs
minor editoral review udpates.
Change 3378715 on 2017/04/04 by Wes.Bunn
#ue4 docs
minor typo fix.
Change 3378719 on 2017/04/04 by Wes.Bunn
#ue4 docs
Updated note prior to steps to include target hardware and project settings.
Change 3379420 on 2017/04/04 by Richard.Hinckley
#jira UEDOC-4471
Edits (overhaul) based on peer review.
Change 3380061 on 2017/04/04 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3380084 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3380215 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3377051
Change 3380217 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3351045
Change 3380223 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3378719
Change 3380226 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3378683
Change 3380230 on 2017/04/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3378634
Change 3380235 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3380237 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367475
Change 3380262 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367473
Change 3380263 on 2017/04/04 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3380265 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367473
Change 3380271 on 2017/04/04 by Kimio.Yasuda
Updated File against INTSourceChangelist:3362980
Change 3381355 on 2017/04/05 by Chase.McAllister
#UE4 Docs #jira UEDOC-4767 - small spelling and grammatical fixes to Events page
Change 3381486 on 2017/04/05 by Mitchell.Wilson
Updating Android NDK to 12b in Daydream doc.
Adding note to GoogleVR Quickstart.
#jira UEDOC-4830
Change 3381589 on 2017/04/05 by Jeff.Wilson
Updated metadata
Change 3382218 on 2017/04/05 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3375296
Change 3382232 on 2017/04/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3381589
Change 3382242 on 2017/04/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3381355
Change 3382247 on 2017/04/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3350015
Change 3382293 on 2017/04/06 by Tianmin.Xie
#loc UE4DocCHN. fix reference link page error
Change 3382319 on 2017/04/06 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3382369 on 2017/04/06 by Sungjin.Hong
#loc UE4DocKOR
Change 3382407 on 2017/04/06 by Joe.Conley
Adding back section for Documentation Publishing error checking that got removed in a merge.
Change 3382408 on 2017/04/06 by Joe.Conley
Documentation publishing error checking automation script:
-Doxygen exe moved
-Fixing path for sycing //depot/UnrealDocTool to be under the local root for the build machine so things get cleaned up properly
Change 3382500 on 2017/04/06 by Sungjin.Hong
#loc UE4DocKOR
Change 3382607 on 2017/04/06 by Chad.Garyet
- Adding dev-documentation to buildgraph
- hooking up documentation job to dev-doc. added nightly schedule
Change 3382623 on 2017/04/06 by Chad.Garyet
Changing workspace settings
Change 3382624 on 2017/04/06 by Chad.Garyet
fixing busted comma
Change 3384170 on 2017/04/07 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3384203 on 2017/04/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3384247 on 2017/04/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3384293 on 2017/04/07 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3376529
Change 3385871 on 2017/04/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3379420
Change 3385873 on 2017/04/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3385887 on 2017/04/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3385908 on 2017/04/10 by Sungjin.Hong
#loc UE4DocKOR
Change 3385913 on 2017/04/10 by Sungjin.Hong
#loc UE4DocKOR
Change 3386371 on 2017/04/10 by Richard.Hinckley
Response to user post mentioning an inaccurate source file location. Verified that the new information is correct by checking source.
Change 3387247 on 2017/04/10 by Tim.Hobson
#UE4 Docs: UEDOC-4670 - HDR Output Display. Adding peer review suggestions.
Change 3387638 on 2017/04/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3387726 on 2017/04/11 by Joe.Conley
Documentation Publishing error checking list
- Fixed bug in checking SendEmails parameter
- Move logging of emails to before the email is sent, otherwise not executed if email exception happens
- Fixing variable not getting set with debugging parameters
Change 3387758 on 2017/04/11 by Tianmin.Xie
#loc UE4DocCHN. fix reference link page error
Change 3387820 on 2017/04/11 by Kimio.Yasuda
Updated file against INTSourceChangelist:3372845
Change 3387840 on 2017/04/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3378497
Change 3387857 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3387866 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3387873 on 2017/04/11 by Kimio.Yasuda
Updated file against INTSourceChangelist:3387247
Change 3387901 on 2017/04/11 by Kimio.Yasuda
Updated file against INTSourceChangelist:3381486
Change 3387902 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3340402
Change 3387931 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3379420
Change 3388009 on 2017/04/11 by Sungjin.Hong
#loc UE4DocKOR
Change 3388665 on 2017/04/11 by Richard.Hinckley
#jira UEDOC-4843
FPS Shooter tutorial pages updated for version number only - intended to match the other files that have actual changes and separated into their own CL for better organization.
Change 3388666 on 2017/04/11 by Richard.Hinckley
#jira UEDOC-4843
Updates performed as part of Programming Tutorial sweep task leading up to 4.16 release.
Change 3388780 on 2017/04/11 by Richard.Hinckley
Documentation: Minor fixes to Programming section.
Change 3388788 on 2017/04/11 by Sam.Deiter
#UE4 Docs: Updating the images to use the new 1R5 Android tools
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3388850 on 2017/04/11 by Sam.Deiter
#UE4 Docs: Adding new images and a new section on setting up Java Home on Macs
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3389591 on 2017/04/11 by Kimio.Yasuda
Minor typo fixed
Change 3389611 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389614 on 2017/04/11 by Masayo.Kondo
Translated Section Home and Next Step section
Change 3389616 on 2017/04/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3388850
Change 3389618 on 2017/04/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3388850
Change 3389619 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389624 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389629 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389633 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389640 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389642 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389646 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389647 on 2017/04/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3388780
Change 3389650 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389679 on 2017/04/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3379420
Change 3389686 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389694 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389702 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389708 on 2017/04/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389770 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3378497
Change 3389794 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3377213
Change 3389798 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3340402
Change 3389800 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389808 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389814 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389816 on 2017/04/12 by Sungjin.Hong
#loc UE4DocKOR
Change 3389817 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389823 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389846 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388666
Change 3389847 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3389850 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3389854 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389868 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3389869 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389872 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389878 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389880 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389882 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3388665
Change 3389883 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389887 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3389940 on 2017/04/12 by Sungjin.Hong
#loc UE4DocKOR
Change 3389942 on 2017/04/12 by Sungjin.Hong
#loc UE4DocKOR
Change 3390323 on 2017/04/12 by Richard.Hinckley
#jira UEDOC-4670
Implemented peer review suggestions.
Change 3390770 on 2017/04/12 by Richard.Hinckley
#jira UEDOC-4676
Implemented peer review suggestions.
Change 3390806 on 2017/04/12 by Sam.Deiter
#UE4 Docs: Updating images and text with new info about Java Home.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3391775 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3355414
Change 3391795 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3391799 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3391801 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3391802 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388665
Change 3391806 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3390323
Change 3391808 on 2017/04/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3390323
Change 3391822 on 2017/04/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3356804
Change 3391855 on 2017/04/13 by Tianmin.Xie
#loc UE4DocCHN. fix page order and use consist language for release note.
Change 3391891 on 2017/04/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3390806
Change 3391900 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3390770
Change 3391911 on 2017/04/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3386371
Change 3391912 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3379420
Change 3391914 on 2017/04/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3377213
Change 3391916 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3379420
Change 3391925 on 2017/04/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3355812
Change 3391977 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3391984 on 2017/04/13 by Tianmin.Xie
#loc UE4DocCHN. fix reference link page error and catch up the changelist number against INT version
Change 3391998 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3388780
Change 3392015 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3378700
Change 3392018 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3378674
Change 3392201 on 2017/04/13 by Richard.Hinckley
#jira UEDOC-4672
Updated button count from 12 to 20 for engine version 4.16.
Change 3392479 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4623
Updating metadata for UBS Target Files Reference page.
#UE4Doc
#code_review kimio.yasuda, jeff.wilson
Change 3392490 on 2017/04/13 by Richard.Hinckley
#jira UEDOC-4633
Implemented SME review suggestions.
Change 3392773 on 2017/04/13 by Tim.Hobson
#UE4 Docs: UEDOC-4555 - Reorganizing Vehciel User Guide into a multi-step how-to page that is broken up into the following:
* Vehicle Intro
* Creating Wheel Blueprints
* Creating Anim Blueprint
* Creating Vehicle Blueprint
* Testing Functionality
Change 3393423 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Setting up text and list button links for future publication.
#UE4Doc
Change 3393426 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of How To Guide, showing users how to use Blueprint Maps.
#UE4Doc
Change 3393427 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of Reference page, covering Blueprint Map Nodes.
#UE4Doc
Change 3393428 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of Overview page, covering Blueprint Maps.
#UE4Doc
Change 3393431 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of How To Guide, showing users how to use Blueprint Sets.
#UE4Doc
Change 3393433 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of Reference page, covering Blueprint Set Nodes.
#UE4Doc
Change 3393437 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4693
Writing first draft of Overview page, covering Blueprint Sets.
#UE4Doc
Change 3393534 on 2017/04/13 by Robert.Gervais
#jira UEDOC-4778
Made some minor revisions during the Editorial Review process.
#UE4Doc
#code_review Wes.Bunn
Change 3393621 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3393707 on 2017/04/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3376682
Change 3393738 on 2017/04/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3393534
Change 3393741 on 2017/04/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3392201
Change 3393775 on 2017/04/14 by Kimio.Yasuda
Updated File against INTSourceChangelist:3392479
Change 3393815 on 2017/04/14 by Kimio.Yasuda
Updated File against INTSourceChangelist:3355715
Change 3393823 on 2017/04/14 by Sungjin.Hong
#loc UE4DocKOR
Change 3393827 on 2017/04/14 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3393831 on 2017/04/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3392490
Change 3393854 on 2017/04/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3392773
Change 3393909 on 2017/04/14 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3393919 on 2017/04/14 by Sungjin.Hong
#loc UE4DocKOR
Change 3394271 on 2017/04/14 by Robert.Gervais
#jira UEDOC-4772
Made a few revisions during the Editorial Review process.
Added a FIXME to the file for the author's use in addressing the Editorial Review comments.
#UE4Doc
#code_review Wes.Bunn
Change 3394392 on 2017/04/14 by Robert.Gervais
#jira UEDOC-4802
Made a few revisions during the Editorial Review process.
Added a FIXME and couple of TODOs to the file for the author's use in addressing the Editorial Review comments.
#UE4Doc
#code_review Wes.Bunn
Change 3394405 on 2017/04/14 by Robert.Gervais
#jira UEDOC-4692
Adding links to relevant Unreal Engine Architecture pages (TMap and TSet) per SME's request.
#UE4Doc
Change 3394420 on 2017/04/14 by Tim.Hobson
#UE4 Docs: UEDOC-4756 - Font's page updates.
The Font page has been broken up into separate pages listed below:
* Overview of Fonts
* How-To Directory Page
* Importing Fonts
* Creating Fonts
* Using Fonts with UMG
* Moved images from single folder to individual pages folders where needed.
Added SME review notes and corrections along with "Layout Method" option that is coming in 4.16.
Change 3394828 on 2017/04/14 by Robert.Gervais
#jira UEDOC-4759
Made a few revisions during the Editorial Review process.
Added TODOs, FIXMEs, notes, and questions to the files for the author's use in addressing the Editorial Review comments.
#UE4Doc
#code_review Tim.Hobson
Change 3395065 on 2017/04/14 by Robert.Gervais
#jira UEDOC-4560
Made some editorial review comments, marked the pages with various notes, FIXMEs, and TODOs for the author's use in addressing the Editorial Review comments.
#UE4Doc
#code_review Tim.Hobson
Change 3395414 on 2017/04/16 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3395416 on 2017/04/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3395065
Change 3395449 on 2017/04/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3394405
Change 3395452 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3394405
Change 3395456 on 2017/04/17 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3395471 on 2017/04/17 by Tianmin.Xie
#loc UE4DocCHN. do translation. (clear ActivateVRMode to INT version for error fix since it is old and need revise later)
Change 3395474 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3395480 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3394828
Change 3395482 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3394420
Change 3395489 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3394392
Change 3395501 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3395505 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3394271
Change 3395509 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3395516 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3394828
Change 3395533 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3394828
Change 3395542 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3394828
Change 3395546 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3395548 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3394828
Change 3395549 on 2017/04/17 by Kimio.Yasuda
Fixed translation
Change 3395557 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3395649 on 2017/04/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3395652 on 2017/04/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3396462 on 2017/04/17 by Richard.Hinckley
#jira UEDOC-4678
Removed the word "haptic" to avoid confusion, as per SME's suggestion.
Change 3397117 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3397143 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3397144 on 2017/04/17 by Kimio.Yasuda
Fixed typo
Change 3397148 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3397155 on 2017/04/17 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3394828
Change 3397156 on 2017/04/17 by Jeff.Wilson
Updated metadata
Change 3397189 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3397194 on 2017/04/17 by Kimio.Yasuda
Fixed typo
Change 3397228 on 2017/04/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393433
Change 3397283 on 2017/04/18 by Joe.Conley
Documentation Publishing error checking automation:
- Fixing typo in mailing list address for errors in Japanese documentation.
Change 3397310 on 2017/04/18 by Joe.Conley
Removing Japanese documents underneath "NotForLicensees." Nobody uses them and they have publishing errors.
Change 3397337 on 2017/04/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3397346 on 2017/04/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3394405
Change 3397369 on 2017/04/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3396462
Change 3397376 on 2017/04/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3394405
Change 3397499 on 2017/04/18 by Sungjin.Hong
#loc UE4DocKOR
Change 3397556 on 2017/04/18 by Richard.Hinckley
#jira UEDOC-4874
Updating SaveGame documentation.
Change 3398881 on 2017/04/18 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3398894 on 2017/04/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3394405
Change 3399265 on 2017/04/19 by Sungjin.Hong
#loc UE4DocKOR
Change 3399451 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4759 - Font pages Editorial Review Edits. #Code_Review Robert.Gervais
* Fonts Landing - removed extraneous commented out sections.
* Font's How-To Landing - left the commented out section, but clarified it's for any future how-to's that will be in those specific skill levels.
* Creating Fonts - Added "Hero" image and project requirements description.
* Fonts with UMG - Added "Hero" iamge and project requirements description. Also added a couple of steps to clarify how to create a widget BP.
* Importing Fonts - Added "Hero" image and project requirements description. Added link in Using the Font Editor section to the Overview page for description of Default Font Family along with expanding description to be more clear. Expanded the Overview to cover the multiple methods covered in the How-To page.
* Overview - Replaced the FontFace asset image for better context. Removed extraneous commented out section. Fixed wording for a phrase in the intro section.
Change 3400474 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Vehicle User Guide Editorial Review Edits: #Code_Review Robert.Gervais
* Vehicle Intro - Added topic image.
* Added Project Required Setup page
* Testing Functionality - Fixed Input's image quality. Reorganized and re-did the Axis/Action Mapping sub-steps into fewer steps and added appropriate images.
* New Game Mode - Fixed POV perspective to be consistent. Removed extraneous excitment from the page.
Change 3400585 on 2017/04/19 by Robert.Gervais
#jira UEDOC-4560
Removed TODO comments from source.
#UE4Doc
#code_review tim.hobson
Change 3400627 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering.
Change 3400638 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering. Page 4 to 5
Change 3400666 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering. Page 3 to 4
Change 3400668 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering. Page 2 to 3
Change 3400673 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering. Page 1 to 2
Change 3400679 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Renaming folder structure for how-to guide ordering. Page 0 to 1
Change 3400712 on 2017/04/19 by Tim.Hobson
#UE4 Docs: UEDOC-4560 - Minor fix for click to start action.
Change 3401080 on 2017/04/19 by Robert.Gervais
#jira UEDOC-4634
Made a few revisions during the Editorial Review process.
#UE4Doc
#code_review Richard.Hinckley
Change 3401125 on 2017/04/19 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3401191 on 2017/04/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393431
Change 3401206 on 2017/04/19 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3401283 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401285 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401311 on 2017/04/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393431
Change 3401319 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401320 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401330 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401332 on 2017/04/20 by Kimio.Yasuda
Fixed link error
Change 3401334 on 2017/04/20 by Kimio.Yasuda
Fixed metadata
Change 3401337 on 2017/04/20 by Kimio.Yasuda
Fixed Bookmark error
Change 3401345 on 2017/04/20 by Kimio.Yasuda
Fixed translation (#Add)
Change 3401350 on 2017/04/20 by Kimio.Yasuda
Fixed bookmark error
Change 3401355 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3400712
Change 3401359 on 2017/04/20 by Kimio.Yasuda
Fixed metadata
Change 3401367 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3400712
Change 3401370 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3401377 on 2017/04/20 by Masayo.Kondo
Fixed Description
Change 3401383 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3401386 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3401483 on 2017/04/20 by Sungjin.Hong
#loc UE4DocKOR
Change 3401486 on 2017/04/20 by Sungjin.Hong
#loc UE4DocKOR
Change 3401632 on 2017/04/20 by Robert.Gervais
#jira UEDOC-4759
Updated some image formats to improve clarity.
#UE4Doc
Change 3401962 on 2017/04/20 by Robert.Gervais
#jira UEDOC-4679
Made a few revisions during the Editorial Review process.
#UE4Doc
#code_review Richard.Hinckley
Change 3403061 on 2017/04/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393431
Change 3403081 on 2017/04/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393431
Change 3403082 on 2017/04/20 by Kimio.Yasuda
Updated File against IntSourceChangelist:3393433
Change 3403092 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3401080
Change 3403098 on 2017/04/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403101 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3401962
Change 3403102 on 2017/04/20 by Kimio.Yasuda
Updated File againt INTSourceChangelist:3393427
Change 3403106 on 2017/04/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3401080
Change 3403128 on 2017/04/21 by Sungjin.Hong
#loc UE4DocKOR
Change 3403130 on 2017/04/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3403135 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403138 on 2017/04/21 by Kimio.Yasuda
Fixed translation
Change 3403144 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403148 on 2017/04/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3403150 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403152 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403160 on 2017/04/21 by Kimio.Yasuda
Minor correction
Change 3403161 on 2017/04/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3399451
Change 3403163 on 2017/04/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3401632
Change 3403165 on 2017/04/21 by Kimio.Yasuda
Fixed translation
Change 3403167 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403168 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393427
Change 3403177 on 2017/04/21 by Kimio.Yasuda
Minor translation correction
Change 3403183 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393426
Change 3403218 on 2017/04/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3372845
Change 3403252 on 2017/04/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393426
Change 3403259 on 2017/04/21 by Kimio.Yasuda
Fixed bookmark error
Change 3403300 on 2017/04/21 by Sungjin.Hong
#loc UE4DocKOR
Change 3403455 on 2017/04/21 by Sam.Deiter
#UE4 Docs: Fixing a few of the items and reducing the size of one of the images.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3403466 on 2017/04/21 by Jeff.Wilson
Minor formatting and text updates
Change 3403467 on 2017/04/21 by Jeff.Wilson
Updated metadata
Change 3403469 on 2017/04/21 by Jeff.Wilson
Minor formatting updates
Change 3403470 on 2017/04/21 by Jeff.Wilson
Added missing link
Change 3403473 on 2017/04/21 by Jeff.Wilson
Updated to support percentage width/height
Change 3403528 on 2017/04/21 by Sungjin.Hong
#loc UE4DocKOR
Change 3403595 on 2017/04/21 by Tim.Hobson
#UE4 Docs: Added related page to link to Using Mesh Decals in Overview page that was missing.
Change 3403618 on 2017/04/21 by Tim.Hobson
#UE4 Docs: Moved Mesh Decals Overview up one folder level.
Change 3403635 on 2017/04/21 by Tim.Hobson
#UE4 Docs: Mesh Decals parent/related links adjustment
Change 3404717 on 2017/04/21 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3405076 on 2017/04/23 by Masayo.Kondo
Fixed no. of colums
Change 3405125 on 2017/04/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3403466
Change 3405127 on 2017/04/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3403467
Change 3405130 on 2017/04/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3403467
Change 3405132 on 2017/04/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3403467
Change 3405147 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393426
Change 3405153 on 2017/04/24 by Kimio.Yasuda
Fixed some translations
Change 3405155 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3403635
Change 3405161 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3403635
Change 3405167 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3403470
Change 3405168 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405170 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405171 on 2017/04/24 by Kimio.Yasuda
Updated File agasint INTSourceChangelist:3367470
Change 3405175 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405177 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405178 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405184 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405185 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405187 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405188 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405189 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405190 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405192 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405195 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405198 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405201 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3405215 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405217 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3403469
Change 3405219 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3403455
Change 3405229 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405230 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3393423
Change 3405232 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405233 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3392479
Change 3405234 on 2017/04/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3388780
Change 3405239 on 2017/04/24 by Masayo.Kondo
Fixed layout
Change 3405240 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405247 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405251 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405255 on 2017/04/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3405846 on 2017/04/24 by Richard.Hinckley
#jira UEDOC-4900
Replaced placeholder comment with actual link.
Change 3406683 on 2017/04/24 by Kimio.Yasuda
Title translated into Japanese
Change 3406693 on 2017/04/24 by Jeff.Wilson
Fixed broken link
Change 3406700 on 2017/04/24 by Kimio.Yasuda
Updated File agasint INTSourceChangelist:3242329
Change 3406876 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3406886 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238697
Change 3406904 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3406908 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367477
Change 3406925 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3406933 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3406938 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3406944 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3406949 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3406956 on 2017/04/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317961
Change 3406969 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3406976 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3407374 on 2017/04/25 by Richard.Hinckley
#jira UEDOC-4679
Implemented most editorial comments. A few are still incomplete.
Change 3407380 on 2017/04/25 by Richard.Hinckley
#jira UEDOC-4679
Meant to include these with the previous submission.
Change 3408135 on 2017/04/25 by Richard.Hinckley
#jira UEDOC-4634
Implemented most editorial comments.
Change 3408734 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3408752 on 2017/04/25 by Masayo.Kondo
3405846
Change 3408770 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3408773 on 2017/04/25 by Masayo.Kondo
I#loc UE4DocJpn File updated against INT#3408135
Change 3408893 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3408925 on 2017/04/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3408959 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3367470
Change 3408962 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3354806
Change 3408966 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3408968 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3408972 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3408980 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3408999 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3409000 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3409005 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351873
Change 3409058 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3407374
Change 3409065 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351628
Change 3409068 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3350143
Change 3409097 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3347993
Change 3409132 on 2017/04/26 by Sungjin.Hong
#loc UE4DocKor
Change 3409139 on 2017/04/26 by Sungjin.Hong
#loc UE4DocKOR
Change 3409695 on 2017/04/26 by Sam.Deiter
#UE4 Docs: Checking in updates on the new Math Materail nodes.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3409805 on 2017/04/26 by Richard.Hinckley
#jira UEDOC-4550
Updated Packaging Projects documentation with information about EDL and ALT. Fixed up an old image.
Change 3409816 on 2017/04/26 by Jeff.Wilson
Minor formatting update
Change 3409833 on 2017/04/26 by Jeff.Wilson
Moved overview paragraph to shared section to use as rich tooltip
Change 3410454 on 2017/04/26 by Robert.Gervais
#UE4Doc
Changed CPP to C++ to reflect current style.
#code_review jeff.wilson
Change 3410507 on 2017/04/26 by Robert.Gervais
#jira UEDOC-4784
Minor revisions during the Editorial Review process.
#UE4Doc
#code_review Wes.Bunn
Change 3410534 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3410557 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3410454
Change 3410562 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3410507
Change 3410575 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3409833
Change 3410577 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3409833
Change 3410585 on 2017/04/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3409816
Change 3410598 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3409695
Change 3410599 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3372845
Change 3410609 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3347993
Change 3410615 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336765
Change 3410619 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336096
Change 3410621 on 2017/04/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3304581
Change 3410633 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3410653 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410659 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410682 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410692 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410698 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3178047
Change 3410707 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3178047
Change 3410719 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151861
Change 3410739 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151855
Change 3410753 on 2017/04/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3409805
Change 3410755 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410768 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3410938 on 2017/04/27 by Tianmin.Xie
#loc UE4DocCHN quick fix a wrong text and mark the file as a new file to follow up
Change 3411848 on 2017/04/27 by Robert.Gervais
#jira UEDOC-4679
Added some related page links and inserted a missing image.
#UE4Doc
Change 3411855 on 2017/04/27 by Robert.Gervais
#jira UEDOC-4679
Added metadata for topic image.
#UE4Doc
Change 3412983 on 2017/04/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3411855
Change 3413019 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3413026 on 2017/04/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3413049 on 2017/04/27 by Kimio.Yasuda
Title translation changed
Change 3413053 on 2017/04/27 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3413056 on 2017/04/27 by Kimio.Yasuda
Fixed translation
Change 3413082 on 2017/04/27 by Kimio.Yasuda
Translation fixed
Change 3413199 on 2017/04/28 by Sungjin.Hong
#loc UE4DocKOR
Change 3413822 on 2017/04/28 by Robert.Gervais
#jira UEDOC-4694
Addressing peer review feedback for Blueprint Sets.
#UE4Doc
Change 3413824 on 2017/04/28 by Robert.Gervais
#jira UEDOC-4694
Addressing peer review feedback for Blueprint Maps.
#UE4Doc
Change 3413921 on 2017/04/28 by Robert.Gervais
#jira UEDOC-4673
Minor revisions during the Editorial Review process.
#UE4Doc
#code_review Richard.Hinckley
Change 3415561 on 2017/04/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3413921
Change 3415562 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3415563 on 2017/04/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3413921
Change 3415565 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3415566 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3415568 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415574 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415588 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415594 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415596 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415598 on 2017/04/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415601 on 2017/04/30 by Kimio.Yasuda
Changed title translation
Change 3415603 on 2017/04/30 by Kimio.Yasuda
Changed title translation
Change 3415630 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3381486
Change 3415634 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415637 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415639 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415647 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415648 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415653 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415657 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415675 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413824
Change 3415689 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415690 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415693 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415711 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415719 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415723 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415724 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415725 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415732 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415733 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415735 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415736 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415737 on 2017/05/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3415943 on 2017/05/01 by Richard.Hinckley
#jira UEDOC-4551
Implemented most peer review suggestions.
Change 3417703 on 2017/05/02 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3417950 on 2017/05/02 by Sungjin.Hong
#loc UE4DocKor
Change 3417969 on 2017/05/02 by Sungjin.Hong
#loc UE4DocKOR
Change 3418529 on 2017/05/02 by Jeff.Wilson
Minor formatting update
Change 3423471 on 2017/05/04 by Robert.Gervais
Scrubbed images to comply with our Styles and Standards.
#UE4Doc
Change 3424935 on 2017/05/05 by Tianmin.Xie
#loc UE4DocCHN. fix reference link page error
Change 3424999 on 2017/05/05 by Tianmin.Xie
#loc UE4DocCHN. update against latest INT version.
Change 3425001 on 2017/05/05 by Tianmin.Xie
#loc UE4DocCHN. fix reference link page error
Change 3426963 on 2017/05/05 by Robert.Gervais
#jira UEDOC-4883
Updated pages, indicating that VS 2017 Support has been added and that VS 2012 and VS 2013 support has been removed.
#UE4Doc
Change 3427580 on 2017/05/07 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3427599 on 2017/05/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3427601 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3426963
Change 3427604 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3426963
Change 3427608 on 2017/05/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3427610 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3413822
Change 3427614 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3413822
Change 3427617 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3413822
Change 3427618 on 2017/05/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3427620 on 2017/05/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3413822
Change 3429222 on 2017/05/08 by Jeff.Wilson
Added new quick search terms
Change 3429225 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429227 on 2017/05/08 by Jeff.Wilson
Updated meatadata
Change 3429229 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429233 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429234 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429236 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429238 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429239 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429240 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429241 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429242 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429243 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429244 on 2017/05/08 by Jeff.Wilson
Updated page title and description
Change 3429245 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429247 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429248 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429249 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429250 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429251 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429252 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429253 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429254 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429255 on 2017/05/08 by Jeff.Wilson
Resized to fit topic image aspect ratio
Change 3429256 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429257 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429259 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429260 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429261 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429264 on 2017/05/08 by Jeff.Wilson
Updated metadata
Change 3429265 on 2017/05/08 by Jeff.Wilson
Updated child page layout/presentation
Change 3429267 on 2017/05/08 by Jeff.Wilson
Updated placeholder topic image
Change 3429955 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429249
Change 3429956 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429249
Change 3429960 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429248
Change 3429968 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3429980 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3429983 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3429986 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3429988 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3429991 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3430021 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429227
Change 3430026 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429233
Change 3430029 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430035 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430038 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430041 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430043 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430046 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430055 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430076 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430084 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430087 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430090 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430094 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430095 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3430100 on 2017/05/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429225
Change 3430128 on 2017/05/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3413822
Change 3430132 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430136 on 2017/05/09 by Kimio.Yasuda
Upadated File against INTSourceChangelist:3429265
Change 3430137 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429233
Change 3430139 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430140 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430141 on 2017/05/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429264
Change 3430142 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430144 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430146 on 2017/05/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3430149 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430152 on 2017/05/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3430154 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3430155 on 2017/05/09 by Kimio.Yasuda
Changed title
Change 3430161 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3430164 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3430168 on 2017/05/09 by Kimio.Yasuda
Minor translation change
Change 3430205 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3430241 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3430246 on 2017/05/09 by Kimio.Yasuda
Reviewed and fixed translation
Change 3430247 on 2017/05/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429244
Change 3430260 on 2017/05/09 by Kimio.Yasuda
Translation reviewed and fixed
Change 3432243 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3432244 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3432247 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3432251 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3432253 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3432267 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3432276 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3432279 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3432290 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3432296 on 2017/05/10 by Kimio.Yasuda
Reviewed and fixed translation
Change 3432348 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429253
Change 3432364 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429254
Change 3432370 on 2017/05/10 by Masayo.Kondo
Fixed doc pulishing error.
Change 3432373 on 2017/05/10 by Kimio.Yasuda
updated File against INTSourceChangelist:3108692
Change 3432707 on 2017/05/10 by Sam.Deiter
#UE4 Docs:Updating Google VR docs and image sizes.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3433106 on 2017/05/10 by Jeff.Wilson
Added toggle for VR platforms
Change 3433380 on 2017/05/10 by Sam.Deiter
#UE4 Docs: Updaing some images and text for Google IO event.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3434304 on 2017/05/10 by Kimio.Yasuda
Title translation fixed
Change 3434396 on 2017/05/10 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434427 on 2017/05/10 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434440 on 2017/05/10 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434444 on 2017/05/10 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434449 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3180166
Change 3434451 on 2017/05/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3180166
Change 3434468 on 2017/05/11 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3434473 on 2017/05/11 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434474 on 2017/05/11 by Kimio.Yasuda
Fixed title translation
Change 3434479 on 2017/05/11 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434489 on 2017/05/11 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434502 on 2017/05/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3434522 on 2017/05/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3434531 on 2017/05/11 by Kimio.Yasuda
Reviewed and fixed translation
Change 3434613 on 2017/05/11 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3435012 on 2017/05/11 by Tim.Hobson
#UE4 Docs: Moving Nvidia folder from Engine/ to Engine/Rendering based on peer review feedback. This folder contains specific Nvidia features that have been integrated (ie. AFR and Aftermath).
Change 3435043 on 2017/05/11 by Sam.Deiter
#UE4 Docs: The Match Android SDK settings had the wrong item input in the image and description. Fixed in both places.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3436352 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3436358 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3436364 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429227
Change 3436370 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436372 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436373 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436374 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436375 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436377 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3436398 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429229
Change 3436402 on 2017/05/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429234
Change 3436542 on 2017/05/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3436545 on 2017/05/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3436547 on 2017/05/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429251
Change 3436566 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3436573 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3436592 on 2017/05/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429250
Change 3436595 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3435043
Change 3436598 on 2017/05/12 by Kimio.Yasuda
Changed title translation
Change 3436602 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3432707
Change 3436606 on 2017/05/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429250
Change 3436613 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3432707
Change 3436618 on 2017/05/12 by Kimio.Yasuda
Changed title translation
Change 3436623 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3432707
Change 3436634 on 2017/05/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3432707
Change 3438640 on 2017/05/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3438652 on 2017/05/14 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3438659 on 2017/05/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429241
Change 3438660 on 2017/05/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3438675 on 2017/05/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429233
Change 3438683 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3438688 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429236
Change 3438695 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3438716 on 2017/05/15 by Tianmin.Xie
#loc UE4DocCHN. fix typo
Change 3438718 on 2017/05/15 by Tianmin.Xie
#loc UE4DocCHN. catch up with latest INT version
Change 3438750 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3438754 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3438766 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3438772 on 2017/05/15 by Sungjin.Hong
#loc UE4DocKor
Change 3439407 on 2017/05/15 by Sam.Deiter
#UE4 Docs: Checking in changes for Switch doc updates.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3439587 on 2017/05/15 by Wes.Bunn
#ue4 docs
Applying Peer Review Feedback
Change 3439709 on 2017/05/15 by Wes.Bunn
#code_review robert.gervais
Updated based on Editorial Review
Change 3439744 on 2017/05/15 by Wes.Bunn
#code_review robert.gervais
Applying Editorial Review feedback.
Also checking in TracksEvent Hero Image.
Change 3439755 on 2017/05/15 by Jeff.Wilson
minor updates
Change 3439780 on 2017/05/15 by Wes.Bunn
#code_review robert.gervais
Applying Editorial Review feedback.
Change 3439782 on 2017/05/15 by Sam.Deiter
#UE4 Docs:Removing info that is no longer needed.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3439832 on 2017/05/15 by Wes.Bunn
#code_review robert.gervais
Applying Editorial Review Feedback.
Change 3440413 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3440414 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3440419 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3439832
Change 3440423 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3439587
Change 3440424 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3439744
Change 3440427 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3439780
Change 3440429 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3439709
Change 3440446 on 2017/05/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429241
Change 3440512 on 2017/05/15 by Tianmin.Xie
#loc UE4DocCHN. fix page generating error caused by bad link ref. page content need to update later for catch up.
Change 3440576 on 2017/05/16 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3440655 on 2017/05/16 by Kimio.Yasuda
#locUE4DocJPNmoved or deleted
Change 3440658 on 2017/05/16 by Kimio.Yasuda
#locUE4DocJPN moved or deleted
Change 3440659 on 2017/05/16 by Kimio.Yasuda
#locUE4DocJPN moved or deleted
Change 3441237 on 2017/05/16 by Wes.Bunn
#ue4 docs
Applying SME feedback
-updated images based on 4.16 UI changes.
-updated content to include SME's feedback.
Change 3441419 on 2017/05/16 by Sam.Deiter
#UE4 Docs:Removing this as it is not needed.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3441626 on 2017/05/16 by Wes.Bunn
#ue4 docs
Initial write-up for Pose Snapshot
Change 3441637 on 2017/05/16 by Wes.Bunn
Added Missing Topic Image.
Change 3441681 on 2017/05/16 by Tim.Hobson
#UE4 Docs: UEDOC-4928 - Added Volumetric Fog Overview page:
* Also added topic to LightingAndShadows page
Change 3442388 on 2017/05/16 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3442399 on 2017/05/16 by Kimio.Yasuda
#locUE4DocJPN
Change 3442421 on 2017/05/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3441237
Change 3442426 on 2017/05/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3441237
Change 3442430 on 2017/05/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3441237
Change 3442912 on 2017/05/17 by Sam.Deiter
#UE4 Docs: Checking in the updates to the Switch QS.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3443199 on 2017/05/17 by Sam.Deiter
#UE4 Docs: Adding a small note based on feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3443237 on 2017/05/17 by Sam.Deiter
#UE4 Docs: Adding a new note about what happens if you can not see / select the Switch option.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3443239 on 2017/05/17 by Sam.Deiter
#UE4 Docs:Removing a note that was incorectly placed.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3443825 on 2017/05/17 by Jeff.Wilson
minor updates
Change 3443985 on 2017/05/17 by Sam.Deiter
#UE4 Docs: Adding some SME feedback to the doc.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3444205 on 2017/05/17 by Wes.Bunn
#ue4 docs
Initial write-up for embedded Sequences in Blueprint Actors.
- How-to write-up.
- Link from main how-to page.
- Section added to Overview page.
Change 3444805 on 2017/05/17 by Wes.Bunn
#ue4 docs
Initial write-up for Modify Curve node.
-Add new reference page for Modify Curve to Skeletal Controls reference section.
-Updated Skeletal Controls Landing Page to include new Modify Curve page.
Change 3445551 on 2017/05/17 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3445638 on 2017/05/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3441681
Change 3445681 on 2017/05/17 by Kimio.Yasuda
Updated file against INTSourceChangelist:3435012
Change 3445731 on 2017/05/17 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3445756 on 2017/05/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3445793 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3435012
Change 3445794 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3435012
Change 3445797 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443825
Change 3445800 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443825
Change 3446912 on 2017/05/18 by Wes.Bunn
#ue4 docs
Material Parameter Track How-to added
- new how-to page added.
- added link to how-to landing page.
Change 3447015 on 2017/05/18 by Wes.Bunn
#ue4 docs
Applying Peer Review feedback.
Change 3447810 on 2017/05/18 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3447907 on 2017/05/18 by Kimio.Yasuda
Title translation fixed
Change 3447908 on 2017/05/18 by Kimio.Yasuda
Fixed title translation
Change 3448034 on 2017/05/18 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3448044 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3439407
Change 3448049 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3441681
Change 3448054 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3433106
Change 3448064 on 2017/05/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429264
Change 3448068 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3448157 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443985
Change 3448161 on 2017/05/19 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3448179 on 2017/05/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3448184 on 2017/05/19 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3441626
Change 3448193 on 2017/05/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3444205
Change 3448197 on 2017/05/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3446912
Change 3448198 on 2017/05/19 by Kimio.Yasuda
Fixed typo
Change 3448201 on 2017/05/19 by Sungjin.Hong
#loc UE4DocKOR
Change 3448230 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443985
Change 3448236 on 2017/05/19 by Kimio.Yasuda
Fixed translation
Change 3448254 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443825
Change 3448255 on 2017/05/19 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3446912
Change 3448263 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3442912
Change 3448281 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3442912
Change 3448284 on 2017/05/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3442912
Change 3448323 on 2017/05/19 by Sungjin.Hong
#loc UE4DocKOR
Change 3449210 on 2017/05/19 by Wes.Bunn
#ue4 docs
refactored based on peer review feedback.
- udpated content/images/video.
Change 3451056 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3439407
Change 3451061 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451065 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451075 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451093 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451095 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451098 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451109 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451116 on 2017/05/21 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429260
Change 3451206 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3444205
Change 3451235 on 2017/05/22 by Kimio.Yasuda
Updated file against INTSourceChangelist:3429260
Change 3451240 on 2017/05/22 by Kimio.Yasuda
Updated file against INTSourceChangelist:3429260
Change 3451256 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429257
Change 3451270 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3449210
Change 3451285 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429239
Change 3451298 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3451303 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3451320 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429247
Change 3451711 on 2017/05/22 by Tim.Hobson
#UE4 Docs: UEDOC-5019 - Android Codeworks updates and other minor revisions on multiple pages.
* Updating Codeworks versions
* Recapturing images to reflect latest changes where needed
Change 3452142 on 2017/05/22 by Wes.Bunn
#ue4 docs
Fixed missing UMG How-to page (UEDOC 5061)
Added redirector for Property Based Blends How-to (links to Locomotion Based Blends How-to)
Change 3452172 on 2017/05/22 by Wes.Bunn
#ue4 docs
Apply peer review feedback.
Change 3452211 on 2017/05/22 by Robert.Gervais
#jira UEDOC-4884
Addressing Peer Review comment.
#UE4Doc
Change 3452340 on 2017/05/22 by Robert.Gervais
#jira UEDOC-4251
Applying SME Review feedback.
#UE4Doc
Change 3452369 on 2017/05/22 by Robert.Gervais
Fixed ToC.
#UE4Doc
Change 3452931 on 2017/05/22 by Robert.Gervais
#jira UEDOC-4384
Addressing SME Review feedback.
#UE4Doc
Change 3452968 on 2017/05/22 by Robert.Gervais
#jira UEDOC-4384
Setting up pages for publication.
#UE4Doc
Change 3453053 on 2017/05/22 by Robert.Gervais
Clarifying documentation per copywriter feedback.
#UE4Doc
Change 3453061 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453066 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453069 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453074 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453075 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453087 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453097 on 2017/05/22 by Kimio.Yasuda
Updated file against INTSourceChangelist:3429247
Change 3453098 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453101 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453148 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453158 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453164 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453183 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452142
Change 3453184 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452968
Change 3453197 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452968
Change 3453210 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453212 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452172
Change 3453214 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453229 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452968
Change 3453252 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453258 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453307 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453310 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453314 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453316 on 2017/05/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452968
Change 3453322 on 2017/05/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3429254
Change 3453364 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453366 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452931
Change 3453368 on 2017/05/23 by Kimio.Yasuda
Reviewed and fixed translation
Change 3453374 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453376 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452931
Change 3453377 on 2017/05/23 by Sungjin.Hong
#loc UE4DocKOR
Change 3453379 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453380 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453382 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453383 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453384 on 2017/05/23 by Kimio.Yasuda
Reviewed and fixed translation
Change 3453385 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453389 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453391 on 2017/05/23 by Kimio.Yasuda
Reviewed and fixed translation
Change 3453392 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453393 on 2017/05/23 by Kimio.Yasuda
Reviewed and fixed translation
Change 3453410 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453430 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452369
Change 3453432 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453437 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453455 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453457 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453468 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453475 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453485 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453490 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453494 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453497 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453516 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3453517 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453518 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453526 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453532 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3453541 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3453547 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3454004 on 2017/05/23 by Mitchell.Wilson
Initial checkin of 4.16 Release Notes.
Change 3454405 on 2017/05/23 by Chase.McAllister
#ue4 docs Applying small grammar fixes to ActorSequence page
Change 3454520 on 2017/05/23 by Jeff.Wilson
Updated metadata
Change 3454522 on 2017/05/23 by Jeff.Wilson
Minor layout change
Change 3454523 on 2017/05/23 by Jeff.Wilson
Minor formatting change
Change 3454528 on 2017/05/23 by Jeff.Wilson
Formatting Updates
Change 3454531 on 2017/05/23 by Jeff.Wilson
minor update for images in PDFs
Change 3454533 on 2017/05/23 by Jeff.Wilson
Added global OS toggle
Change 3454591 on 2017/05/23 by Tim.Hobson
#UE4 Docs: UEDOC-4555 - Vehicle Improvments
- Added SimpleWheeledVehicleMovement component page
- Cleaned up Vehicle User Guide and added section for PhysX Vehicle now in a Plugin and the steps to update existing content.
- Peer Review edits have been applied as well.
Change 3454681 on 2017/05/23 by Tim.Hobson
#UE4 Docs: UEDOC-5079 - Adding Capsule Collision import prefix to FBX Content Pipeline page.
Change 3454749 on 2017/05/23 by Jeff.Wilson
Set pages to publish
Change 3455313 on 2017/05/23 by Jeff.Wilson
Added topic image
Change 3455315 on 2017/05/23 by Jeff.Wilson
Added link to Capsule Shadows page
Change 3455346 on 2017/05/23 by Tim.Hobson
#UE4 Docs: Marking Mesh Decals Overview page for public.
Change 3456024 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3456038 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454523
Change 3456063 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3456067 on 2017/05/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3451711
Change 3456082 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454681
Change 3456088 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3456093 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3454405
Change 3456098 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454591
Change 3456106 on 2017/05/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3453053
Change 3456116 on 2017/05/23 by Sungjin.Hong
#loc UE4DocKor ????->??
Change 3456222 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3456225 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3455346
Change 3456233 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3454591
Change 3456240 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3455313
Change 3456241 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3455315
Change 3456243 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456245 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456251 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456252 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456260 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456261 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456265 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456266 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456269 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3456275 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456276 on 2017/05/24 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3456281 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456308 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456310 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456314 on 2017/05/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454749
Change 3456322 on 2017/05/24 by Kimio.Yasuda
Updated File atainst INTSourceChangelist:3454520
Change 3456364 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3456369 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3456393 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3456394 on 2017/05/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3456451 on 2017/05/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3456452 on 2017/05/24 by Jeff.Wilson
added note about encryption
Change 3456880 on 2017/05/24 by Sam.Deiter
#UE4 Docs: Fixing a few minor spelling mistakes
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3457136 on 2017/05/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3457153 on 2017/05/24 by Jeff.Wilson
Fixed typo
Change 3457554 on 2017/05/24 by Richard.Hinckley
#jira UEDOC-4941
Updated source control page with the new feature.
Change 3457813 on 2017/05/24 by Robert.Gervais
#jira UEDOC-4380
Setting availability to public.
#UE4Doc
Change 3458296 on 2017/05/24 by Robert.Gervais
#jira UEDOC-4933
Made some revisions during Editorial Review process.
#UE4Doc
Change 3459053 on 2017/05/25 by Wes.Bunn
#ue4 docs
First Pass at Kinematic Bodies with Simulated Parents How-To page.
Change 3459460 on 2017/05/25 by Richard.Hinckley
#jira UEDOC-4942
Changing image based on peer review.
Change 3459907 on 2017/05/25 by Wes.Bunn
#ue4 docs
Updating Look At node page for 4.16 updates.
Change 3461150 on 2017/05/26 by Sungjin.Hong
#loc UE4DocKor
Change 3461152 on 2017/05/26 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3461378 on 2017/05/26 by Wes.Bunn
#ue4 docs
Added Spline IK Reference Page
Change 3462049 on 2017/05/26 by Robert.Gervais
#jira UEDOC-4214
Made a few fixes during the Editorial Review process.
#UE4Doc
Change 3462330 on 2017/05/26 by Sam.Deiter
#UE4 Docs:Apply Editorial feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3462657 on 2017/05/26 by Wes.Bunn
#ue4 docs
Update to Animation Toolbar page to include information about Create/Export Animation that include animation data generated from a post-process graph.
Change 3464079 on 2017/05/28 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3464098 on 2017/05/28 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3464205 on 2017/05/29 by Sungjin.Hong
#loc UE4DocKOR
Change 3464323 on 2017/05/29 by Sungjin.Hong
#loc UE4DocKOR
Change 3464346 on 2017/05/29 by Sungjin.Hong
#loc UE4DocKOR
Change 3464642 on 2017/05/29 by Sungjin.Hong
#loc UE4DocKOR
Change 3464662 on 2017/05/30 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3457153
Change 3464734 on 2017/05/30 by Sungjin.Hong
#loc UE4DocKOR
Change 3464851 on 2017/05/30 by Wes.Bunn
#ue4 docs
Applying Peer Review Feedback from Sam D.
Change 3464887 on 2017/05/30 by Wes.Bunn
#ue4 docs
Applying Peer Review Feedback from Richard H.
Change 3464910 on 2017/05/30 by Richard.Hinckley
#jira UEDOC-4944
Implemented SME review suggestions.
Change 3464925 on 2017/05/30 by Wes.Bunn
Added link to twitch stream covering Pose Snapshots.
Change 3466786 on 2017/05/30 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3464887
Change 3466790 on 2017/05/30 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3466798 on 2017/05/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3464925
Change 3466801 on 2017/05/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3462657
Change 3466852 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3462657
Change 3466853 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3462657
Change 3466863 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3464851
Change 3466868 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3464851
Change 3466898 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3464910
Change 3466920 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3447015
Change 3466927 on 2017/05/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3426963
Change 3466947 on 2017/05/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3426963
Change 3466952 on 2017/05/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3467012 on 2017/05/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3467075 on 2017/05/31 by Wes.Bunn
Applying SME feedback.
Change 3467220 on 2017/05/31 by Wes.Bunn
#ue4 docs
Updated page to include section on Bake Pose feature for 4.16 LODs.
Change 3467293 on 2017/05/31 by Tim.Hobson
#UE4 Docs: Adding Topic Image for a bunch of missing pages. #Code_Review sam.deiter, jeff.wilson, chase.mcallister, wes.bunn, robert.gervais, tim.hobson, richard.hinckley
Change 3467843 on 2017/05/31 by Mitchell.Wilson
Adding updated Windows and Mac images for GettingStartedWithUE4 Project Heirarchy and ToolsAndEditors.
#UE4 Docs
Change 3467891 on 2017/05/31 by Wes.Bunn
#ue4 docs
Applying Peer Review Feedback from TimH
Change 3467926 on 2017/05/31 by Wes.Bunn
#ue4 docs
Updated and applied Peer Review feedback from TimH.
Change 3468570 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468575 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468577 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468580 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468586 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468593 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468597 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468611 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468629 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3467293
Change 3468632 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468637 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468647 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468708 on 2017/05/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3468942 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3462330
Change 3468956 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3468957 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3468961 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3468966 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3468967 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3468970 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429245
Change 3468987 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469001 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469008 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469035 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469037 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3469052 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469073 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469076 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469081 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469085 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469094 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469095 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469100 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3469137 on 2017/06/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3469359 on 2017/06/01 by Mitchell.Wilson
Adding Mac and Windows specific images for Unreal Engine 4 for Unity Developers doc.
#UE4 Docs
Change 3469367 on 2017/06/01 by Tim.Hobson
#UE4 Docs: UEDOC-4765 - HDR Display Output -
* Updated Metadata and added dual type page so that it could show on the Rendering & Graphics landing page.
* Added a social and topic image.
* Removed a commented out section that wasn't needed.
Change 3469385 on 2017/06/01 by Tim.Hobson
#UE4 Docs: marking pages public
Change 3469520 on 2017/06/01 by Tim.Hobson
#UE4 Docs: Updating Vehicle User Guide: 3 - Creatinga Vehicle Animation Blueprint with missing step to set the Anim BP Parent Class to be able to call the WheelHandlerNode
Change 3469547 on 2017/06/01 by Mitchell.Wilson
Adding and updating images in Level Design Quick Start for Mac and Windows.
#UE4 Docs
Change 3469555 on 2017/06/01 by Mitchell.Wilson
Adding screenshots to Unreal Editor Interface for OpenParticleSystem for Mac and Windows
Change 3469699 on 2017/06/01 by Tim.Hobson
#UE4 Docs: UEDOC-4888 - New Clothing Solver doc pages
* Overview Page
* Reference Page
Change 3469804 on 2017/06/01 by Robert.Gervais
#jira UEDOC-1419
Updated cross compile toolchain per SME's request.
#UE4Doc
#code_review Arciel.Rekman
Change 3469942 on 2017/06/01 by Mitchell.Wilson
Adding screenshots to Level Editor images for Mac and Windows
#UE4 Docs
Change 3470080 on 2017/06/01 by Robert.Gervais
#jira UEDOC-1419
Applying SME's redline to first step.
#UE4Doc
Change 3470120 on 2017/06/01 by Mitchell.Wilson
Adding Mac and Windows screenshots to InterfaceOverview images for Layout Customization page.
#UE4 Docs
Change 3470148 on 2017/06/01 by Mitchell.Wilson
Adding Mac and Windows images to Project Settings images.
#UE4 Docs
Change 3470255 on 2017/06/01 by Mitchell.Wilson
Adding Mac and Windows images to Property Matrix images
#UE4 Docs
Change 3470855 on 2017/06/01 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3470861 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3470878 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3470080
Change 3470879 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3470886 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3469804
Change 3470887 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3470889 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3467293
Change 3470892 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3470897 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3470902 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3470907 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467075
Change 3470918 on 2017/06/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467891
Change 3470932 on 2017/06/01 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3470934 on 2017/06/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3470958 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3458296
Change 3470965 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3470985 on 2017/06/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471011 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471013 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3471016 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3469385
Change 3471018 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471021 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3469385
Change 3471029 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471034 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471037 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3457813
Change 3471045 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3469520
Change 3471052 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3471054 on 2017/06/02 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3471066 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3471097 on 2017/06/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3418529
Change 3471106 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3456880
Change 3471144 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429247
Change 3471170 on 2017/06/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429247
Change 3471289 on 2017/06/02 by Mitchell.Wilson
Updating windows specific images in MeshPreviewScene page.
#UE4 Docs
Change 3471326 on 2017/06/02 by Mitchell.Wilson
Adding Windows and Mac shots to Working With Actor Transforms images.
Updated one image so it didn't need an alternate.
#UE4 Docs
Change 3471440 on 2017/06/02 by Wes.Bunn
#ue4 docs
Added Rigid Body Skeletal Control node to the SkelControl Reference section.
Change 3471517 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4895 - PS4 Getting Started update using JonF's notes
The page is now broken up into a multi-step how-to
* Landing page
* Setting up and Compiling a build for PS4
* Connecting to the PS4 with UE4
* Build Operation (cooking content for deployment)
* Debugging from Visual Studio
* Additional information
Change 3471538 on 2017/06/02 by Jeff.Wilson
Set page to publish
Change 3471584 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4648 - Adding Animtation Curves Linked to Bones to the Anim Curves Page.
Change 3471585 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4680 - Adding Previous Frame Switch Material Expression section to this page.
Change 3471586 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4686 - Adding Pre-Skinned Local Normal and Pre-Skinned Local Position vector expression examples.
Change 3471588 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4731 - Added information about Physically-based Post Process to the Post Process Effects page.
Change 3471591 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4816 - Added Pivot Painter 2 doc pages.
* Pivot Painter 2 Overview
* Pivot Painter 2 MAXScript Reference
* Pivot Painter 2 Material Function Reference
* Updating Content Tools Landing Page
* Added TopicImage and Metadata to PivotPainter1 page
* Added TopicImage and Metadata to PivotPainter1 Material Functions page
Change 3471779 on 2017/06/02 by Mitchell.Wilson
Adding Mac and Windows screenshots to FindingHelp images.
Updating images to remove platform specific menus.
#UE4 Docs
Change 3471781 on 2017/06/02 by Mitchell.Wilson
Adding Mac and Windows screenshots to PIE images
#UE4 Docs
Change 3471793 on 2017/06/02 by Mitchell.Wilson
Adding EditorPrefs_Mac image in DetailsPanel images
#UE4 Docs
Change 3471822 on 2017/06/02 by Mitchell.Wilson
Adding PIEViewport screenshots for Mac and Windows to InEditorTesting images.
#UE4 Docs
Change 3471855 on 2017/06/02 by Mitchell.Wilson
Adding PIESettings_Mac screenshot to PlayInEditorSettings images
#UE4 Docs
Change 3471907 on 2017/06/02 by Mitchell.Wilson
Adding Mac and Windows screenshots in Place Mode images.
Updating images to be non platform specific.
#UE4 Docs
Change 3471995 on 2017/06/02 by Wes.Bunn
#ue4 docs
Applying Peer Review feedback from RichardH
Change 3472164 on 2017/06/02 by Mitchell.Wilson
Adding Mac immersive mode images to Viewport Basics images
Updating images to be non platform specific.
#UE4 Docs
Change 3472485 on 2017/06/02 by Mitchell.Wilson
Adding Mac and Windows screenshots to Work with Level Assets images.
#UE4 Docs
Change 3472589 on 2017/06/02 by Tim.Hobson
#UE4 Docs: UEDOC-4821 - Pivot Painter 2 pages Editorial Review Edits
Change 3473048 on 2017/06/04 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3473052 on 2017/06/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3471538
Change 3473092 on 2017/06/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3473107 on 2017/06/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3472589
Change 3473119 on 2017/06/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3443825
Change 3473141 on 2017/06/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3471591
Change 3473168 on 2017/06/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3471588
Change 3473395 on 2017/06/05 by Mitchell.Wilson
Adding Windows and Mac screenshots to Managing Multiple Levels images.
Updating one image to be non platform specific.
#UE4 Docs
Change 3473433 on 2017/06/05 by Jeff.Wilson
Added JPN, KOR versions of Nintendo Switch Quick Start PDF
Change 3473443 on 2017/06/05 by Jeff.Wilson
Removing old redirected pages
Change 3473444 on 2017/06/05 by Jeff.Wilson
Updated metadata
Change 3473445 on 2017/06/05 by Jeff.Wilson
Minor updates
Change 3473446 on 2017/06/05 by Jeff.Wilson
Updated metadata
Change 3473453 on 2017/06/05 by Wes.Bunn
Applying Editoral Review feedback from RobG.
Change 3473461 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4893 - Clothing Solver - Editorial Review Edits
Change 3473462 on 2017/06/05 by Jeff.Wilson
Updated with Windows/Mac OS tiggleable images
Change 3473463 on 2017/06/05 by Jeff.Wilson
Added OS toggle to preview template
Change 3473466 on 2017/06/05 by Wes.Bunn
Applying Editorial Review feedback from RobG.
Change 3473472 on 2017/06/05 by Tim.Hobson
#UE4 Docs: added topic image for Bitmask Blueprint Variables page
Change 3473475 on 2017/06/05 by Mitchell.Wilson
Adding and updating Skeletal Mesh Actors images to be non platform specific.
#UE4 Docs
Change 3473488 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4653 - Animation Curves linked to bones Editorial Review Edits
Change 3473491 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to Merge Actors images.
#UE4 Docs
Change 3473508 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4977 - Add Convolution Bloom to existing PostProcess Bloom page.
* Updated Metadata for the page.
Also, updated a good portion of the Dirt Mask section with the following:
* Added comparison image of Dirt Mask used in VehicleGame
* Added PPV image to show where and how to enable.
* added Dirt Mask Image Best Practices section reworking the notes in the Dirt Mask Texture property to be more clear and easy to read.
* Added an image of the Dirt Mask Texture used in VechileGame as an example.
Change 3473543 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4981 - Convolution for Bloom Editorial Review updates.
Also added the following:
* Topic Image
* Training Stream for Convolution for Bloom.
Change 3473556 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4475 - Adding Landscape Mirror/Rotate tool to pages.
Change 3473583 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to How To Import Static Mesh LODs images.
#UE4 Docs
Change 3473611 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4765 - HDR Display Output - Editorial Review updates.
Change 3473820 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to How To Import Static Meshes images
#UE4 Docs
Change 3474005 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to Importing Skeletal Mesh LODs images.
Updating one image to be non platform specific.
#UE4 Docs
Change 3474032 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4735 - Post Process Editorial Review updates
Additional things addressed:
* Added Topic Images for all sub-pages.
* Switched to the Directory Output for the topics rather than the older method.
Change 3474125 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to Import Skeletal Meshes images
Updating some images to be non platform specific.
#UE4 Docs
Change 3474197 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4691 - Vector Expressions Editorial Review updates.
Change 3474270 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to 1.1 Creating Folders images.
#UE4 Docs
Change 3474284 on 2017/06/05 by Mitchell.Wilson
Updating image to be non platform specific in 2 - Creating Materials images.
#UE4 Docs
Change 3474289 on 2017/06/05 by Mitchell.Wilson
Updating image to be non platform specific in 3 - Editing Materials images.
#UE4 Docs
Change 3474294 on 2017/06/05 by Mitchell.Wilson
Updating image to be non platform specific in 4 - Applying Materials to Static Mesh Actors images.
#UE4 Docs
Change 3474327 on 2017/06/05 by Mitchell.Wilson
Adding Mac and Windows images to Content Browser images.
Updating a topic image to be non platform specific.
#UE4 Docs
Change 3474429 on 2017/06/05 by Tim.Hobson
#UE4 Docs: UEDOC-4685 - Previous Frame Switch Material Node Editorial Review Updates:
Additional updates to this page not related to this new node specifically:
* Updated Metadata
* Reorganized and structured the ToC
* Updated video to use latest embedded video object
* Fixed various grammatical issues
* Added missing captions to lightboxed images.
* Added Overview text to this page.
Change 3475034 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3474197
Change 3475037 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3473445
Change 3475038 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3473445
Change 3475212 on 2017/06/06 by Mitchell.Wilson
Adding one Mac specific image to Packaging Projects images.
Updating multiple images to be non platform specific.
#UE4 Docs
Change 3475222 on 2017/06/06 by Mitchell.Wilson
Updating media framework topic image to be non platform specific
Change 3475247 on 2017/06/06 by Mitchell.Wilson
Updating material editor topic to be non platform specific
#UE4 Docs
Change 3475311 on 2017/06/06 by Mitchell.Wilson
Adding Mac and Windows images to Material Editor UI images.
Updating one image to be non platform specific.
#UE4 Docs
Change 3475399 on 2017/06/06 by Tim.Hobson
#UE4 Docs: UEDOC-4964 - Adding Reroute Node information to the Material Editor Reference Page
Change 3475402 on 2017/06/06 by Mitchell.Wilson
Updating images to be non platform specific in Particle System User Guide images.
#UE4 Docs
Change 3475410 on 2017/06/06 by Mitchell.Wilson
Updating one image to be non platform specific in Animation Blueprints images
#UE4 Docs
Change 3475419 on 2017/06/06 by Mitchell.Wilson
Updating images to be non platform specific in Animation Blueprint Editor images
#UE4 Docs
Change 3475576 on 2017/06/06 by Mitchell.Wilson
Adding Mac and Windows images to Animation Editor images
#UE4 Docs
Change 3475588 on 2017/06/06 by Mitchell.Wilson
Updating one image to be non platform specific in Animation Editor images
#UE4 Docs
Change 3475611 on 2017/06/06 by Mitchell.Wilson
Updating one image in Anim Blueprint Editor to be non platform specific
#UE4 Docs
Change 3475616 on 2017/06/06 by Mitchell.Wilson
Updating one image to be non platform specific in Skeletal Mesh Editor images
#UE4 Docs
Change 3475624 on 2017/06/06 by Mitchell.Wilson
Updating one image to be non platform specific in Skeleton Editor images
#UE4 Docs
Change 3475772 on 2017/06/06 by Mitchell.Wilson
Adding Mac and Windows specific images to Foliage Instanced Meshes images
Updating some images to be non platform specific
#UE4 Docs
Change 3475852 on 2017/06/06 by Richard.Hinckley
#jira UEDOC-5127
Updated Garbage Collection in Object Handling document. Made some structural and S&S changes to the document as well.
Change 3475948 on 2017/06/06 by Jeff.Wilson
Updated templates
Change 3476123 on 2017/06/06 by Tim.Hobson
#UE4 Docs: UEDOC-4969 - Add Material Reroute nodes Editorial Review updates.
Additional updates:
* Updating the Overview text
* grammatical fixes
* updating embedded videos to use the latest markdown style.
* Added videos demonstrating a lot of the functionality suggested with this page.
* Updated some images where needed.
Change 3476307 on 2017/06/06 by Mitchell.Wilson
Adding Mac and Windows specific images to Reducing Packaged Game Size images
Updating some images to be non platform specific.
#UE4 Docs
Change 3476451 on 2017/06/06 by Mitchell.Wilson
Adding Mac and Windows specific images to Intro to Blueprints images
#UE4 Docs
Change 3476520 on 2017/06/06 by Richard.Hinckley
#jira UEDOC-4945
Implemented editorial review notes.
Change 3477025 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangeList:3259022
Change 3477090 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3474032
Change 3477121 on 2017/06/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3474032
Change 3477217 on 2017/06/07 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3477358 on 2017/06/07 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3477382 on 2017/06/07 by Tianmin.Xie
#loc UE4DocCHN. minor update template for CHN page out of date warning message with better language.
Change 3477472 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific images to Texture Guidelines for Mobile Platforms images.
#UE4 Docs
Change 3477482 on 2017/06/07 by Mitchell.Wilson
Updating one image to be non platform specific in Lighting for Mobile Platforms.
#UE4 Docs
Change 3477562 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific images to Post Process Effects on Mobile images
Updating some images to be non platform specific.
#UE4 Docs
Change 3477566 on 2017/06/07 by Wes.Bunn
#ue4 docs
applying editorial review feedback.
Change 3477690 on 2017/06/07 by Tim.Hobson
#UE4 Docs: UEDOC-5022 - Android CodeWorks updates Editorial View fixes.
Change 3477699 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying editorial review feedback for the following pages:
Engine/Animation/Blendspaces/Blendspaces.INT.udn
Engine/Animation/Blendspaces/Creation/BlendspaceCreation.INT.udn
Engine/Animation/Blendspaces/Editor/BlendspaceEditor.INT.udn
Engine/Animation/Blendspaces/Overview/BlendspaceOverview.INT.udn
Engine/Animation/Blendspaces/UserGuide/BlendspaceUserGuide.INT.udn
Engine/Animation/AnimHowTo/BlendSpace/BlendspaceHowTo.INT.udn
Change 3477715 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific images to Performance Guidelines for Mobile Devices images.
Updating some images to be non platform specific.
#UE4 Docs
Change 3477716 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying Editorial Review feedback.
Change 3477741 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific image to Test Your Map on a Device images
Updating one image to be non platform specific.
#UE4 Docs
Change 3477744 on 2017/06/07 by Mitchell.Wilson
Updating one image to be non platform specific in Package Your Game images
#UE4 Docs
Change 3477876 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying SME feedback.
Change 3477895 on 2017/06/07 by Robert.Gervais
#jira UEDOC-4945
Replaced topic image object with topic-image metadata.
Updated a sentence with a minor syntagmatic adjustment.
#UE4Doc
#code_review Richard.Hinckley
Change 3478014 on 2017/06/07 by Tim.Hobson
#UE4 Docs: Fixing metadata causing ordering issues and hierarchy problems in side navigation bar for UMG Drag And Drop pages
Change 3478222 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying Editorial Review feedback.
Change 3478246 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying SME feedback.
Change 3478325 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific iOS and Android images to Mobile Packaging Wizard images.
#UE4 Docs
Change 3478445 on 2017/06/07 by Wes.Bunn
#ue4_docs
Applying SME feedback.
Change 3478664 on 2017/06/07 by Mitchell.Wilson
Adding Mac specific images to Signing Projects for Release images.
#UE4 Docs
Change 3478730 on 2017/06/07 by Richard.Hinckley
#jira UEDOC-4945
Updating an image with some padding so it fits better.
Change 3478814 on 2017/06/07 by Richard.Hinckley
#jira UEDOC-5128
Implemented peer review suggestions.
Change 3479256 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479282 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479288 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479294 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479299 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479314 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479395 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479409 on 2017/06/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479432 on 2017/06/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3479468 on 2017/06/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479516 on 2017/06/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479535 on 2017/06/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479539 on 2017/06/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3479744 on 2017/06/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3479794 on 2017/06/08 by Mitchell.Wilson
Adding mac specific images to Setting up Android Launch Screens images
#UE4 Docs
Change 3480511 on 2017/06/08 by Wes.Bunn
#ue4 docs
Refactor of Retaget Manager Page / Included Import Pose for Retarget Base Pose section
Change 3480672 on 2017/06/08 by Jeff.Wilson
Renamed files to work with slider sequence
Change 3480676 on 2017/06/08 by Jeff.Wilson
Added Mac OS version of immersive mode slider
Change 3480875 on 2017/06/08 by Jeff.Wilson
updated templates with new param documentation syntax
Change 3480877 on 2017/06/08 by Jeff.Wilson
Updated metadata
Change 3480884 on 2017/06/08 by Jeff.Wilson
Updated topic image
Change 3481084 on 2017/06/08 by Mitchell.Wilson
Updating multiple pages with Mac and Windows images.
#UE4 Docs
Change 3481581 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477895 & fixed conversion error
Change 3481589 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481596 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481600 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481605 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481608 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481614 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481620 on 2017/06/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478014
Change 3481728 on 2017/06/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3476123
Change 3481760 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3481084
Change 3481770 on 2017/06/09 by Sungjin.Hong
#loc UE4DocKOR
Change 3481779 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3481084
Change 3481786 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3481084
Change 3481817 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3481084
Change 3481818 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3473461
Change 3481819 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481821 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481823 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3480877
Change 3481827 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481828 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481830 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481833 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481844 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3481848 on 2017/06/09 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3480676
Change 3481854 on 2017/06/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3474032
Change 3482177 on 2017/06/09 by Sam.Deiter
#UE4 Docs: Fixing a small typo that lead to people downloading the wrong version.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3482294 on 2017/06/09 by Mitchell.Wilson
Updating multiple pages with Mac and Windows images
#UE4 Docs
Change 3482309 on 2017/06/09 by Jeff.Wilson
Minor formatting updates
Change 3482332 on 2017/06/09 by Mitchell.Wilson
Updating multiple pages with Mac and Windows images
#UE4 Docs
Change 3482370 on 2017/06/09 by Mitchell.Wilson
Updating page to include Windows and Mac images. Some images could not be updated due to bugs in engine.
#UE4 Docs
Change 3482378 on 2017/06/09 by Mitchell.Wilson
Updating some lightbox image links to match their thumbnails.
#jira UEDOC-5163
#UE4 Docs
Change 3482403 on 2017/06/09 by Tim.Hobson
#UE4 Docs: UEDOC-4480 - Landscape Sculpt Mode page rewrite and reorganization into a landing page with all the tools existing as their own pages.
* Sculpt Mode page turned into Landing page
* Tools of Sculpt Mode added as their own reference pages
* Added Video deomonstrations and steps to use each tool.
Change 3482475 on 2017/06/09 by Tim.Hobson
#UE4 Docs: fixing minor character error in text of the Convolution Bloom properties table.
Change 3483116 on 2017/06/09 by Tim.Hobson
#UE4 Docs: UEDOC-5188 - Minor corrections to page and image updates.
Change 3484188 on 2017/06/11 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3484194 on 2017/06/11 by Kimio.Yasuda
Changed tite translation
Change 3484288 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484290 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484299 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484300 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484304 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484307 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477699
Change 3484315 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3473466
Change 3484321 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477876
Change 3484324 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3482378
Change 3484325 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3484330 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3484331 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3484332 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3484347 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478246
Change 3484359 on 2017/06/12 by Tianmin.Xie
#loc UE4DocCHN. update CHN pages to latest INT pages.
Change 3484363 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3480511
Change 3484375 on 2017/06/12 by Kimio.Yasuda
Updated file against INTSourceChangelist:3482403
Change 3484377 on 2017/06/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3484380 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3484385 on 2017/06/12 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3484556 on 2017/06/12 by Sam.Deiter
#UE4 Docs: Fixing a few minor grammar issues.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3484583 on 2017/06/12 by Sam.Deiter
#UE4 Docs:Applying SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3484619 on 2017/06/12 by Sungjin.Hong
#loc UE4DocKOR
Change 3484673 on 2017/06/12 by Wes.Bunn
#ue4 docs
UEDOC-5171
Animation Preview Scene Improvements
- Engine\Animation\Persona\PreviewSettings : New Reference Page
- Engine\Animation\AnimBlueprints\Interface : Updated to link to new Reference Page
- Engine\Animation\Persona\Modes\Animation : Updated to link to new Reference Page
- Engine\Animation\Persona\Modes\Mesh : Updated to link to new Reference Page
- Engine\Animation\Persona\Modes\Skeleton : Updated to link to new Reference Page
Change 3484694 on 2017/06/12 by Wes.Bunn
#ue4_docs
Change 3484721 on 2017/06/12 by Wes.Bunn
#ue4 docs
Applying image fixes based on Peer Review.
Change 3484724 on 2017/06/12 by Jeff.Wilson
Updated with missing JS includes
Change 3484974 on 2017/06/12 by Robert.Gervais
#UE4Doc
Marking doc as 'Public'.
Change 3485038 on 2017/06/12 by Robert.Gervais
#UE4Doc
Updated Weak Pointer documentation per SME's request.
#code_review dan.oconner
Change 3486089 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3486143 on 2017/06/12 by Kimio.Yasuda
File updated against INTSourceChangelist:3482403
Change 3486152 on 2017/06/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486184 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484974
Change 3486187 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477716
Change 3486204 on 2017/06/12 by Kimio.Yasuda
Updated File agasint INTSourceChangelist:3482403
Change 3486210 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478222
Change 3486218 on 2017/06/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486228 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3486251 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484694
Change 3486257 on 2017/06/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486441 on 2017/06/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484556
Change 3486491 on 2017/06/13 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3486503 on 2017/06/13 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3486540 on 2017/06/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486552 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486554 on 2017/06/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486556 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486581 on 2017/06/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3486582 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486586 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486593 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486599 on 2017/06/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3486600 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486605 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3486615 on 2017/06/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3486629 on 2017/06/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3487380 on 2017/06/13 by Chase.McAllister
#jira UEDOC-4704 - fixing spelling errors in RoboRecall docs
[CL 3487521 by Jeff Wilson in Main branch]
#lockdown Nick.Penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3239909 on 2016/12/19 by Robert.Gervais
#jira UEDOC-1419
Fixed caption spacing for hero image.
#UE4doc
Change 3240118 on 2016/12/19 by Tim.Hobson
#UE Docs: UEDOC-3961 - SME review edits and cleaned up project settings image without tooltip included.
Change 3240145 on 2016/12/19 by Zak.Parrish
#Docs - adding new work and additional cleanup to Photo Real Character bust, formerly Twinblast Bust documentation
Change 3240452 on 2016/12/19 by Kimio.Yasuda
Updated File against INTSourceChangeList:3229370
Change 3240453 on 2016/12/19 by Kimio.Yasuda
Updated File against INTSourceChangeList:3229370
Change 3240497 on 2016/12/19 by Kimio.Yasuda
Updated File against INTSourceChangeList:3239909
Change 3240602 on 2016/12/20 by Kimio.Yasuda
Updated File against INTSourceChangeList:3235241
Change 3240633 on 2016/12/20 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3240638 on 2016/12/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3216146
Change 3241214 on 2016/12/20 by Richard.Hinckley
#jira UEDOC-4302
Updated C+ Interface document.
Change 3241323 on 2016/12/20 by Tim.Hobson
Checking in MorphTargetDebugViewMode video for upload to Youtube when changes shelved in CL-3241241 are accepted.
Change 3241425 on 2016/12/20 by Robert.Gervais
#jira UEDOC-3884
Adding images per SME suggestions.
#UE4doc
Change 3241426 on 2016/12/20 by Robert.Gervais
#jira UEDOC-3884
Updating images per SME suggestions.
#UE4doc
Change 3241428 on 2016/12/20 by Robert.Gervais
#jira UEDOC-3887
Updated steps to include UE4Editor-Linux-Debug build configuration for CPP Projects in Linux (per SME suggestion).
#UE4doc
Change 3241590 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3241602 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:
Change 3241627 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3241640 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3241662 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3242329 on 2016/12/21 by Mitchell.Wilson
#UEDoc - Added meta data to materials pages. Added materials tag
Change 3242400 on 2016/12/21 by Robert.Gervais
#jira UEDOC-3884
Finished incorporating all of the SME's suggested additions.
#UE4doc
Change 3242448 on 2016/12/21 by Tim.Hobson
#UE4 Docs: Checking in images for shelved files for FBX Import Options update. UEDOC-3979
Change 3242511 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3216146
Change 3242523 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3197111
Change 3242534 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3238552
Change 3242536 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3240118
Change 3242537 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213377
Change 3242541 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:
Change 3242544 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242547 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242550 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242552 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242561 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242563 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3218993
Change 3242566 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3219004
Change 3242567 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3227082
Change 3242569 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3224908
Change 3242571 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213377
Change 3242572 on 2016/12/21 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3206329
Change 3242575 on 2016/12/21 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213377
Change 3242596 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourcechangeList:3213377
Change 3242603 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213377
Change 3242620 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourceChangeList:3197111
Change 3242624 on 2016/12/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3234766
Change 3242641 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourceChangeList:3197111
Change 3242645 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3232461
Change 3242659 on 2016/12/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3225484
Change 3242672 on 2016/12/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3225484
Change 3242691 on 2016/12/22 by Kimio.Yasuda
Updated File against INTSourceChangeList:3181495
Change 3242764 on 2016/12/22 by Sungjin.Hong
#loc UE4DocKor
Change 3243595 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3198551
Change 3243596 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3227911
Change 3243598 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3236590
Change 3243599 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3243600 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3243603 on 2016/12/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3243605 on 2016/12/25 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213377
Change 3243608 on 2016/12/25 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3243610 on 2016/12/25 by Kimio.Yasuda
Updated File against INTSourceChangeList:3175190
Change 3243611 on 2016/12/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3235148
Change 3243613 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3155346
Change 3243620 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3155346
Change 3243623 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3150518
Change 3243624 on 2016/12/26 by Kimio.Yasuda
Fixed translation (Title, Description)
Change 3243625 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3243626 on 2016/12/26 by Kimio.Yasuda
Fixed translation (Description)
Change 3243627 on 2016/12/26 by Kimio.Yasuda
Fixed translation of description
Change 3243630 on 2016/12/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3185922
Change 3243631 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3150518
Change 3243721 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3150518
Change 3243723 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3150518
Change 3243726 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSoruceChangeList:3150518
Change 3243733 on 2016/12/26 by Kimio.Yasuda
Updated File against INTSourceChangeList:3150518
Change 3243860 on 2016/12/27 by Mitchell.Wilson
#UE4 Docs - Updating metadata, added particles tag to Rendering/ParticleSystems pages
Change 3244012 on 2016/12/28 by Mitchell.Wilson
#UE4 Docs - Added metadata to sequencer pages.
Change 3244080 on 2016/12/28 by Robert.Gervais
#jira UEDOC-3245
Shortened the page title's character count to be more compatible with mobile screens.
#UE4doc
Change 3244081 on 2016/12/28 by Robert.Gervais
#jira UEDOC-3880
Added reminder to uncomment the 'Setting up an IDE' topic object when the page is marked as 'Publish Ready'.
#UE4doc
Change 3244089 on 2016/12/28 by Mitchell.Wilson
#UE4 Docs - Added metadata to UMG pages
Change 3244339 on 2016/12/30 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3244370 on 2016/12/30 by Mitchell.Wilson
#UE4 Docs - Added metadata to blueprints pages
Change 3244481 on 2017/01/02 by Sungjin.Hong
#loc UE4DocKOR
Change 3244498 on 2017/01/02 by Robert.Gervais
#jira UEDOC-3245
Repaired 'Getting Started' topic image.
#UE4doc
Change 3244553 on 2017/01/03 by Sungjin.Hong
#loc UE4DocKOR
Change 3244554 on 2017/01/03 by Sungjin.Hong
#loc UE4DocKor
Change 3244596 on 2017/01/03 by Sungjin.Hong
typo correction
Change 3244600 on 2017/01/03 by Sungjin.Hong
#loc UE4DocKOR
Change 3244648 on 2017/01/03 by Sungjin.Hong
#loc UE4DocKOR
Change 3244824 on 2017/01/03 by Richard.Hinckley
#jira UEDOC-4303
Implemented recommeded additional fixes.
Change 3244832 on 2017/01/03 by Sam.Deiter
#UE4 Docs: Applying peer feedabck to the doc.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3244908 on 2017/01/03 by Sam.Deiter
#UE4 Docs: Applying peer feedback and adding new images to go along with it.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3244910 on 2017/01/03 by Sam.Deiter
Adding this missing file.
Change 3245914 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3240145
Change 3245917 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245921 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245923 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245927 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245930 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245931 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245932 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245934 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245951 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3245967 on 2017/01/04 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3246037 on 2017/01/04 by Sungjin.Hong
#loc UE4DocKOR
Change 3246299 on 2017/01/04 by Sam.Deiter
#UE4 Docs: Applying SME feedback.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3247009 on 2017/01/04 by Lauren.Ridge
Updating VR profiling documents based on feedback
Change 3247223 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247334 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247339 on 2017/01/04 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247340 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247343 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247347 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247356 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247362 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247363 on 2017/01/04 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247411 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247417 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247428 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247440 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247446 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247448 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247450 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247452 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247457 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247463 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247466 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3247467 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247483 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3247497 on 2017/01/05 by Sungjin.Hong
#loc UE4DocKOR
Change 3248719 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248726 on 2017/01/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248765 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3248787 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213360
Change 3248818 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213360
Change 3248819 on 2017/01/05 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213360
Change 3248870 on 2017/01/06 by Kimio.Yasuda
Updated File against INTSourceChangeList:3213360
Change 3248912 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3225484
Change 3248928 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248941 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248951 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248961 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3248969 on 2017/01/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3249082 on 2017/01/06 by Sungjin.Hong
#loc UE4DocKOR
Change 3249658 on 2017/01/06 by Wes.Bunn
#ue4 docs
#jira UEDOC-4351
Updated Sequencer EDL How-to / Overivew Page to include a note about adding frame handles as part of an EDL export.
Change 3249741 on 2017/01/06 by Sam.Deiter
#UE4 Docs: Adding a new image showing off landscape in VR.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3251914 on 2017/01/10 by Kimio.Yasuda
Updated File against INTSourceChangeList:3178213
Change 3252541 on 2017/01/10 by Wes.Bunn
#ue4 docs
#jira UEDOC-4352
Applying Peer Feeback
Change 3252710 on 2017/01/10 by Chase.McAllister
#ue4 docs #jira UEDOC-4351 Small formatting and gramatical fixes to SequencerOverview and ImportExportEDLs pages
Change 3253176 on 2017/01/10 by Robert.Gervais
#jira UEDOC-4381
After discussing CodeWorks version updates with SamD, we agreed that the note region needed to be updated to account for future releases of CodeWorks for Android.
Subsequently, the landing page for the Android QS series has been updated to account for future releases of CodeWorks (thereby complying with the *.tps callout that's packaged with the engine).
#UE4Doc
#Code_Review Sam.Deiter
Change 3253196 on 2017/01/10 by Robert.Gervais
Removed bolding from hyperlink to comply with Style Guide.
#UE4Doc
Change 3253207 on 2017/01/10 by Robert.Gervais
Updated document title to more accurately label the page's contents.
Added tags and type metadata per Visual Style Guide.
#UE4Doc
Change 3253275 on 2017/01/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253282 on 2017/01/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253287 on 2017/01/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253312 on 2017/01/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253328 on 2017/01/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253414 on 2017/01/11 by Sungjin.Hong
#loc UE4DocKor
Change 3253430 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253442 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253458 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253475 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253478 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253483 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253522 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3253529 on 2017/01/11 by Sungjin.Hong
#loc UE4DocKOR
Change 3253663 on 2017/01/11 by Wes.Bunn
#UE4 Docs
#Jira UEDOC-4357
Updated Camera Rig Crane How-to page to include new Lock Mount options
- Refactored existing How-to page
- Updated content/images
Change 3254376 on 2017/01/11 by Sam.Deiter
#UE4 Docs: Applying Peer Feedback.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3254776 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3254795 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3254797 on 2017/01/11 by Robert.Gervais
#UE4Doc
Performed paradigmatic analysis and substituded misused word (allow) with proper word (enable).
Change 3254802 on 2017/01/11 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3254861 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3254877 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244089
Change 3254882 on 2017/01/11 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3254905 on 2017/01/11 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3254927 on 2017/01/11 by Sungjin.Hong
#loc UE4DocKOR
Change 3254957 on 2017/01/12 by Kimio.Yasuda
Updated File against INTSourceChangeList:3244080
Change 3254958 on 2017/01/12 by Kimio.Yasuda
Updated File against INTSourceChangeList:3244081
Change 3254976 on 2017/01/12 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3254995 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3253663
Change 3255016 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3255028 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3255040 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3255053 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3255054 on 2017/01/12 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3255346 on 2017/01/12 by Wes.Bunn
#ue4 docs
#jira UEDOC-4363
Updated Sequencer Audio Recording How-to to include an optional step of recording audio.
Updated Sequencer Overview page to include a line about audio recording.
Change 3255615 on 2017/01/12 by Sam.Deiter
#UE4 Docs: Adding a new part for the SteamVR perf tools
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3255730 on 2017/01/12 by Jeff.Wilson
Removed topic variables and added topic-image metadata
Change 3255731 on 2017/01/12 by Jeff.Wilson
Fixed link to non-existent bookmark
Change 3255735 on 2017/01/12 by Jeff.Wilson
Updated metadata
Change 3255737 on 2017/01/12 by Jeff.Wilson
Updated DB file
Change 3255740 on 2017/01/12 by Jeff.Wilson
Updated learning track template to use directory list
Change 3255748 on 2017/01/12 by Jeff.Wilson
Physics Property Reference Formatting Updates
Change 3255757 on 2017/01/12 by Jeff.Wilson
Prototype for new sidebar
Change 3255761 on 2017/01/12 by Wes.Bunn
#ue4 docs
#jira UEDOC-4358
Updated page to include some peer review feedback.
Change 3255882 on 2017/01/12 by Wes.Bunn
#ue4 docs
Minor upates to Pose Drive node section on Pose Nodes page.
- Added Translation option to Pose Node reference table.
- Updated Overview Text.
Change 3255885 on 2017/01/12 by Jeff.Wilson
Updated metadata
Change 3256541 on 2017/01/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3256576 on 2017/01/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3256594 on 2017/01/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3256621 on 2017/01/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3252710
Change 3256625 on 2017/01/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3256626 on 2017/01/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3256628 on 2017/01/13 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3256865 on 2017/01/13 by Wes.Bunn
#ue4 docs
Applying peer review feedback.
Change 3256942 on 2017/01/13 by Jeff.Wilson
Added lloc warning text for outdate translations
Change 3256943 on 2017/01/13 by Jeff.Wilson
Updated metadata
Change 3256979 on 2017/01/13 by Jeff.Wilson
Unpublish empty pages
Change 3257013 on 2017/01/13 by Jeff.Wilson
Fixed typo
PR #2816
Change 3258199 on 2017/01/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258213 on 2017/01/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255731
Change 3258244 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3258260 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258263 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258264 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258268 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258272 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258274 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258276 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258282 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258283 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258287 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258290 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258292 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258294 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3258311 on 2017/01/16 by Sungjin.Hong
#loc UE4DocKor
Change 3258319 on 2017/01/16 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3258323 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255882
Change 3258327 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3244012
Change 3258329 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3258331 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3258333 on 2017/01/16 by Sungjin.Hong
#loc UE4DocKor
Change 3258335 on 2017/01/16 by Masayo.Kondo
Fixed a layout error.
Change 3258389 on 2017/01/16 by Sungjin.Hong
#loc UE4DocKor ?í???? -> Enum
Change 3258677 on 2017/01/16 by Sam.Deiter
#UE4 Docs: Adding an image of the foliage tools.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3259022 on 2017/01/16 by Jeff.Wilson
Set page to publish
Change 3259023 on 2017/01/16 by Jeff.Wilson
Set page to publish
Change 3259024 on 2017/01/16 by Jeff.Wilson
Updated formatting to use new localized text feature
Change 3259094 on 2017/01/16 by Tim.Hobson
submitting peer review edits UEDOC-4283
Change 3259182 on 2017/01/16 by Sam.Deiter
#UE4 Docs: Adding this newly created doc.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3259604 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3259614 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259618 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259626 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259628 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259647 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259653 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259662 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3259676 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259679 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3243860
Change 3259694 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3211040
Change 3259720 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3211040
Change 3259732 on 2017/01/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3256865
Change 3259745 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3211040
Change 3259756 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3211040
Change 3259772 on 2017/01/16 by Kimio.Yasuda
Updated File against INTSourceChangeList:3211040
Change 3259800 on 2017/01/16 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3259855 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3256865
Change 3259868 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259874 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259878 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259882 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259895 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259913 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259923 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259925 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3259955 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255761
Change 3259987 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3259023
Change 3259990 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3259023
Change 3259992 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3259023
Change 3259998 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255730
Change 3260021 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#
3259182
Change 3260551 on 2017/01/17 by Jeff.Wilson
Added note about painting Foliage in VR with link to VR Editor Controls page
Change 3260598 on 2017/01/17 by Jeff.Wilson
Set page to publish
Change 3260620 on 2017/01/17 by Jeff.Wilson
Updated metadata
Change 3260622 on 2017/01/17 by Richard.Hinckley
#jira UEDOC-3908
Accepting editorial changes.
Change 3260646 on 2017/01/17 by Wes.Bunn
#ue4 docs
initial page updates for Post Process Animation Blueprints
- Added to Animation Blueprint overview page.
- Added to Skeletal Mesh / Mesh Details page where you set the Post Process Anim BP
Change 3260662 on 2017/01/17 by Jeff.Wilson
Set page to publish
Change 3260663 on 2017/01/17 by Jeff.Wilson
Set page to publish
Change 3260683 on 2017/01/17 by Jeff.Wilson
Set page to publish
Change 3260884 on 2017/01/17 by Sam.Deiter
#UE4 Docs: Adding that Landscape works in VR to the pages.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3260949 on 2017/01/17 by Sam.Deiter
#UE4 Docs: Adding header images for each of the topics.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3261032 on 2017/01/17 by Tim.Hobson
#UE4 Docs: UEDOC-4283 Added MorphTarget Debug View Mode to existing MorphTarget Previewer page.
Change 3261039 on 2017/01/17 by Tim.Hobson
#UE4 Docs: UEDOC-3979 SME Review edits
Change 3261132 on 2017/01/17 by Robert.Gervais
#jira UEDOC-4016
Addressed Editorial Review comments, specifically:
Set topic image using the topic-image metadata in the Contact Shadows page.
Added a link to the Contact Shadows page in the Lighting and Shadows Landing page.
Commented out the Contact Shadows page link because it was generating a rogue Doc Page Error.
#UE4doc
Change 3261385 on 2017/01/17 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3261395 on 2017/01/17 by Kimio.Yasuda
Updated File against INTSourceChangeList:3178213
Change 3261402 on 2017/01/17 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3261425 on 2017/01/17 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3259182
Change 3261437 on 2017/01/17 by Kimio.Yasuda
0118
Change 3261456 on 2017/01/17 by Sungjin.Hong
#loc UE4DocKor ?┐???? -> ?┐
Change 3261520 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3261039
Change 3261524 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3260622
Change 3261526 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3260683
Change 3261537 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3261571 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3260683
Change 3261592 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3261886 on 2017/01/18 by Richard.Hinckley
#jira UEDOC-4436
Added ChildActorTemplate information to Utility classes.
Change 3261940 on 2017/01/18 by Richard.Hinckley
#jira UEDOC-4436
Added minor detail.
Change 3261961 on 2017/01/18 by Jeff.Wilson
Minor formatting and text udpates
Change 3262190 on 2017/01/18 by Jeff.Wilson
Updated metadata
Change 3262197 on 2017/01/18 by Jeff.Wilson
Updated BD file
Change 3262201 on 2017/01/18 by Jeff.Wilson
Set page to publish
Change 3262203 on 2017/01/18 by Jeff.Wilson
Updated to use localized descriptions
Change 3262227 on 2017/01/18 by Jeff.Wilson
Set page to publish
Change 3262538 on 2017/01/18 by Tim.Hobson
#UE4 Docs: Adding images for UEDOC-4475 for addition of the Mirror Tool to the landscape UI and Sculpt Mode pages.
Change 3262605 on 2017/01/18 by Tim.Hobson
#UE4 Docs: Rename/move files for Pixel Normal Offset doc.
Change 3263133 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3263158 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263171 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3260646
Change 3263212 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263244 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263261 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263264 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3260646
Change 3263269 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255885
Change 3263276 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263279 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3262201
Change 3263283 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263289 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263296 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262227
Change 3263299 on 2017/01/18 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3261940
Change 3263311 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangeList:3262190
Change 3263313 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3262190
Change 3263321 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3262190
Change 3263324 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263325 on 2017/01/18 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263370 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263373 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263384 on 2017/01/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3261032
Change 3263399 on 2017/01/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3254797
Change 3263404 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263414 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263421 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263431 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangeList:3261961
Change 3263474 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3263969 on 2017/01/19 by Jeff.Wilson
Updated metadata
Change 3264164 on 2017/01/19 by Jeff.Wilson
Updated metadata
Change 3264165 on 2017/01/19 by Jeff.Wilson
Updated metadata
Change 3264406 on 2017/01/19 by Sam.Deiter
#UE4 Docs: Applyng feedback from jeff.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3264524 on 2017/01/19 by Sam.Deiter
#UE4 Docs: Fixing the formating of the topic image.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3264527 on 2017/01/19 by Sam.Deiter
#UE4 Docs:Fixing the formating of the topic image meta tag.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3265224 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangeList:3260884
Change 3265256 on 2017/01/19 by Kimio.Yasuda
Updatd File against INTSourceChangelist:3238275
Change 3265260 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3235148
Change 3265264 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3235148
Change 3265283 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3235148
Change 3265295 on 2017/01/19 by Kimio.Yasuda
Updated File against INTSourceChangelist:3235148
Change 3265341 on 2017/01/20 by Kimio.Yasuda
Updated File against INTSourceChangeList:3227073
Change 3265350 on 2017/01/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3223841
Change 3265360 on 2017/01/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3223808
Change 3265396 on 2017/01/20 by Kimio.Yasuda
Updated File against INTSourceChangelist:3188564
Change 3266245 on 2017/01/20 by Wes.Bunn
#ue4 docs
Update to Audio Track How-to
- Content refactored to include volume/pitch adjustments.
Change 3267497 on 2017/01/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3184883
Change 3267514 on 2017/01/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3236537
Change 3267536 on 2017/01/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3232956
Change 3267538 on 2017/01/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3200686
Change 3267540 on 2017/01/22 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3267550 on 2017/01/22 by Tianmin.Xie
#loc UE4DocCHN. update root page against latest INT version. update template for CHN page out of date warning message.
Change 3267569 on 2017/01/23 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3244824
Change 3267573 on 2017/01/23 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3244824
Change 3267575 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangeList:3191723
Change 3267594 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3188564
Change 3267600 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3188564
Change 3267605 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3149430
Change 3267607 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3149199
Change 3267614 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3147055
Change 3267618 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3213117
Change 3267838 on 2017/01/23 by Wes.Bunn
#ue4 docs
#JIRA UEDOC-4493
Updated Character Animation How-to
- refactored to include blending animations
Change 3268172 on 2017/01/23 by Sam.Deiter
#UE4 Docs: Fixed an issue with the link to the Skel mesh pose page.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3268173 on 2017/01/23 by Sam.Deiter
#UE4 Docs:Applying peer feedback.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3268222 on 2017/01/23 by Sam.Deiter
#UE4 Docs: Adding the doc updates.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3268421 on 2017/01/23 by Chase.McAllister
#UE4 Docs: Small sentence formatting change to SkeletalMeshConversion page
Change 3269086 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3215424
Change 3269098 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3269104 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3269105 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3269139 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3177941
Change 3269147 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3175238
Change 3269148 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3155346
Change 3269151 on 2017/01/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3155346
Change 3269206 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3155346
Change 3269218 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3155346
Change 3269222 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151855
Change 3269249 on 2017/01/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3225556
Change 3269293 on 2017/01/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3267838
Change 3269302 on 2017/01/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3269455 on 2017/01/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3269482 on 2017/01/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3270938 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151855
Change 3270971 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3268222
Change 3271008 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3268222
Change 3271010 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3268222
Change 3271020 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3262227
Change 3271034 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3262227
Change 3271044 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3271052 on 2017/01/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3271081 on 2017/01/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3271108 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260598
Change 3271110 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260598
Change 3271112 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271113 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangeList:3259022
Change 3271114 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271116 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271120 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271123 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271130 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271135 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271138 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3259022
Change 3271145 on 2017/01/25 by Kimio.Yasuda
Upated File against INTSourceChangelist:3244370
Change 3271163 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3271174 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3218894
Change 3271178 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3271234 on 2017/01/25 by Sungjin.Hong
#loc UE4DocKOR
Change 3271292 on 2017/01/25 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3271840 on 2017/01/25 by Jeff.Wilson
updated DB file
Change 3272803 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3257013
Change 3272824 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3272828 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264527
Change 3272856 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264527
Change 3272857 on 2017/01/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255748
Change 3272869 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272876 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272878 on 2017/01/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3268421
Change 3272887 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272895 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272898 on 2017/01/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3268172
Change 3272902 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272913 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264524
Change 3272915 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3261961
Change 3272925 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260598
Change 3272929 on 2017/01/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3224907
Change 3272930 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260598
Change 3272936 on 2017/01/25 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3151855
Change 3272946 on 2017/01/25 by Kimio.Yasuda
Updated File against INTSourceChangelist:3256943
Change 3272947 on 2017/01/25 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3272982 on 2017/01/26 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3255735
Change 3273285 on 2017/01/26 by Wes.Bunn
#UE4 Docs
#Jira UEDOC-3913
Apply SME feedback to Forward Rendering document.
Change 3273300 on 2017/01/26 by Wes.Bunn
#UE4 Docs
#Jira UEDOC-4370
Minor updates based on Peer Review.
Change 3273317 on 2017/01/26 by Wes.Bunn
#UE4 Docs
#Jira UEDOC-4431
Applying Peer Review Feedback.
Change 3273564 on 2017/01/26 by Robert.Gervais
#jira UEDOC-1419
Updating engine version on Landing page.
Revising description on Getting Started page.
#UE4doc
Change 3273672 on 2017/01/26 by Sungjin.Hong
#loc UE4DocKOR
Change 3274763 on 2017/01/27 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3108692
Change 3274767 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3255748
Change 3274768 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3274776 on 2017/01/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3273317
Change 3274781 on 2017/01/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3273300
Change 3274787 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3274832 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3274837 on 2017/01/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3273317
Change 3274838 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3274856 on 2017/01/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3275198 on 2017/01/27 by Sam.Deiter
#UE4 Docs: Applying peer feedback to this doc.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3275202 on 2017/01/27 by Jeff.Wilson
Fixed broken link
Change 3275203 on 2017/01/27 by Jeff.Wilson
Updated search box and button to use CSS styles
Change 3275206 on 2017/01/27 by Jeff.Wilson
Added link to Contact Shadows page
Change 3275207 on 2017/01/27 by Jeff.Wilson
Added link to Contact Shadows page
Change 3275208 on 2017/01/27 by Jeff.Wilson
Fixed formatting
Change 3275209 on 2017/01/27 by Jeff.Wilson
Fixed links to videos
Change 3275254 on 2017/01/27 by Jeff.Wilson
Updated metadata
Change 3275257 on 2017/01/27 by Jeff.Wilson
Fixed broken link
Change 3275285 on 2017/01/27 by Jeff.Wilson
Added redirect page
Change 3275293 on 2017/01/27 by Jeff.Wilson
Updated metadata
Change 3275367 on 2017/01/27 by Jeff.Wilson
Fixed broken link
Change 3275566 on 2017/01/27 by Chase.McAllister
#UE Docs #jira UEDOC-4459 - Spelling and formatting fixes for GoogleVR pages
Change 3275878 on 2017/01/27 by Jeff.Wilson
Updated metadata
Change 3275881 on 2017/01/27 by Jeff.Wilson
Removing old learning track prototype pages
Change 3275884 on 2017/01/27 by Jeff.Wilson
Adding learning track template
Change 3276951 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275254
Change 3276952 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275254
Change 3276954 on 2017/01/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3276964 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275878
Change 3276981 on 2017/01/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3276984 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275878
Change 3277001 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3277051 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3277055 on 2017/01/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3277377 on 2017/01/30 by Jeff.Wilson
Set page to publish
Change 3277378 on 2017/01/30 by Jeff.Wilson
Force page height update after async page load returns
Change 3277768 on 2017/01/30 by Tim.Hobson
#UE4 Docs: Fixing minor grammatical error and rewording the intro sentences.
Change 3277813 on 2017/01/30 by Tim.Hobson
#UE4 Docs: Capsule Shadows docs: Removing files that are no longer relevant for cleanup of UEDOC-3973.
Change 3277874 on 2017/01/30 by Tim.Hobson
#UE4 Docs: UEDOC-3973 - SME Review edits and rewrite of Capsule Shadows Overview Doc. Moved How-to's to QuickStart. Still minor work to do with navigation links for pages in QS
Change 3278417 on 2017/01/30 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3278584 on 2017/01/30 by Kwangsub.Shin
#loc UE4DocKOR moved or deleted
Change 3278652 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3277768
Change 3278666 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275878
Change 3278669 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3278673 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3242329
Change 3278678 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3178047
Change 3278681 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3178047
Change 3278682 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3278694 on 2017/01/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3278718 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3278812 on 2017/01/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3278909 on 2017/01/31 by Sungjin.Hong
typo_correction
Change 3278910 on 2017/01/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3279502 on 2017/01/31 by Wes.Bunn
#ue4 docs
Removed "docs" tag from page that is public so it shows up in the list.
Change 3280006 on 2017/01/31 by Sam.Deiter
#UE4 Docs:Applying Peer Feedback.
#Code_Review lauren.ridge, jeff.wilson, ian.shadden, wes.bunn, chase.mcallister, robert.gervais
Change 3280524 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275367
Change 3280530 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275254
Change 3280574 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277377
Change 3280575 on 2017/01/31 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275566
Change 3280592 on 2017/01/31 by Sungjin.Hong
#loc UE4DocKOR
Change 3280600 on 2017/01/31 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280677 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275566
Change 3280700 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280705 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275257
Change 3280708 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275208
Change 3280717 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280718 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275206
Change 3280721 on 2017/02/01 by Kimio.Yasuda
typo correction
Change 3280723 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275207
Change 3280724 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3273564
Change 3280727 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3273564
Change 3280729 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280733 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3215926
Change 3280746 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280748 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3279502
Change 3280749 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3238697
Change 3280750 on 2017/02/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3280766 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3280770 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275293
Change 3280779 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3206215
Change 3280829 on 2017/02/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3281495 on 2017/02/01 by Richard.Hinckley
#jira UEDOC-4305
Fixed according to SME review notes.
Change 3281540 on 2017/02/01 by Robert.Gervais
#jira UEDOC-1419
Fixing parent paths and resetting documentation order on landing page.
#UE4doc
Change 3282373 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3178047
Change 3282378 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3282383 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3282391 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3281540
Change 3282416 on 2017/02/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3281495
Change 3282662 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3238697
Change 3282665 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151855
Change 3282668 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3282676 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3282679 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282686 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282692 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282696 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282701 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282705 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282716 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282750 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3282837 on 2017/02/02 by Sungjin.Hong
#loc UE4DocKOR
Change 3283142 on 2017/02/02 by Richard.Hinckley
#jira UEDOC-3866
Moved "custom importer" information to the bottom of the document as SME recommended.
Change 3283566 on 2017/02/02 by Richard.Hinckley
Fixing cull volume information. No JIRA for this, based on a UDN post and code investigation.
Change 3284397 on 2017/02/02 by Robert.Gervais
#UE4doc
Repaired some capitalization errors throughout the document.
Change 3284565 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284573 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284586 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284593 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284632 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284645 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284656 on 2017/02/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3244012
Change 3284728 on 2017/02/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3284777 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3284397
Change 3284785 on 2017/02/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3284795 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284797 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284810 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284820 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284829 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284855 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3253176
Change 3284861 on 2017/02/03 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3284871 on 2017/02/03 by Sungjin.Hong
#loc UE4DocKor removed ??
Change 3284911 on 2017/02/03 by Sungjin.Hong
#loc UE4DocKOR
Change 3284940 on 2017/02/03 by Tianmin.Xie
#loc UE4DocCHN. do translation. ( fix missing pic, Updated File against INTSourceChangelist:3223841 )
Change 3285321 on 2017/02/03 by Richard.Hinckley
Fixing a small typo in Programming Quick Start.
Change 3285322 on 2017/02/03 by Jeff.Wilson
Updated metadata
Change 3286792 on 2017/02/04 by Sungjin.Hong
#loc UE4DocKOR
Change 3287218 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287220 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287224 on 2017/02/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3283566
Change 3287227 on 2017/02/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3285322
Change 3287231 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287236 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287252 on 2017/02/05 by Kimio.Yasuda
Update File against INTSourceChangelist:3108692
Change 3287255 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287257 on 2017/02/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3287273 on 2017/02/06 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3287280 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3280006
Change 3287287 on 2017/02/06 by Masayo.Kondo
Fixed a typo.
Change 3287288 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3206237
Change 3287291 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3266245
Change 3287301 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3287317 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3287319 on 2017/02/06 by Kimio.Yasuda
Fixed translation
Change 3287337 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3287338 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3150518
Change 3287342 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3287345 on 2017/02/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3275202
Change 3287349 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3288167 on 2017/02/06 by Sam.Deiter
Fixing a small typo in a note box.
Change 3289403 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289438 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289466 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289468 on 2017/02/06 by Tianmin.Xie
#loc UE4DocCHN update metadata
Change 3289489 on 2017/02/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289582 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289588 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289594 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3289600 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3285321
Change 3289612 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3283142
Change 3289613 on 2017/02/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3288167
Change 3289616 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3278909
Change 3289690 on 2017/02/07 by Sungjin.Hong
#loc UE4DocKOR
Change 3290845 on 2017/02/07 by Tim.Hobson
UEDOC-4555: Adding new images for Vehicle Plugin and SimpleWheeledVehicleMovment component setup and usage.VehicleUserGuide page update.
Change 3291453 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151861
Change 3291465 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291477 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291482 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291496 on 2017/02/07 by Kimio.Yasuda
Updated file against INTSourceChangelist:3264165
Change 3291500 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291501 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291554 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291558 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291562 on 2017/02/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3264165
Change 3291733 on 2017/02/08 by Masayo.Kondo
Fixed a typo
Change 3291765 on 2017/02/08 by Masayo.Kondo
Fixed a publish error
Change 3293783 on 2017/02/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3281540
Change 3293799 on 2017/02/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3281540
Change 3293834 on 2017/02/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275566
Change 3293858 on 2017/02/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275566
Change 3293887 on 2017/02/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275566
Change 3293933 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3275209
Change 3293958 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3293973 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3293990 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294004 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294024 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294037 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294041 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294051 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3294128 on 2017/02/09 by Tianmin.Xie
#loc UE4DocCHN update metadata to fix landing page missing
Change 3294152 on 2017/02/09 by Sungjin.Hong
#loc UE4DocKOR
Change 3296004 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296082 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296141 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296160 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296165 on 2017/02/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296217 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296223 on 2017/02/10 by Tianmin.Xie
#loc UE4DocCHN update some feedback information for Chinese reader.
Change 3296234 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296248 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296253 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296283 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296304 on 2017/02/10 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3296484 on 2017/02/10 by Sungjin.Hong
#loc UE4DocKOR
Change 3298291 on 2017/02/10 by Robert.Gervais
Fixing some grammatical and spelling errors.
#UE4Doc
Change 3298293 on 2017/02/10 by Robert.Gervais
#jira UEDOC-4380
Created new documentation for Android Support on Linux.
Also, updated Android Quick Start Documentation.
#UE4Doc
Change 3298295 on 2017/02/10 by Robert.Gervais
#jira UEDOC-4442
Updated documents to reflect the latest updates to Blueprint Nativization.
#UE4Doc
Change 3298700 on 2017/02/12 by Tianmin.Xie
#loc UE4DocCHN. do translation (RenderTarget/BP RT
Change 3298734 on 2017/02/12 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3298895 on 2017/02/12 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3298900 on 2017/02/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3298914 on 2017/02/12 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3298919 on 2017/02/12 by Kimio.Yasuda
typo correction
Change 3298920 on 2017/02/12 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3298963 on 2017/02/13 by Masayo.Kondo
Fixed a typo
Change 3298965 on 2017/02/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3298967 on 2017/02/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3298969 on 2017/02/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3298974 on 2017/02/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3298293
Change 3298978 on 2017/02/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3299018 on 2017/02/13 by Masayo.Kondo
Fixed version field
Change 3299032 on 2017/02/13 by Masayo.Kondo
Fixed version field
Change 3299037 on 2017/02/13 by Kimio.Yasuda
Updated File against INTSourceChangeList:3298293
Change 3299055 on 2017/02/13 by Masayo.Kondo
Fixed skill level field
Change 3299062 on 2017/02/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3293293
Change 3300982 on 2017/02/13 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3301070 on 2017/02/14 by Masayo.Kondo
Fixed skill level field
Change 3301076 on 2017/02/14 by Kimio.Yasuda
Updated File against ?INTSourceChangelist:3298293
Change 3301090 on 2017/02/14 by Masayo.Kondo
Fixed skill level field
Change 3301094 on 2017/02/14 by Masayo.Kondo
Fixed skill level field
Change 3301101 on 2017/02/14 by Masayo.Kondo
Fixed skill level field
Change 3301164 on 2017/02/14 by Masayo.Kondo
Fixed skill level field
Change 3301169 on 2017/02/14 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3301172 on 2017/02/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3256979
Change 3302564 on 2017/02/14 by Mitchell.Wilson
Initial 4.15 Release Notes checkin.
Change 3302746 on 2017/02/14 by Mitchell.Wilson
Updating switch and 4.15 banner images
Change 3302756 on 2017/02/14 by Mitchell.Wilson
Updating 4.15 Release Notes for switch image width and height
Change 3303145 on 2017/02/14 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3303210 on 2017/02/14 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3303221 on 2017/02/14 by Sungjin.Hong
#loc UE4DocKor
Change 3303335 on 2017/02/14 by Sungjin.Hong
#loc UE4DocKOR
Change 3303401 on 2017/02/15 by Sungjin.Hong
#loc UE4DocKOR
Change 3303749 on 2017/02/15 by Jeff.Wilson
updated with embedded videos
Change 3304577 on 2017/02/15 by Jeff.Wilson
Updated embedded video template with simple type for release notes videos
Change 3304580 on 2017/02/15 by Jeff.Wilson
Fixed broken link
Change 3304581 on 2017/02/15 by Jeff.Wilson
Updated metadata
Change 3308225 on 2017/02/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3303749
Change 3308486 on 2017/02/16 by Tianmin.Xie
#loc UE4DocCHN fix some pages' reference error and failed to generate final page issues.
Change 3308545 on 2017/02/17 by Tianmin.Xie
#loc UE4DocCHN fix some pages' reference error and failed to generate final page issues.
Change 3308575 on 2017/02/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3308593 on 2017/02/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3308618 on 2017/02/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3304580
Change 3308622 on 2017/02/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298291
Change 3308657 on 2017/02/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298291
Change 3308765 on 2017/02/17 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3309202 on 2017/02/17 by Chase.McAllister
#UEDoc #jira UEDOC-4600 - fixing minor typo in EnvironmentQuerySystem Quickstart
Change 3309591 on 2017/02/17 by Ian.Shadden
#UE4 Docs Removing old Raycast section, moving data to Engine\Physics\Tracing
Adding additional docs (tracing overview)
Modifying the Height Field Painter How-To to include a method that uses UV Coord from Trace
Change 3311240 on 2017/02/19 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3311242 on 2017/02/19 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3309202
Change 3311311 on 2017/02/19 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3311338 on 2017/02/20 by Sungjin.Hong
#loc UE4DocKOR
Change 3313485 on 2017/02/20 by Robert.Gervais
#jira UEDOC-4382
Addressed TimH's peer review comments.
Made a few grammatical revisions to the 'On Your Own!' page.
#UE4Doc
Change 3313511 on 2017/02/20 by Robert.Gervais
#jira UEDOC-4251
Moved pre-4.13 cross-compilation setup information to a legacy page, where users can find the information they need for setting up their cross-compile toolchain for UE4, versions 4.13 (and older).
Created new page, documenting the process for setting up the cross-compile toolchain for UE4, versions 4.14 (and newer).
#UE4Doc
Change 3313520 on 2017/02/20 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3309591
Change 3313609 on 2017/02/20 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3309591
Change 3313668 on 2017/02/20 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3315917 on 2017/02/21 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3315931 on 2017/02/21 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3316000 on 2017/02/21 by Sungjin.Hong
#loc UE4DocKOR
Change 3316171 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3309591
Change 3316219 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3309591
Change 3317123 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4101
Making a few minor revisions during Editorial Review.
Adding some required meta-data.
Adding a topic image.
#UE4Doc
Change 3317178 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4101
Adding topic link to the Mobile Patch Utilities Overview page.
#UE4Doc
Change 3317466 on 2017/02/22 by Jeff.Wilson
Set page to publish
Change 3317470 on 2017/02/22 by Jeff.Wilson
Added link
Change 3317795 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4440
Adding ToC as part of the Editorial Review process.
#UE4Doc
Change 3317931 on 2017/02/22 by Jeff.Wilson
Updated links to new Tracing section
Change 3317961 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4306
Minor revisions during Editorial Review process.
Updated metadata per latest S&S.
#UE4Doc
Change 3318201 on 2017/02/22 by Tim.Hobson
Submitted with folder in wrong location. Moved to HowTo section.
Change 3318285 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4202
Made a few edits as part of the Editorial Review process, including:
Some formatting updates.
Updating the document's metadata.
Updating the Mobile HDR support image, showing the Mobiled HDR option being enabled in the Editor's Project Settings.
#UE4Doc
Change 3318367 on 2017/02/22 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3318376 on 2017/02/22 by Robert.Gervais
#UE4doc
Reverting page back to 'Docs' while we're hashing through some of the content.
Change 3318399 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4361
Made some grammatical edits as part of the Editorial Review process.
#UE4Doc
Change 3318449 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3317466
Change 3318474 on 2017/02/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298295
Change 3318475 on 2017/02/22 by Robert.Gervais
#jira UEDOC-3867
Made a few edits during the Editorial Review Process.
Updated Metadata.
Scrubbed an image showing an error message.
#UE4Doc
Change 3318482 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3317466
Change 3318501 on 2017/02/22 by Robert.Gervais
#jira UEDOC-3631
Made some minor revisions during the Editorial Review process.
#UE4Doc
Change 3318509 on 2017/02/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298295
Change 3318533 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4288
Made some revisions as part of the Editorial Review process.
#UE4Doc
Change 3318539 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3317466
Change 3318546 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317466
Change 3318549 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317466
Change 3318557 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317466
Change 3318575 on 2017/02/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317466
Change 3318622 on 2017/02/22 by Robert.Gervais
#jira UEDOC-4113
Made some revisions during the Editorial Review process.
#UE4Doc
Change 3318650 on 2017/02/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317470
Change 3318664 on 2017/02/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3317795
Change 3318701 on 2017/02/23 by Masayo.Kondo
Fixed Skill level field.
Change 3318741 on 2017/02/23 by Kimio.Yasuda
Updated file against INTChangeList:3244832
Change 3318748 on 2017/02/23 by Masayo.Kondo
Fixed Skill level field
Change 3318820 on 2017/02/23 by Masayo.Kondo
Fixed Skill level field
Change 3318835 on 2017/02/23 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3318893 on 2017/02/23 by Sungjin.Hong
#loc UE4DocKOR
Change 3319177 on 2017/02/23 by Tim.Hobson
#UE4 Docs: Cleaning up page.
- Moved Miscellaneous redundancies to its own section.
- Re-captured images for clean outline for areas being referenced.
- Updated Version to 4.15
Change 3319776 on 2017/02/23 by Robert.Gervais
#jira UEDOC-4443
Addressed peer review comments.
#UE4Doc
Change 3320728 on 2017/02/23 by Masayo.Kondo
Fixed Skill level field
Change 3320741 on 2017/02/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3319177
Change 3320788 on 2017/02/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3318622
Change 3320812 on 2017/02/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3318622
Change 3320853 on 2017/02/23 by Sungjin.Hong
#loc UE4DocKOR
Change 3320887 on 2017/02/24 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3318399
Change 3320955 on 2017/02/24 by Masayo.Kondo
Fixed Skill level field
Change 3321022 on 2017/02/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3321023 on 2017/02/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3321024 on 2017/02/24 by Sungjin.Hong
#loc UE4DocKOR
Change 3321248 on 2017/02/24 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3321713 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4251
Addressed SME review comments.
#UE4Doc
Change 3322057 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4367
Made some revisions during the Editorial Review process.
#UE4Doc
Change 3322077 on 2017/02/24 by Jeff.Wilson
Added social sharing image
Change 3322178 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4355
Made some minor revisions during the Editorial Review process.
#UE4Doc
Change 3322379 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4428
Made some minor revisions during the Editorial Review process.
#UE4Doc
Change 3322543 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4226
Made a few revisions during the Editorial Review process.
#UE4Doc
Change 3322598 on 2017/02/24 by Robert.Gervais
#jira UEDOC-4147
Made some revisions during the Editorial Review process.
#UE4Doc
Change 3323175 on 2017/02/26 by Sungjin.Hong
#loc UE4DocKOR
Change 3323178 on 2017/02/26 by Sungjin.Hong
#loc UE4DocKOR
Change 3323182 on 2017/02/26 by Kimio.Yasuda
Updated File against INTSourceChangelist:3318201
Change 3323223 on 2017/02/27 by Kimio.Yasuda
Fixed typo and translation.
Change 3323234 on 2017/02/27 by Kimio.Yasuda
Updated file against INTSourceChangelist:3322543
Change 3323235 on 2017/02/27 by Kimio.Yasuda
Additional translation fix.
Change 3323261 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3322598
Change 3323264 on 2017/02/27 by Kimio.Yasuda
Updated File against INTSourceChangelist:3322077
Change 3323271 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3322379
Change 3323278 on 2017/02/27 by Kimio.Yasuda
Updated file against INTSourceChangelist:3319776
Change 3323292 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3322057
Change 3323311 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3322178
Change 3323449 on 2017/02/27 by Richard.Hinckley
#jira UEDOC-4630
Gameplay Tag document first pass.
Change 3323857 on 2017/02/27 by Tim.Hobson
#UE4 Docs: Added initial Virtual Bones documentation pages (UEDOC-4642)
Change 3324139 on 2017/02/27 by Robert.Gervais
#jira UEDOC-4445
Commas, semi-colons, paradigmatic substitutions: Oh my!
#UE4Doc
Change 3324491 on 2017/02/27 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3324522 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3322057
Change 3324600 on 2017/02/27 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3324621 on 2017/02/27 by Sungjin.Hong
#loc UE4DocKOR
Change 3324635 on 2017/02/27 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3323857
Change 3324661 on 2017/02/28 by Masayo.Kondo
Fixed Skill Level Field
Change 3324676 on 2017/02/28 by Kimio.Yasuda
Udpated file against INTSourceChangelist:3321713
Change 3324678 on 2017/02/28 by Masayo.Kondo
Fixed translation
Change 3326692 on 2017/02/28 by Kimio.Yasuda
Updated File against INTSourceChangelist:3322543
Change 3326732 on 2017/03/01 by Masayo.Kondo
Fixed Skill level field
Change 3326737 on 2017/03/01 by Masayo.Kondo
Fixed Skill level field
Change 3326756 on 2017/03/01 by Masayo.Kondo
Fixed Skill level field
Change 3326768 on 2017/03/01 by Masayo.Kondo
Fixed skill level field
Change 3326806 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3321713
Change 3326808 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3318376
Change 3326818 on 2017/03/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3326830 on 2017/03/01 by Masayo.Kondo
Fixed Skill level field
Change 3326835 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3318285
Change 3328386 on 2017/03/01 by Robert.Gervais
#UE4Doc
Fixing a typo.
Change 3328768 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3317178
Change 3328825 on 2017/03/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3328836 on 2017/03/01 by Masayo.Kondo
Fixed translation
Change 3328848 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3317123
Change 3328863 on 2017/03/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3328868 on 2017/03/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3328870 on 2017/03/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3328873 on 2017/03/01 by Kimio.Yasuda
Updated File against INTSourceChangelist:3244370
Change 3328874 on 2017/03/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3328876 on 2017/03/01 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3328877 on 2017/03/01 by Kimio.Yasuda
Fixed translation.
Change 3328880 on 2017/03/01 by Sungjin.Hong
#loc UE4DocKOR
Change 3328944 on 2017/03/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3328962 on 2017/03/02 by Masayo.Kondo
Fixed version field
Change 3328971 on 2017/03/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3108692
Change 3328983 on 2017/03/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3328991 on 2017/03/02 by Masayo.Kondo
Fixed version field
Change 3329004 on 2017/03/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3329008 on 2017/03/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3309591
Change 3329010 on 2017/03/02 by Masayo.Kondo
Fixed version field
Change 3329034 on 2017/03/02 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3330800 on 2017/03/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3330903 on 2017/03/02 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3330999 on 2017/03/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3331075 on 2017/03/03 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3331286 on 2017/03/03 by Richard.Hinckley
Typo fix.
Change 3332124 on 2017/03/03 by Richard.Hinckley
S&S updates to an existing document.
Change 3332226 on 2017/03/03 by Richard.Hinckley
Update to ForceFeedback document so an excerpt can be shared.
Change 3332303 on 2017/03/03 by Robert.Gervais
#jira UEDOC-1419
Updated meta-data per latest S&S.
#UE4Doc
Change 3332716 on 2017/03/05 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3332718 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3332720 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3332721 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3332725 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3332726 on 2017/03/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3332226
Change 3332729 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3298293
Change 3332731 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332733 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332739 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332740 on 2017/03/05 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3332742 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332743 on 2017/03/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3332124
Change 3332745 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332749 on 2017/03/05 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#
3331286
Change 3332751 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332755 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3332303
Change 3332760 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3313485
Change 3332764 on 2017/03/05 by Sungjin.Hong
#loc UE4DocKOR
Change 3332768 on 2017/03/05 by Kimio.Yasuda
Updated File against INTSourceChangelist:3313485
Change 3332787 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3313485
Change 3332801 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3318475
Change 3332864 on 2017/03/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3332873 on 2017/03/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3332877 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3318501
Change 3332878 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3324139
Change 3334679 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3324139
Change 3334688 on 2017/03/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334713 on 2017/03/06 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3334739 on 2017/03/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334750 on 2017/03/06 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334777 on 2017/03/06 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3334779 on 2017/03/06 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3334786 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3309591
Change 3334801 on 2017/03/07 by Masayo.Kondo
File updated based on previous fixes
Change 3334816 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334831 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334833 on 2017/03/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3334836 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334841 on 2017/03/07 by Kimio.Yasuda
Fixed title translation.
Change 3334861 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3108692
Change 3334865 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334881 on 2017/03/07 by Kimio.Yasuda
Again title tranlation fixed.
Change 3334886 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334895 on 2017/03/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3334912 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334918 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3108692
Change 3334923 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334971 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3334996 on 2017/03/07 by Sungjin.Hong
#loc UE4DocKOR
Change 3335256 on 2017/03/07 by Wes.Bunn
#ue4 docs
Applying Peer Feedback
Change 3335866 on 2017/03/07 by Wes.Bunn
#ue4 docs
#uedoc-4517
Updated page to reflect current content.
Change 3335922 on 2017/03/07 by Wes.Bunn
#UE4 Docs
Updating Media Framework How-to based on content changes.
Change 3335924 on 2017/03/07 by Wes.Bunn
#UE4 Docs
Updated Version to 4.15
Change 3336020 on 2017/03/07 by Wes.Bunn
#UE4 Docs
Updated Media Framework How-to based on content changes.
Change 3336096 on 2017/03/07 by Wes.Bunn
#UE4 Docs
Updating Media Framework How-tos based on content updates.
Change 3336131 on 2017/03/07 by Wes.Bunn
#UE4 Docs
Updates made to Media Framework How-to based on content updates.
Change 3336690 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3335256
Change 3336724 on 2017/03/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3336763 on 2017/03/07 by Robert.Gervais
Fixing a typo.
#UE4Doc
Change 3336764 on 2017/03/07 by Robert.Gervais
#jira UEDOC-1419
Marking doc to Publish.
#UE4Doc
Change 3336765 on 2017/03/07 by Robert.Gervais
Fixing some typos, making some minor revisions, and updating metadata.
#UE4Doc
Change 3336766 on 2017/03/07 by Robert.Gervais
#jira UEDOC-4624
Addressing some of BenM's initial feedback.
#UE4Doc
Change 3336767 on 2017/03/07 by Robert.Gervais
#jira UEDOC-4445
Addressing SME review comments.
#UE4Doc
Change 3336768 on 2017/03/07 by Robert.Gervais
#jira UEDOC-4445
Adding images.
#UE4Doc
Change 3336786 on 2017/03/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3336787 on 2017/03/07 by Sungjin.Hong
#loc UE4DocKOR
Change 3336791 on 2017/03/07 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3336810 on 2017/03/07 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336131
Change 3336878 on 2017/03/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3336885 on 2017/03/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3335924
Change 3336893 on 2017/03/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336020
Change 3336907 on 2017/03/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3335866
Change 3336935 on 2017/03/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3336960 on 2017/03/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3336972 on 2017/03/08 by Sungjin.Hong
#loc UE4DocKOR
Change 3337070 on 2017/03/08 by Jeff.Wilson
Added Robo Recall modding docs - first draft
Change 3337596 on 2017/03/08 by Jeff.Wilson
Added VR/Mesh Editor GDC features preview page
Change 3338735 on 2017/03/08 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3338779 on 2017/03/08 by Kimio.Yasuda
Updated File against INTSourceChangelist:3277874
Change 3338844 on 2017/03/08 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3337070
Change 3338855 on 2017/03/08 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3338909 on 2017/03/08 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3338943 on 2017/03/08 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3338979 on 2017/03/09 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3338984 on 2017/03/09 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3338999 on 2017/03/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3339016 on 2017/03/09 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3339053 on 2017/03/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3339088 on 2017/03/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3339098 on 2017/03/09 by Kimio.Yasuda
Fixed bracket from one byte to two byte
Change 3339101 on 2017/03/09 by Kimio.Yasuda
Fixed translation
Change 3339104 on 2017/03/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3260884
Change 3339906 on 2017/03/09 by Jeff.Wilson
Updated metadata
Change 3339912 on 2017/03/09 by Jeff.Wilson
Set page to publish
Change 3339919 on 2017/03/09 by Jeff.Wilson
Set page to publish
Change 3339941 on 2017/03/09 by Jeff.Wilson
Set page to publish
Change 3339965 on 2017/03/09 by Jeff.Wilson
Set page to publish
Change 3339987 on 2017/03/09 by Jeff.Wilson
Set page to publish
Change 3340108 on 2017/03/09 by Jeff.Wilson
Updated metadata
Change 3340158 on 2017/03/09 by Jeff.Wilson
Updated metadata and formatting
Change 3340363 on 2017/03/09 by Wes.Bunn
#ue4 docs
Sequencer Event Track How-to updates.
- refactored page to include Custom Struct usage
- images replaced with new UI.
Change 3340382 on 2017/03/09 by Tim.Hobson
#UE4 Docs: UEDOC-4698 - Added multiple Distance Field How-To pages:
* Distance Field and How-To Directory pages
* Using Distance Field Shadows
* Using Distance Field Ambient Occlusion
* Using Distance Field Indirect Shadows
* Using Particle Collision Mode for Distance Fields
* Using Static Mesh Editor Build Settings for Distance Fields
Change 3340402 on 2017/03/09 by Richard.Hinckley
#jira UEDOC-4668
RawInput Plugin initial document.
Change 3340410 on 2017/03/09 by Richard.Hinckley
#jira UEDOC-4674
Force Feedback Component initial documentation.
Change 3340467 on 2017/03/09 by Robert.Gervais
#jira UE-42612
Removed SSR sub-section per SME.
#UE4Doc
Change 3340643 on 2017/03/09 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3340644 on 2017/03/09 by Robert.Gervais
#jira UEDOC-4624
Implementing first draft of IWYU Reference guide.
#UE4Doc
Change 3340664 on 2017/03/09 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340382
Change 3340857 on 2017/03/09 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3340881 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3340912 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3340926 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3339965
Change 3340933 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3339965
Change 3340935 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3339965
Change 3340960 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3339965
Change 3340961 on 2017/03/10 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3339965
Change 3341007 on 2017/03/10 by Sungjin.Hong
#loc UE4DocKOR
Change 3342341 on 2017/03/10 by Robert.Gervais
#jira UEDOC-4625
Merging RichardH's updates into the WIP.
#UE4Doc
Change 3342729 on 2017/03/12 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3342749 on 2017/03/12 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3342766 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342768 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342775 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342785 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342816 on 2017/03/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3342817 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342869 on 2017/03/13 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3342935 on 2017/03/13 by Sungjin.Hong
#loc UE4DocKOR
Change 3343617 on 2017/03/13 by Jeff.Wilson
Added missing sourceinstall.png image from style
Change 3343618 on 2017/03/13 by Jeff.Wilson
Updated with difference between binary and source install
Change 3343699 on 2017/03/13 by Wes.Bunn
#ue4 docs
Minor updates to UMG How-to landing page.
Drag and Drop How-to page Description updated.
Change 3343774 on 2017/03/13 by Wes.Bunn
#ue4 docs
Minor updates, removed version tag on sub-pages.
Change 3343831 on 2017/03/13 by Wes.Bunn
#ue4 docs
Minor updates, updated image, fixed some formatting.
Change 3343833 on 2017/03/13 by Wes.Bunn
#ue4 docs
Setting pages to Docs as they are no longer needed.
Change 3343902 on 2017/03/13 by Wes.Bunn
#ue4 docs
minor updates, image update due to layout changes, formatting fixes.
Change 3343972 on 2017/03/13 by Robert.Gervais
#jira UEDOC-1419
Fixing table format.
#UE4Doc
Change 3344095 on 2017/03/13 by Robert.Gervais
#jira UEDOC-4623
Updating Build Config properties page.
#UE4Doc
Change 3344608 on 2017/03/14 by Sungjin.Hong
#loc UE4DocKOR
Change 3344626 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3344641 on 2017/03/14 by Kimio.Yasuda
Updated File against INTSourceChagelist:3340382
Change 3344654 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3344669 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3344673 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3344693 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343833
Change 3344694 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343833
Change 3344702 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343833
Change 3344715 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343699
Change 3344726 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343831
Change 3344784 on 2017/03/14 by Sungjin.Hong
#loc UE4DocKOR
Change 3344897 on 2017/03/14 by Sam.Deiter
#UE4 Docs: Adjusting images based on feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3344913 on 2017/03/14 by Tim.Hobson
#UE4 Docs: UEDOC-4642 - peer review edits for Virtual Bones
Change 3345453 on 2017/03/14 by Wes.Bunn
#ue4 docs
Updated Widget Type Reference page for content/images.
- Added Blur Widget Child page.
Change 3345705 on 2017/03/14 by Sam.Deiter
#UE4 Docs: Applying peer feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3346002 on 2017/03/14 by Tim.Hobson
#UE4 Docs: UEDOC-4635 - Mesh Decals page Peer Review Edits and fixed the attachment .zip that had the wrong FBX file.
Change 3346082 on 2017/03/14 by Robert.Gervais
#jira UEDOC-4626
Addressing doc review comments by adding image highlights.
#UE4Doc
#code_review Chase.McAllister
Change 3346507 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Adding a custom topic image to the overview page as part of the Editorial Review process.
#UE4Doc
Change 3346508 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Made some minor revisions during the Editorial Review process.
Updated the page's metadata.
#UE4Doc
Change 3346509 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Made some minor grammatical revisions as part of Editorial Review process.
Updated metadata.
#UE4Doc
Change 3346510 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Making minor grammatical revisions during the Editorial Review process.
Cross-linking the page back to the Single Trace by Channel How to guide.
Updating metadata.
#UE4Doc
Change 3346511 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Making minor grammatical revisions during the Editorial Review process.
Updated metadata.
#UE4Doc
Change 3346512 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Minor revision to overview text.
Updated metadata.
#UE4Doc
Change 3346513 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Making minor grammatical revisions during Editorial Review process.
Updated page metadata.
Chunked information to flow a bit more logically.
#UE4Doc
Change 3346514 on 2017/03/14 by Robert.Gervais
#jira UEDOC-3332
Making minor grammatical revisions during Editorial Review process.
Updated page metadata.
Revised page to adhere to S&S.
#UE4Doc
Change 3346530 on 2017/03/14 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3346810 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3346002
Change 3346822 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3345705
Change 3346853 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3343972
Change 3346865 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346874 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346882 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346885 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346887 on 2017/03/15 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3346892 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346906 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346909 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340158
Change 3346911 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340108
Change 3346923 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3339919
Change 3346924 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3346925 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3346926 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3339912
Change 3346927 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3346928 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3339912
Change 3346930 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3346932 on 2017/03/15 by Sungjin.Hong
#loc UE4DocKOR
Change 3346934 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3339906
Change 3346937 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3339906
Change 3346984 on 2017/03/15 by Sungjin.Hong
#loc UE4DocKOR
Change 3346987 on 2017/03/15 by Sungjin.Hong
#loc UE4DocKOR
Change 3347102 on 2017/03/15 by Tim.Hobson
#UE4 Docs: UEDOC-4608 - Texture Streaming Improvements for 4.15
- Updated Configuration page with new Cvars.
- Build Textures Page updated with latest information and new additions.
- All images updated to reflect different UI and available options.
- Stat Page has been marked as Public and updated with latest information and performance metrics from Paragon.
- Added topic images for Topics on Landing Page for four pages
- Completed Peer Review Edits
- Completed SME Review Edits
Change 3347234 on 2017/03/15 by Sam.Deiter
#UE4 Docs: Applying peer feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3347250 on 2017/03/15 by Sam.Deiter
#UE4 Docs: Applied SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3347258 on 2017/03/15 by Jeff.Wilson
Set page to publish
Change 3347971 on 2017/03/15 by Robert.Gervais
#jira UEDOC-4613
Making some final edits for publication.
#UE4Doc
#code_review Tim.Hobson
Change 3347993 on 2017/03/15 by Richard.Hinckley
#jira UEDOC-3863
Moved to another document, linked in a different place.
Change 3348041 on 2017/03/15 by Wes.Bunn
#ue4 docs
Animate Dynamic Objects with Sequencer How-to page added.
Change 3348099 on 2017/03/15 by Tim.Hobson
#UE4 Docs: UEDOC-3973 - SME Review edits and rewrites for Capsule Shadows.
- Rewrote How-to's into Quick Start.
- Rewrote and simplified the Capsule Shadows Overview page
Change 3348587 on 2017/03/15 by Robert.Gervais
Fixed a minor typo.
#UE4Doc
Change 3348703 on 2017/03/15 by Robert.Gervais
#jira UEDOC-3978
Made significant edits to the documentation as part of the Editorial Review process.
#UE4Doc
#code_review tim.hobson
Change 3348720 on 2017/03/15 by Robert.Gervais
#jira UEDOC-4276
Minor update to metadata during Editorial Review.
Page still needs Prereq topic(s) and tag(s) before it can be moved to a publishing state.
#UE4Doc
#code_review Sam.Dieter
Change 3348815 on 2017/03/15 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3348853 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348869 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348879 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348924 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348925 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348943 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348959 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348970 on 2017/03/15 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336767
Change 3348972 on 2017/03/15 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348975 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3347993
Change 3348985 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348987 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348720
Change 3348991 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3339965
Change 3348992 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3348994 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3349018 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3349059 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3349071 on 2017/03/16 by Kimio.Yasuda
Typo correction
Change 3349091 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3349104 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3349131 on 2017/03/16 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3349212 on 2017/03/16 by Sungjin.Hong
#loc UE4DocKOR
Change 3349284 on 2017/03/16 by Sungjin.Hong
#loc UE4DocKOR
Change 3349328 on 2017/03/16 by Tim.Hobson
#UE4 Docs: UEDOC-4588 - VR Editor updates
Activate VR Mode Page:
* Updated images
* Added section to enable/disable VR Editor window tutorial
VR Editor Controls page:
* Added Reset World Scale to Navigation Controls section
* Added image for Steam Controllers for Reset World Scale controls.
Quick Select Menu page:
* Updated quick select menu image
* Added and updated new button descriptions.
Radial Menu page:
* Updated topic image referenced by the VR Editor landing page.
* Updated radial menu image
* Added/removed property and descriptions to match new menu.
Change 3349942 on 2017/03/16 by Wes.Bunn
#ue4 docs
Updates to Sequencer Overview page to include:
- Relative time evalutaion.
- Transform Keys/Selection tools.
Change 3349955 on 2017/03/16 by Tim.Hobson
#UE4 Docs: #UEDOC-4698 - Distance Field How-To's - Added Peer Review Edits.
Change 3349969 on 2017/03/16 by Wes.Bunn
#ue4 docs
Minor fixes for grammer.
Change 3350003 on 2017/03/16 by Sam.Deiter
#UE4 Docs: Doing the first check in of this new page.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3350015 on 2017/03/16 by Sam.Deiter
#UE4 Docs: Adding a link to the new cable comp page and removing the old information.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3350143 on 2017/03/16 by Sam.Deiter
#UE4 Docs: Adding tags and prerecs.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3350307 on 2017/03/16 by Richard.Hinckley
#jira UEDOC-4625
Changing "tag:" to "tags:" because I think "tags:" is the correct metadata tag.
Change 3350310 on 2017/03/16 by Richard.Hinckley
#jira UEDOC-4440
Added more component types and images, included more meta tags.
Change 3350329 on 2017/03/16 by Robert.Gervais
#jira UEDOC-4593
Re-organized the pages during Editorial Review process.
#UE4Doc
#code_review tim.hobson
Change 3350997 on 2017/03/16 by Robert.Gervais
Scrubbed image per S&S.
#UE4Doc
Change 3351045 on 2017/03/16 by Robert.Gervais
#jira UEDOC-4440
Added some images and and made a few grammatical revisions as part of Editorial Review process.
#UE4Doc
Change 3351068 on 2017/03/16 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3351114 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3351117 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343902
Change 3351120 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343902
Change 3351125 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343902
Change 3351126 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3343902
Change 3351189 on 2017/03/16 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3345453
Change 3351192 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3351193 on 2017/03/16 by Kimio.Yasuda
Updated File against INTSourceChangelist:3348703
Change 3351224 on 2017/03/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3336766
Change 3351265 on 2017/03/17 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3351281 on 2017/03/17 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#
Change 3351350 on 2017/03/17 by Kimio.Yasuda
Updated File against INTSourceChangelist:3350307
Change 3351402 on 2017/03/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3351440 on 2017/03/17 by Sungjin.Hong
#loc UE4DocKOR
Change 3351610 on 2017/03/17 by Tim.Hobson
#UE4 Docs: UEDOC-4588 - Editorial Review: Added headers for overarching sections and summaries for the VR Controls page.
Change 3351628 on 2017/03/17 by Tim.Hobson
#UE4 Docs: UEDOC-4698 - Distance Field How-to's - Doc Review Edits
Change 3351642 on 2017/03/17 by Jeff.Wilson
Changed QA build lcoation to stream (depot location is being phased out)
Change 3351647 on 2017/03/17 by Jeff.Wilson
Updated with info on getting builds from stream
Change 3351664 on 2017/03/17 by Richard.Hinckley
#jira UEDOC-4718
Making Visual Studio setup and other Programming links easier to find.
Change 3351873 on 2017/03/17 by Robert.Gervais
#jira UEDOC-4384
Adding community contributor information to this guide.
#UE4Doc
#code_review arciel.rekman
Change 3352040 on 2017/03/17 by Robert.Gervais
#jira UEDOC-4627
Applying SME review comments.
#UE4Doc
#code_review ben.marsh
Change 3352264 on 2017/03/17 by Sam.Deiter
#UE4 Docs: Apply peer feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3352412 on 2017/03/17 by Chase.McAllister
#UE4 Docs: Small typo and grammatical fizes to CableComponent page
Change 3352514 on 2017/03/17 by Robert.Gervais
#jira UEDOC-4627
Minor revision per SME.
#UE4Doc
#code_review ben.marsh
Change 3352959 on 2017/03/17 by Robert.Gervais
#jira UEDOC-4625
Flipping doc to 'Public'.
#UE4Doc
Change 3353254 on 2017/03/18 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3353255 on 2017/03/18 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3353264 on 2017/03/18 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3353267 on 2017/03/18 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3353462 on 2017/03/19 by Sungjin.Hong
#loc UE4DocKOR
Change 3353651 on 2017/03/20 by Sungjin.Hong
#loc UE4DocKOR
Change 3354806 on 2017/03/20 by Richard.Hinckley
#jira UEDOC-4723
Updated text and images.
Change 3355389 on 2017/03/20 by Robert.Gervais
#jira UEDOC-4623
Updated Unreal Build System page in anticipation of forthcoming rewrites.
#UE4Doc
Change 3355403 on 2017/03/20 by Robert.Gervais
#jira UEDOC-4623
Updating related pages metadata.
#UE4Doc
Change 3355414 on 2017/03/20 by Robert.Gervais
#jira UEDOC-4623
Updates to tags metadata.
#UE4Doc
Change 3355435 on 2017/03/20 by Robert.Gervais
#jira UEDOC-4623
Paradigmatic update to IWYU description.
#UE4Doc
Change 3355662 on 2017/03/20 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3351642
Change 3355675 on 2017/03/20 by Sungjin.Hong
#loc UE4DocKor
Change 3355715 on 2017/03/20 by Sungjin.Hong
TypoCorrection
Change 3355716 on 2017/03/20 by Jeff.Wilson
Added new images
Change 3355771 on 2017/03/21 by Sungjin.Hong
TypoCorrection
Change 3355812 on 2017/03/21 by Sungjin.Hong
TypoCorrection
Change 3355889 on 2017/03/21 by Sungjin.Hong
#loc UE4DocKOR
Change 3356266 on 2017/03/21 by Jeff.Wilson
Updated regional welcome pDFs
Change 3356303 on 2017/03/21 by Richard.Hinckley
#jira UEDOC-4711
Updated Networking Overview page to include a summary of net modes.
Change 3356804 on 2017/03/21 by Robert.Gervais
#jira UEDOC-4623
Organizing pages related to Unreal Build System.
#UE4Doc
Change 3357913 on 2017/03/22 by Sungjin.Hong
fixing corrupt characters usually ' and "
Change 3357914 on 2017/03/22 by Sungjin.Hong
fixing corrupt characters usually ' and "
Change 3357948 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3349969
Change 3357958 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3355771
Change 3357961 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347258
Change 3357974 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347234
Change 3358057 on 2017/03/22 by Kimio.Yasuda
Updated File against INTSourceChangeList:3108692
Change 3358101 on 2017/03/22 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3358119 on 2017/03/22 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3358131 on 2017/03/22 by Sungjin.Hong
#loc UE4DocKor
Change 3358142 on 2017/03/22 by Sungjin.Hong
#loc UE4DocKOR
Change 3358386 on 2017/03/22 by Wes.Bunn
#ue4 docs
Blend Space section refactor due to editor changes
- Blend Space Landing page refactor
- Blend Space Creation page refactor
- Blend Space Editor page refactor
- Blend Space User Guide page refactor
- Blend Space How-to page refactor
- Blend Space Overview page added
Change 3358550 on 2017/03/22 by Robert.Gervais
Reverting document to an unpublished state.
#UE4Doc
Change 3359655 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3359678 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3359696 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3337070
Change 3359724 on 2017/03/22 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3336763
Change 3359749 on 2017/03/22 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351628
Change 3359842 on 2017/03/23 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3359894 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3359911 on 2017/03/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351628
Change 3359913 on 2017/03/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351628
Change 3359933 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3108692
Change 3359940 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3359941 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3359943 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3359952 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3360816 on 2017/03/23 by Tim.Hobson
#UE4 Docs: UEDOC-4754 - Font Asset Improvements
* Added information about Font Faces
* Added information about Upgrading Data
* Update and redid most images for consistency
* Reorganized page for better flow. (ie. moved Font Editor section towards the top of the page instead of after the usage sections.
Change 3360829 on 2017/03/23 by Tim.Hobson
#UE4 Docs: UEDOC-4593 - VR Editor - Editorial Edit suggestion.
- Removing the Prereq for VR Setup via GitHub on pages no longer needed.
- Updated all pages to reflect 4.15 version.
Change 3360942 on 2017/03/23 by Wes.Bunn
#ue4 docs
Minor typo fixes.
Change 3360952 on 2017/03/23 by Wes.Bunn
#ue4 docs
actually checking in the typo fixes made from previous revision.
Change 3361084 on 2017/03/23 by Wes.Bunn
#ue4 docs
Applying peer review feedback.
Change 3361375 on 2017/03/23 by Tim.Hobson
#UE4 Docs: UEDOC-4748 - Added new page for Vehicle Center of Mass.
- This includes the Mass Properties Debugging visualization that included with 4.15.
Change 3361457 on 2017/03/23 by Tim.Hobson
#UE4 Docs: UEDOC-4756 - Addressed Peer Review Edits.
Change 3361467 on 2017/03/23 by Tim.Hobson
#UE4 Docs: Removing old folders and files no longer need original submission for Capsule Shadow docs.
Change 3362132 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3362155 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3340410
Change 3362163 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3355414
Change 3362174 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3355414
Change 3362184 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3362201 on 2017/03/23 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3356804
Change 3362204 on 2017/03/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3351628
Change 3362207 on 2017/03/23 by Kimio.Yasuda
Updated File against INTSourceChangelist:3340382
Change 3362243 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362246 on 2017/03/23 by Kimio.Yasuda
Fixed Title translation "Unreal Engine"
Change 3362247 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362250 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362256 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362260 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362261 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362263 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362264 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362267 on 2017/03/23 by Kimio.Yasuda
Fixed title translation again
Change 3362269 on 2017/03/23 by Kimio.Yasuda
Fixed translation title "Unreal Engine"
Change 3362270 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362272 on 2017/03/23 by Kimio.Yasuda
Fixed title translation "Unreal Engine"
Change 3362275 on 2017/03/23 by Kimio.Yasuda
Anothre fix
Change 3362276 on 2017/03/23 by Kimio.Yasuda
Another fix
Change 3362348 on 2017/03/24 by Kimio.Yasuda
Updated File against INTSourceChangelist:3349955
Change 3362980 on 2017/03/24 by Robert.Gervais
#jira UEDOC-1419
Tweaking the learning path for user clarity.
#UE4Doc
Change 3364378 on 2017/03/24 by Robert.Gervais
#jira UEDOC-1419
Adjusting organization based on user feedback.
#UE4Doc
Change 3366524 on 2017/03/27 by Richard.Hinckley
#jira UEDOC-4822
Added GameInstance explanation, and adjusted explanations of other classes.
Change 3367005 on 2017/03/27 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3343774
Change 3367128 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3361457
Change 3367139 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346512
Change 3367149 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3348587
Change 3367167 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346510
Change 3367179 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346511
Change 3367189 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346509
Change 3367201 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3346508
Change 3367470 on 2017/03/28 by Jeff.Wilson
Added hotfix/QFE update notes pages
Change 3367471 on 2017/03/28 by Jeff.Wilson
Updates for fixing analytics events plus adding some new ones
Change 3367472 on 2017/03/28 by Jeff.Wilson
Added topic image
Change 3367473 on 2017/03/28 by Jeff.Wilson
Updated metadata
Change 3367474 on 2017/03/28 by Jeff.Wilson
Minor formatting updates
Change 3367475 on 2017/03/28 by Jeff.Wilson
Updated description
Change 3367477 on 2017/03/28 by Jeff.Wilson
Adding Hotfix/QFE Update Notes pages for all releases
Change 3367478 on 2017/03/28 by Jeff.Wilson
Adding BBCode templates
Change 3367522 on 2017/03/28 by Tim.Hobson
#UE4 Doc: UEDOC-4750 - Center of Mass page Peer Review edits.
Change 3369005 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3369046 on 2017/03/28 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3340363
Change 3369236 on 2017/03/29 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3348041
Change 3369245 on 2017/03/29 by Kimio.Yasuda
Typo correction
Change 3369257 on 2017/03/29 by Masayo.Kondo
Fixed typo
Change 3369259 on 2017/03/29 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3348041
Change 3369293 on 2017/03/29 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3358386
Change 3369308 on 2017/03/29 by Joe.Conley
Rename/move file(s)
Moving "Documentation Publishing" script to BuildScripts instead of Rocket
Change 3369310 on 2017/03/29 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3358386
Change 3369330 on 2017/03/29 by Tianmin.Xie
#loc UE4DocCHN use better language for "subsurface profile" and "shading model" in this page.
Change 3369337 on 2017/03/29 by Joe.Conley
Moving Documentation Publishing cs file to BuildScript vcproj from Rocket vcproj
Change 3369338 on 2017/03/29 by Joe.Conley
Documentation Publishing error checking script:
Changing email "from" address to "docpublishingerrornotifications" instead of "unrealbot".
Change 3369642 on 2017/03/29 by Sam.Deiter
#UE4 Docs: Checking in changes based on feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3369658 on 2017/03/29 by Sam.Deiter
#UE4 Docs: Fixign the page title.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3369668 on 2017/03/29 by Sam.Deiter
#UE4 Docs: Fixing the link to the parent page as it was incorrect.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3369712 on 2017/03/29 by Chase.McAllister
#UE-Doc #jira UEDOC-4751 - adding Crumbs meta data
Change 3369756 on 2017/03/29 by Tim.Hobson
#UE4 Docs: UEDOC-4760 - Initial doc page for High Dynamic Range Display Output.
Change 3370966 on 2017/03/29 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3371096 on 2017/03/29 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3361084
Change 3371247 on 2017/03/30 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3347971
Change 3371340 on 2017/03/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3371352 on 2017/03/30 by Kimio.Yasuda
Updated File against INTSourceChangelist:3364378
Change 3372149 on 2017/03/30 by Robert.Gervais
#jira UEDOC-4790
Made a couple of minor revisions during the Editorial Review process.
#UE4Doc
#code_review Wes.Bunn
Change 3372539 on 2017/03/30 by Robert.Gervais
#jira UEDOC-4808
Made a couple of minor revisions during the Editorial Review process.
Also, added some missing metadata to the markup page.
#UE4Doc
#code_review Wes.Bunn
Change 3372893 on 2017/03/30 by Tim.Hobson
#UE4 Docs: UEDOC-4662 - Added Material Slot workflow to "Material Ordering"
* Commented out Skin## section
* Added Material Slots information for new Material Import workflow
* Updated FBX Version to 2016
[CL 3372954 by Jeff Wilson in Main branch]