Commit Graph

13 Commits

Author SHA1 Message Date
Dan Oconnor
e29126385f Copying //UE4/Dev-Framework to //UE4/Dev-Main (Source: //UE4/Dev-Framework @ 3380068)
#lockdown Nick.Penwarden

==========================
MAJOR FEATURES + CHANGES
==========================

Change 3358702 on 2017/03/22 by Marc.Audy

	Always mark child actors pending kill when in PostLoad as often the World is too early to have a WorldContext which causes issues in DestroyActor
	#jira UE-42679

Change 3358737 on 2017/03/22 by Mieszko.Zielinski

	Exposed UBrainComponent::IsRunning() and UBrainComponent::IsPaused() to Blueprint #UE4

Change 3359062 on 2017/03/22 by Michael.Noland

	Blueprints: Show the Save and Find in CB buttons when working with level script blueprints (they will save/show the map package)

	#jira UE-30748

Change 3359066 on 2017/03/22 by Michael.Noland

	PR #3348: Make fields of FAttributeMetaData editable (Contributed by hoelzl)

	#jira UE-42620

Change 3359069 on 2017/03/22 by Michael.Noland

	PR #3288: InverseLerp Blueprint Tooltips Clarification (Contributed by wunawuna)

	#jira UE-42250

Change 3359108 on 2017/03/22 by Michael.Noland

	Blueprints: Fix an issue where running the editor in a different culture could break pins on nodes that have optional arrays of pins (e.g., animation graph nodes like blend by layer)
	#jira UE-36232

Change 3359235 on 2017/03/22 by Marc.Audy

	Expose bShouldPerformFullTickWhenPaused to blueprints and details panel
	#jira UE-17286

Change 3359324 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Disable collision on NavModifierVolumes. Previously they had an OverlapAll response and generated overlap events. They are only supposed to be used for preventing nav mesh generation, but overlap events could affect gameplay, and also are bad for performance.

	(Integrate CL 3249525 from Odin).

Change 3359326 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Optimization during attachment to check bool before expensive casts and body instance fetching.

	(Integrate CL 3261262 from Odin).

Change 3359327 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Make bSkipAgentHeightCheckWhenPickingNavData actually ignore height when picking data.

	(Integrate CL 3231908 from Odin)

Change 3359328 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Make a static FName in UMovementComponent::OverlapTest const and move it to a namespace.

	(Integrate CL 3259985 from Odin)

Change 3359329 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Fix ProjectileMovementComponent continuing to simulate (and generate hit events) after it is deactivated during simulation. HasStoppedSimulation() should check if bIsActive is false.

	(Integrate CL 3260001 from Odin)

Change 3359330 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Fix accumulated forces in CharacterMovement when movement mode or activation changes.

	- Added CharacterMovementComponent::ClearAccumulatedForces()
	- AddForce() and related functions now avoid adding the force if in MovementMode "None". When ticking in "None", forces are cleared so they don't pile up until the next valid movement mode. Forces are also cleared if the updated component changes or when the capsule simulates physics.
	- CharacterMovementComponent::Deactivate() implemented to stop movement and call ClearAccumulatedForces().
	- ClearAccumulatedForces() now also clears pending launch velocity.
	- Exposed ClearAccumulatedForces() to blueprints.
	- AddForce() and AddImpulse() now also check that character movement is active (not deactivated, able to tick).
	- ApplyAccumulatedForces() does not call ClearAccumulatedForces(), since that would prevent pending launch.
	- SimulateMovement() handles pending launch and clears forces regardless of whether it's simulated proxy. Added note to investigate using ApplyAccumulatedForces() in SimulateMovement().
	- Inlined ActorComponent::IsActive().

	(Integrate CLs 3259933, 3266018 from Odin)

Change 3359338 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) TickCharacterPose() and clear root motion before abandoning tick in UCharacterMovementComponent::PerformMovement() when movement mode is None. Prevents root motion building up until next valid movement mode.

	(Integrate CL 3271928 from Odin)

Change 3359345 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Fix characters sliding when landing on slanted surfaces or stairs, when aggressive "Perch" settings could cause a line trace (from the center of a capsule) instead of capsule trace and thereby screw up the floor distance checks.

	(Integrate CL 3273026 from Odin)

Change 3359381 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Performance tweak to ApplyRadialDamageWithFalloff(). Don't rebuild FRadialDamageEvent each loop over hit actors. Added stats for BreakHitResult()/MakeHitResult() under "stat game".

	(Integrate CLs 3275415, 3276810 from Odin).

Change 3359422 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Fix build (CollisionProfile included).

Change 3359442 on 2017/03/22 by Michael.Noland

	Blueprints: Prevent comment boxes from clipping the last letter of some words at the edge by increasing the padding on the wrap-at position

Change 3359445 on 2017/03/22 by Michael.Noland

	PR #2989: Improved BP comment nodes (Contributed by projectgheist)

	#jira UE-36788
	#jira UE-39118

Change 3359446 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Add support for FScopedMovementUpdate to be able to queue up overlaps that do not require reflexive bGenerateOverlapEvents. This allows custom inspection or processing of overlaps within a scoped move. Overlap events from the move will still only trigger in UpdateOverlaps() if bGenerateOverlapEvents is enabled on both components, as before.

	(Integrate CL 3278307 from Odin)

Change 3359494 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Make some data in FScopedMovementUpdate protected rather than private so it can easily be subclassed, and expose a new helper SetWorldLocationAndRotation().

	(Integrated CL 3280775 from Odin).

Change 3359506 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) MovementComponent::Deactivate() calls StopMovement() to clear cached velocity. It's silly that reactivation many seconds or frames later would restore that velocity. Some special handling in CharacterMovement to keep it acting as before (it cleared velocity, but did not clear the path request, leaving that alone).

	(Integrate CL 3287026 from Odin).

Change 3359514 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Collision.ListComponentsWithResponseToProfile command includes pending kill objects.

	(Integrate CL 3293322 from Odin)

Change 3359553 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Optimization in CharacterMovement tick to not extract transform values twice.

	(Integrate CL 3299098 from Odin).

Change 3359554 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Perf: optimize UKismetMathLibrary::GetForwardVector() (converts Rotator to forward direction). This way we avoid building a matrix, and avoids 1 more SinCos call.

	(Integrate CL 3296254 from Odin).

Change 3359555 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Add OnComponentCollisionSettingsChangedEvent delegate to PrimitiveComponent. Fixed SkeletalMeshComponent not calling Super implementation.

	(Integrate CL 3295744 from Odin)

Change 3359561 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Perf: AActor::GetComponents() with generic type should *not* assume the output array needs space for the entire contents of OwnedComponents. If OwnedComponents.Num() > the array reserve size, this forces an allocation, even if few or no components of the requested type are found.

	(Integrate CL 3299111 from Odin)

Change 3359573 on 2017/03/22 by dan.reynolds

	Added BP log to the Passive Mix Modifier test platform BP

Change 3359593 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Perf: avoid allocations during creation in AAIController::PostInitializeComponents() (in development builds).

	(Integrate CL 3299118 from Odin)

Change 3359595 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Perf: HasActiveCameraComponent() and HasActivePawnControlCameraComponent() don't need to fill in an array while searching for a certain component. Also see CL 3359561, which could cause each of these functions to always cause an allocation when filling in the array when num components > 24.

	(Integrate CL 3299116 from Odin)

Change 3359602 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Clean up some of the new fast overlap code in PrimitiveComponent. Mostly some variable renaming, and CVar access optimization.

	(Integrate CL 3340622 from Odin)

Change 3359616 on 2017/03/22 by Zak.Middleton

	#ue4 - (Merge) Added support for bIgnoreTouches to FCollisionQueryParams. MoveComponent uses this to avoid PhysX collision queries for overlaps in GeomSweepMulti when bGenerateOverlapEvents is off.

	(Integrate CL 3340635 from Odin)

Change 3359864 on 2017/03/23 by Mieszko.Zielinski

	Added a safeguard to prevent crashes resulting from people trying to name their BB keys things longer than 1024 characters #UE4

	#jira UE-43120

Change 3360884 on 2017/03/23 by Zak.Middleton

	#ue4 - (Merge) Audio: AUDIO_MIXER_ENABLE_DEBUG_MODE turned off in Test builds. Shipping already had it off.

	(Integrate CL 3310724 from Odin)

Change 3361045 on 2017/03/23 by Zak.Middleton

	#ue4 - (Merge) Audio: new cvars to help with optimization:

	- au.DisableReverbSubmix
	- au.DisableEQSubmix
	- au.DisableParallelSourceProcessing
	- au.SetAudioChannelCount

	Also checked in some code to cut down on the amount of parameter setting in EQ

	(Integrate of CL 3303165 in Odin by Aaron.Mcleran)

Change 3361172 on 2017/03/23 by Zak.Middleton

	#ue4 - (Merge) Audio: added stat for HRTF.

	(Integrate CL 3310728 from Odin)

Change 3361189 on 2017/03/23 by Zak.Middleton

	#ue4 - (Merge) CVar to toggle HRTF for perf settings. Default is on.

	(Integrate CL 3310926 from Odin).

Change 3361914 on 2017/03/23 by Aaron.McLeran

	UE-42649 Fixing crash in cleaning up active sound in sound concurrency

	-Handling edge case of an active sound not have a sound base ptr, which is possible.

Change 3361924 on 2017/03/23 by Aaron.McLeran

	UE-41378 Fixing passive mix modifier bug

Change 3361978 on 2017/03/23 by Aaron.McLeran

	UE-42627 Fix for when audio device is removed and getting a deadlock in computing audio clock

Change 3361989 on 2017/03/23 by Aaron.McLeran

	PR #3010: Check for null GEngine on sound processing

Change 3362053 on 2017/03/23 by Zak.Middleton

	#ue4 - (Merge) Audio: Perf: Avoid thousands of Array.Add() calls during processing, which on shipping still does checks to see if the allocator has to grow, and updates ArrayCount.

	(Integrate CL 3311120 from Odin)

Change 3362102 on 2017/03/23 by Aaron.McLeran

	PR #3182:  Enabled SwitchOnEnum nodes for EAttenuationShape and EAttenuationDistanceModel

Change 3362153 on 2017/03/23 by Aaron.McLeran

	UE-43286 Oculus audio plugin not working/available

Change 3362162 on 2017/03/23 by Aaron.McLeran

	UE-42252  Frequent ensure in FLevelEditorViewportClient::UpdateAudioListener

Change 3362206 on 2017/03/23 by Aaron.McLeran

	UE-43287 Fixing HRTF spatialization in editor viewport

	- Steam Audio doesn't support multiple audio devices at the moment
	- Instead of hard-coding all audio plugins to not work in main audio device (GDC temp fix), I allow audio plugins to specify if they should be used on main audio device

Change 3362775 on 2017/03/24 by mason.seay

	Replaced deprecated node

Change 3363024 on 2017/03/24 by Ben.Zeigler

	Fix regression in behavior of streamable manager where loading both a valid and null asset used to work but now fails. Instead added a warning for that case, but if only null are requested it still fails with an error

Change 3363030 on 2017/03/24 by Zak.Middleton

	#ue4 - Lower default max sendrate for clients to 60Hz from 90Hz when net speed is high and player count is low. Throttled rate remains at 45Hz. This value has been tested in Paragon with no ill effect, and saves on bandwidth and server CPU when clients run at high framerate.

Change 3363036 on 2017/03/24 by Zak.Middleton

	#ue4 - (Merge) Audio: Perf: turned a float divide into a multiply. It happens at least 32k times per audio update.

	(Integrate CL 3311158 from Odin)

Change 3363541 on 2017/03/24 by Zak.Middleton

	#ue4 - (Merge) Audio: Perf: remove pointer indirection, and successive TArray Add()s in GetChannelMap().

	(Integrate CL 3311169 from Odin)

Change 3363642 on 2017/03/24 by Zak.Middleton

	#ue4 - (Merge) Audio: Perf: Save ~5% total audio update time. Savings in "Source Output Buffers".

	- Removed function call overhead to updating channel map. 64,000 function calls...
	- Simplified FSourceParam::Update() to reduce branching and have 1 return site.
	- Added alternative to GetChannelMap() called UpdateChannelMap() that avoids copying out values to an array. The values can then be fetched from the channel data directly.

	(Integrate CL 3311235 from Odin)

Change 3364441 on 2017/03/24 by Ben.Zeigler

	Fix issue where calling LoadLocalIniFile on a plugin file would result in an empty file. It was assuming engine/game dirs, now it instead pulls it out of GConfig if available.
	This fixes issue where iterative cooking would fail on plugin config files
	Add FindConfigFileWithBaseName to GConfig

Change 3364652 on 2017/03/25 by Phillip.Kavan

	#jira UE-43210 - Fix a runtime VM crash upon removing an element from a set after consecutive add/remove iterations.

	Change summary:
	- Fixed FScriptSet::Add() to initialize the HashIndex member of the new element when the HashSize does not change.

Change 3365609 on 2017/03/27 by Richard.Hinckley

	#jira UEDOC-4720
	Fixed global enums being dropped from documentation after being extracted by Doxygen.

Change 3365737 on 2017/03/27 by Marc.Audy

	Move setting of the ParentComponent property on an actor to PostRepNotifies instead of having a separate OnRep function.

Change 3365795 on 2017/03/27 by Marc.Audy

	Fix compile error

Change 3365894 on 2017/03/27 by Phillip.Kavan

	#jira UE-35507 - Fix for a GLEO when choosing an LSBP class as the default value for a class input pin in a non-LSBP graph.

	Change summary:
	- Modified FGraphPinFilter::IsClassAllowed() to disallow a given class if the type is contained within a map package that does not match the current graph context.

Change 3366067 on 2017/03/27 by Marc.Audy

	Add UWorld* to PostLoadMap indicating which world has been loaded. Null if an error has occurred.
	#jira UE-40228

Change 3366097 on 2017/03/27 by Marc.Audy

	Fixed missed deprecation disable pairing for PostLadMap

Change 3366170 on 2017/03/27 by Aaron.McLeran

	Fixing div by zero

Change 3366221 on 2017/03/27 by Aaron.McLeran

	UE-43240 Removing dependency on component visualizers in runtime Phonon module.

Change 3366698 on 2017/03/27 by Marc.Audy

	Fix Orion compile errors

Change 3366782 on 2017/03/27 by Aaron.McLeran

	Bringing over optimizations from Odin to Dev-framework.

	Original CL 3311435

Change 3366818 on 2017/03/27 by Aaron.McLeran

	Bringing fix from Odin to Dev-Framework from CL 3304533

	Fix for rare condition that stomps memory during source recycling.

Change 3366984 on 2017/03/27 by Michael.Noland

	Blueprints: Downgraded a warning in the connection drawing policy to verbose to suppress it. It does no good to a typical user.
	#jira UE-41638

Change 3367085 on 2017/03/27 by Brent.Pease

	 - Improve AudioMixer buffering so that only two buffers are needed instead of three, buffer submission and buffer processing are ovelapped, and a warning is issued if the audio processing thread can not keep up.
	 - Added time critical thread priority so that audio processing is not starved which would produce clicks and popping
	 - Allow the audio thread to not be created if a platform implements its own BeginGeneratingAudio() call (as happens on Android)

Change 3367434 on 2017/03/28 by Marc.Audy

	Fix UT compile error

Change 3368587 on 2017/03/28 by Mike.Beach

	Adding a "CookedOnly" plugin type (now used by the nativized Blueprint plugin).

Change 3368724 on 2017/03/28 by Zak.Middleton

	#ue4 - MovementComponent does not ignore initial blocking overlaps when moving from SafeMoveUpdatedComponent(). Set "p.MoveIgnoreFirstBlockingOverlap" back to zero and add a new flag that prevents the depenetration test from generating hit events (to prevent the problem discovered in UE-39387).

	#jira UE-41613, UE-28610

Change 3368748 on 2017/03/28 by Dan.Oconnor

	Provide &FUObjectThreadContext::Get().ObjLoaded when using the compilation manager, add validation functions for finding REINST/TRASH references

Change 3368852 on 2017/03/28 by Mike.Beach

	Fixing a CIS error before it happens - wrapping implementation in preprocessor defines to match declaration in header.

Change 3368873 on 2017/03/28 by Dan.Oconnor

	Rather than collecting script object references, just use the ScriptObjectReferences array. This allows reference replacing archives to update ScriptObjectReferences.

Change 3368998 on 2017/03/28 by Dan.Oconnor

	Setting  CLASS_Interface early in the compilation process

Change 3369494 on 2017/03/29 by Marc.Audy

	Fix UAT compile error

Change 3369924 on 2017/03/29 by Zak.Middleton

	#ue4 - Allow CharacterMovement AdjustFloorHeight() to adjust using the line trace if in penetration. Force next floor check so it will check after it depenetrates.

	#jira UE-36973

Change 3369932 on 2017/03/29 by Ben.Zeigler

	#jira UE-19494 Finish asset auditing work by allowing reading back a cooked asset registry in the editor
	Split off FAssetRegistryState as the struct to hold serialization and accessors, to allow loading multiple platform states at once.
	Optimized runtime asset registry serialization to be around 1/3 as large as before. Dependencies are disabled by default for the runtime registry, you can re-enable with bSerializeDependencies in Engine.ini
	Add FAssetPackageData which is explicitly per-package and only updated on save/load time. File size is stored in here and is computed for both editor and cooked data
	Add code to AssetManagerEditorModule to allow loading pre-cooked asset registry files and reading cooked sizes. The Asset Audit window now has a platform drop down that allows reading from cooked data
	Rename ChunkManifestGenerator to AssetRegistryGenerator and change it to directly hold an FAssetRegistryState internally
	Add new experimental AssetRegistry mode for iterative cooking. This mode is much faster as it does not need to do it's own internal dependency checking and it can be enabled with bUseAssetRegistryForIteration
	Change it so during cooking it doesn't directly load string asset references, but instead cues them for cook and uses the asset registry to find and add redirector mappings that are used during save time

Change 3370028 on 2017/03/29 by Ben.Zeigler

	CIS fix

Change 3370360 on 2017/03/29 by Mike.Beach

	Adding an extra field to FPlatformInfo; a 'UBTTarget' identifier intended to sync up with UBT's UnrealTargetPlatform enum (needed for programatically generating plugin platform whitelists).

Change 3370363 on 2017/03/29 by Ben.Zeigler

	Fix issue where loading out of date editor asset registry cache would throw pointless errors

Change 3370414 on 2017/03/29 by Marc.Audy

	Remove autos

Change 3370428 on 2017/03/29 by Ben.Zeigler

	Fix linux CIS issue, remove implicit conversion from FSavePackageResultStruct back to enum result as it was creating ambiguous operators

Change 3370453 on 2017/03/29 by Marc.Audy

	CIS fix

Change 3370548 on 2017/03/29 by Marc.Audy

	#rn Fix issues with seamless travel in PIE and shared sub levels between different parents.

Change 3370564 on 2017/03/29 by Mieszko.Zielinski

	PR #3429: fix comment typo (Contributed by kayama-shift)

Change 3370602 on 2017/03/29 by Mieszko.Zielinski

	Fixed FRecastTileGenerator::Modifiers being erroneously counted twice when stating memory #UE4

Change 3370615 on 2017/03/29 by Phillip.Kavan

	#jira UE-35515 - No longer crash when creating a new BP class from one or more selected Actors in which the root component is not Blueprint-spawnable.

	Change summary:
	- Modified FKismetEditorUtilities::AddComponentsToBlueprint() to handle deferred SceneComponent SCS node adds when the parent component was not also added (due to not being BP-spawnable).

Change 3370693 on 2017/03/29 by Michael.Noland

	Fixing some bad indentation
	#rnx

Change 3370740 on 2017/03/29 by Ben.Zeigler

	DLC/Mod Cooking fixes, the list of packages from release build as in uncooked filename format so fixed code and made this more obvious
	Fix Asset Registry to allow loading multiple source asset registries into the same state, by keeping a list of preallocated buffers

Change 3370792 on 2017/03/29 by Michael.Noland

	Blueprints: Deleted some unversioned backwards compat. code that would only matter for assets older than VER_UE4_OLDEST_LOADABLE_PACKAGE

Change 3370794 on 2017/03/29 by Michael.Noland

	PR #3190: Reduce some output logging
	- Reduced an Oculus log from Log to Verbose because it spams quite a bit
	- Corrected the spelling and the meaning of a blueprint warning when an invalid breakpoint is encountered
	- Treat UInputComponent::GetAxisValue(None) as not a warning
	- Switch FGenericSaveGameSystem::LoadGame to silently attempt to load the file, it returns success/failure and it isn't necessary to have a separate warning at the file i/o layer

	#jira UE-41446

Change 3370831 on 2017/03/29 by Dan.Oconnor

	Iteration on compilation manager
	 - Fix Skeleton class compilation order
	 - Pass ObjLoaded array to compilation manager to ensure all objects get PostLoaded
	 - Make sure data only classes get reinstanced, so that UpdateCustomPropertyListForPostConstruction is run correctly

Change 3370923 on 2017/03/29 by Michael.Noland

	Blueprints: Added an icon to indicate whether or not a macro contains latent actions
	- Note: The state of the icon is cached for performance reasons on request, with the cache being cleared when the BP containing the macro is modified or a macro graph is removed
	- This does mean that editing the inner macro of a nested macro to add/remove a latent action will not show up in visualization for the outer node until the editor is restarted or the outer macro is modified

Change 3371039 on 2017/03/29 by Dan.Oconnor

	Hacky fix for dropping return params when a function's return node is culled

Change 3371750 on 2017/03/30 by Richard.Hinckley

	Stencil write mask exposed. Adds nine new options (all bits, plus each bit individually - write on pass or depth fail). This allows stencil overlaps to be detected by mixing masks.

Change 3372513 on 2017/03/30 by Ben.Zeigler

	#jira UE-43475 Fix cooker issues with string asset references to null packages.
	Fix redirector detection to follow recursive chains, and correctly strip object class from redirected string asset references.

Change 3372565 on 2017/03/30 by Richard.Hinckley

	Rolling back stencil change, will be moved to Dev-Rendering.

Change 3372764 on 2017/03/30 by Marc.Audy

	Do not create a duplicate sub object that is not in the annotation if a sub object of the same name and class already exists.
	#jira UE-43328

	#rn Fixed cases where the blueprint of a class used as a child actor could be dirtied when compiling the owning blueprint.

Change 3372847 on 2017/03/30 by Marc.Audy

	Fix missing include

Change 3372994 on 2017/03/30 by Zak.Middleton

	#ue4 - Fix build in Debug (checkSlow using incorrect function params).

Change 3373195 on 2017/03/30 by Mike.Beach

	For nativization, changing it so we key off of the target platform-info struct instead of the platform (in preparation for defining the nativized plugin's platform whitelist).

Change 3373320 on 2017/03/30 by mason.seay

	Basic for TM-Gameplay map (WIP)

Change 3373448 on 2017/03/30 by Ben.Zeigler

	Fix recursive size display in audit window
	Improve asset manager comments

Change 3373576 on 2017/03/30 by dan.reynolds

	AEOverview Update:

	Updated Passive Mix Modifier Test based on recent changes in behavior

	Also added Initial Delay Time timer to test

Change 3373589 on 2017/03/30 by dan.reynolds

	AEOverview Passive Mix Mod Test Map update

Change 3373624 on 2017/03/30 by Zak.Middleton

	#ue4 - Increase Pawn location replication precision to 2 decimal places from 0. Prevents replicated pawns from being inside geometry by a large amount. Removed CVars controlling CharacterMovement proxy shrink amount and made those instanced properties on the component.

	#jira UE-40420

Change 3374271 on 2017/03/31 by Marc.Audy

	Fix deprecation warning in new UT code

Change 3374320 on 2017/03/31 by Marc.Audy

	Fix HTML5 compile.

Change 3374413 on 2017/03/31 by Jeff.Farris

	Added ENGINE_API to 2 functions in PlanarReflection, so projects can subclass it.

	(Copied CL 3276454 from Robo Recall to Dev-Framework)

Change 3374414 on 2017/03/31 by Jeff.Farris

	Added support for setting UNavigationSystem::bUpdateNavOctreeOnComponentChange

	(Copied CL 3267903 from RoboRecall to Dev-Framework)

Change 3374616 on 2017/03/31 by Ben.Zeigler

	Copy of Fortnite CL #3312058 to add a missing redirector. I do not understand why this is not erroring on Main, I guess my minor cook changes somehow exposed this

Change 3374664 on 2017/03/31 by Jeff.Farris

	Consted AIController::GetBrainComponent()

	(Copied 3239101 from Robo Recall to Dev-Framework)

Change 3374665 on 2017/03/31 by Jeff.Farris

	PrimitiveComponent bIgnoreRadialImpulse and bIgnoreRadialForce are now exposed to BPs. bIgnoreRadialImpulse now respected when applying impulse to relevant movement components.

	(Coped CL 3242355 from Robo Recall to Dev-Framework)

Change 3374779 on 2017/03/31 by Jeff.Farris

	Exposed SetAllPhysicsAngularVelocity to blueprints

	(Copied CL 3228390 from Robo Recall to Dev-Framework)

Change 3374792 on 2017/03/31 by Ben.Zeigler

	#jira UE-42618
	PR #3347: Improve support for FGameplayAttributeData properties in attribute sets (Contributed by hoelzl)

Change 3374844 on 2017/03/31 by Ben.Zeigler

	#jira UE-42587 Fix issue where supressed gameplay effects that granted abilities would only work the first time, it now clears out of date ability handles

Change 3374925 on 2017/03/31 by Marc.Audy

	Don't throw warning about missing world context for inactive worlds.
	#jira UE-42679

Change 3374927 on 2017/03/31 by Michael.Noland

	Editor: Added options for configuring the editor window background color and texture, which can be useful to visually distinguish the editor when switching between different branches or projects

Change 3374995 on 2017/03/31 by Michael.Noland

	Editor: Rewrote CallInEditor support and promoted it so it can be used on functions in any class, not just blueprints derived from AActor:
	- CallInEditor used on native UFUNCTION() declarations will now show up without having to make a BP subclass
	- CallInEditor can now be used as a top-level keyword in the UFUNCTION() declaration (e.g., UFUNCTION(Category=CoolCommands, CallInEditor))
	- Now shows each function as a separate button, placed in the category associated with the function
	- The button strip entry is now searchable by function name or tooltip
	- Prevented operating on functions that have parameters or return values, which would crash before
	- Removed the duplicate copies of properties placed in the Blutility section
	- Added a scoped transaction around CallInEditor execution
	- Allowed functions to be marked as CallInEditor in addition to custom events (currently we don't allow editing category or tooltip on custom events...)

	Editor: Moved Experimental/EarlyAccessPreview details customizations up to UObject so it can be used on any class, not just actors/components

	Upgrade Note: Behavior has changed so that CallInEditor can be called on CDOs as well, this will probably be walked back in a subsequent update, at least for actors and components.

Change 3375005 on 2017/03/31 by Michael.Noland

	Fixing incremental compilation error due to missing include
	#rnx

Change 3375015 on 2017/03/31 by Michael.Noland

	Fixing incremental compilation error due to missing include (for real)
	#rnx

Change 3375045 on 2017/03/31 by Marc.Audy

	Only calculate the streaming levels prefix during seamless travel if it is a PIE world
	#jira UE-43485

Change 3375053 on 2017/03/31 by Ben.Zeigler

	#jira UE-41988 Fix it so leaving PIE while gameplay debugger is active will disable HUD extensions properly, restoring ability to print messages to screen

Change 3375057 on 2017/03/31 by Ben.Zeigler

	#jira UE-39226 Don't add to DrawDebug list for player controllers with no local player

Change 3375121 on 2017/03/31 by Michael.Noland

	Added missing include for FScopedTransaction
	#rnx

Change 3375222 on 2017/03/31 by mason.seay

	Submitting work done to TM-Gameplay.  Still WIP

Change 3375308 on 2017/03/31 by Michael.Noland

	Editor: Added back CDO filtering to CallInEditor, it's too easy to explode in the BP editor.  May consider allowing opt-in behavior when we revisit Blutilities

Change 3375321 on 2017/03/31 by Ben.Zeigler

	#jira UE-39062 Fix issue where using the level editor toolbar to modify blueprints was not properly marking the blueprints as modified, so the constructor links weren't being updated until manually compiling or resaving
	Always recompute post constructor links when calling MarkBlueprintAsModified, as it can be called from native and other places where we modified CDOs but don't have a property changed event

Change 3375372 on 2017/03/31 by Ben.Zeigler

	#jira UE-39568 Change Components to specifically update LatentActions the same as Actors do, so they update properly if bUpdateWhilePaused is set

Change 3375380 on 2017/03/31 by Marc.Audy

	Modify IsMainAudioDevice to deal with the case where no audio device has been created.

Change 3375402 on 2017/03/31 by Marc.Audy

	Fix DuplicateWorldForPIE in the case that the OwningWorld is null.

Change 3376037 on 2017/04/02 by Phillip.Kavan

	#jira UE-35332 - Preserve the least common ancestor pin type on object array function node inputs after a node refresh.

	Change summary:
	- Added UK2Node_CallArrayFunction::GetDynamicallyTypedPins() to consolidate the code that retrieves type-dependent parameter pins.
	- Added FBlueprintEditorUtils::FindLinkedPinWithAuthoritativePinType() to consolidate the code that considers other linked pins when choosing which type to propagate to type-dependent parameter pins.
	- Added FBlueprintEditorUtils::PropagatePinTypeInfo() to consolidate the common code from UK2Node_CallArrayFunction::PropagateArrayTypeInfo(); this eliminated a redundant retrieval of the target pin set.
	- Refactored UK2Node_CallArrayFunction::PropagateArrayTypeInfo() to now call FBlueprintEditorUtils::PropagatePinTypeInfo() after retrieving the set of dynamically-typed pins.
	- Refactored UK2Node_CallArrayFunction::NotifyPinConnectionListChanged() to remove some unnecessary iteration passes and to ensure that we propagate the authoritative (least common ancestor) pin type for object- and struct-based types.

Change 3376364 on 2017/04/03 by Richard.Hinckley

	UE-40920 Fix to Paper2D flipbook timeline editor. Previously, the timeline shown was one frame shorter than the animation. Now, the timeline shows the correct frame count.

Change 3376366 on 2017/04/03 by Richard.Hinckley

	UE-40920 Bugfix to Paper2D flipbook editor. The red line indicating the current frame now adjusts properly if the timeline is longer than the editor window and the scroll bar is moved to the right.

Change 3376517 on 2017/04/03 by Marc.Audy

	PR #3195: Added support for GamePad on RawInput Plugin (Contributed by katze7514)
	#jira UE-41499

Change 3376708 on 2017/04/03 by Mike.Beach

	Moving nativized plugins into a centralized folder (so we can use it as an additional plugin lookup dir) - this is so we can ultimately keep the generated code around for debugging purposes.

	Summary of changes:
	- nativized plugins now moved to ...\Intermediate\Plugins\<PLATFORM>\NativizedAssets
	- corresponding manifest files get saved inside the module and named to match the platform
	- nativized modules now whitelisted only for the platform they were generated for
	- cleanup on how we generate paths (now piping in platform name) and pass multi-cook process ids (for building manifest filenames)
	- extending the 'NativizeAssets' command line, so you can use it to specify the target plugin path (utilized by UAT to coordinate the plugin path between cook & build - was previously hardcoded in multiple places).

Change 3376826 on 2017/04/03 by Phillip.Kavan

	#jira UE-43330 - Fix a crash when adding an input parameter to a Custom Event node after deleting a Function Graph containing a Create Event node.

	Change summary:
	- Modified UK2Node_CreateDelegate::HandleAnyChangeWithoutNotifying() to check for a valid blueprint before accessing it (since the accessor is now a checked operation).
	- Modified UK2Node_CreateDelegate::GetScopeClass() to also check for a valid blueprint before accessing it.
	- Switched 'NULL' to 'nullptr' in a few spots.

Change 3376831 on 2017/04/03 by Ben.Zeigler

	#jira UE-43500, clean up UPackage when EDL/async loading fails. This restores EDL LoadPackage to work the same as non EDL and return NULL instead of an invalid empty package

Change 3376846 on 2017/04/03 by Ben.Zeigler

	#jira UE-38760 Properly refresh exec pins when removing pin from a Switch on Int node

Change 3376850 on 2017/04/03 by Dan.Oconnor

	Use authoritative class to mitigate compilation order issues

Change 3376961 on 2017/04/03 by Ben.Zeigler

	#jira UE-43127 Add struct ops implementations for FIntVector and FBox2d, any blueprint type needs struct ops to avoid crashes
	Fix Box2d variable name in NoExportTypes

Change 3376985 on 2017/04/03 by Ben.Zeigler

	#jira UE-43582 Remove Xbox-specific code from AssetRegistry because it won't work after my refactor. The serialization is much faster now and neither Bob nor I can conceive of a way this would take long enough to stall the main thread. If it it is somehow a problem, it should be wrapped in a slow task instead

Change 3377009 on 2017/04/03 by Ben.Zeigler

	#jira UE-43036 Fix crash when right clicking blueprint with no parent class. Ensures are fine but crashes should be avoided so people can try to copy data out of them

Change 3377054 on 2017/04/03 by Zak.Middleton

	#ue4 - Fix CharacterMovementComponent updated with very high delta time on server when initially joining. Make sure the ServerTimeStamp is initialized to current world time rather than zero to prevent large delta.

	#jira UE-40344
	#udn https://udn.unrealengine.com/questions/310497/large-delta-time-for-first-player-movement-update.html

Change 3377061 on 2017/04/03 by Dan.Oconnor

	Fixes for issues exposed by cooking with compilation manager. When cooking we end up with more blueprints compiling at a single time, which highlighted issues reading from generated classes while they were actively regenerating.

	Note that EInternalCompilerFlags::PostponeLocalsGenerationUntilPhaseTwo has only been added to mitigate risk - there is no known reason that existing compilation flows can't postpone generatation of local variables.

Change 3377073 on 2017/04/03 by Mike.Beach

	CIS fix - proper initialization ordering.

Change 3377371 on 2017/04/03 by Ben.Zeigler

	#jira UE-43144 Disallow creating map of FText, like bool it is not hashable

Change 3377395 on 2017/04/03 by Dan.Oconnor

	Build fix - make order in source match initialization order in artifact

Change 3377417 on 2017/04/03 by Dan.Oconnor

	Speculative SA fix

Change 3377496 on 2017/04/03 by Aaron.McLeran

	#jira UE-43558 Cleaning up shutdown code with audio plugins.

Change 3377608 on 2017/04/03 by Zak.Middleton

	#ue4 - Added function ACharacter::CacheInitialMeshOffset() to cache initial mesh offset, used as the target for network smoothing. Added a call to this function from BeginPlay() in addition to the existing call from PostInitializeComponents(), and exposed this to blueprints as well. This fixes the case of people moving the mesh in BeginPlay rather than in the editor or construction script and not having the mesh offset reflected correctly in network games.

	#jira UE-38966

Change 3377880 on 2017/04/03 by Aaron.McLeran

	Audio bug fixes

	#jira UE-43600  Fixing sounds played by playsoundatlocation for audio volume calculations
	#jira UE-43601 Fixing listener volume interpolation
	#jida UE-43602 Fixing reverb/eq interpolation

Change 3377908 on 2017/04/03 by Phillip.Kavan

	#jira UE-43565 - Fix a regression on type-dependent array function node pins that have more than one link.

	Change summary:
	- Added FBlueprintEditorUtils::FindLinkedPinWithMostDerivedPinType()
	- Modified FBlueprintEditorUtils::FindLinkedPinWithAuthoritativePinType() to properly handle pins that have multiple links.

Change 3377912 on 2017/04/03 by Dan.Oconnor

	Fix for missing SUBINSTANCE variables on anim BP skeletons. I elected to force SUBINSTANCE variable creation for the compilation manager codepath

Change 3377946 on 2017/04/03 by Ben.Zeigler

	#jira UE-43594 Fix issue with streamable manager where a failed load would leave bAsyncLoadRequestOutstanding, which would confuse later calls to stream the same asset
	Lower some error verbosity now that I believe I have tracked down the issue

Change 3377950 on 2017/04/03 by Michael.Noland

	Blueprints: Prevent merge tool from crashing in SVN when looking at a file with gaps in the revision history
	(May still not work correctly, but it won't crash; full fix covered by UE-43603)
	#jira UE-22428

Change 3377981 on 2017/04/03 by Michael.Noland

	PR #3416: UE-43005: Prevent crash due to too long name (Contributed by projectgheist)

	#jira UE-43291
	#jira UE-43005

Change 3378039 on 2017/04/04 by Michael.Noland

	PhysX: Allowed the editor to compile when bRuntimePhysicsCooking is disabled (WITH_EDITOR is used in every place in C++ to force it in already)

Change 3378041 on 2017/04/04 by Michael.Noland

	Paper2D: Adjusted under what circumstances CreatePhysicsMeshes is called on various Paper2D types to match UProceduralMeshComponent

Change 3378081 on 2017/04/04 by Dan.Oconnor

	Fix Blueprint Context nodes so that they don't rely on Ar.IsBeingSaved() call before compilation
	3x because of copy/paste

Change 3378094 on 2017/04/04 by Dan.Oconnor

	Add missing preload call for compilation manager

Change 3378917 on 2017/04/04 by Marc.Audy

	Fix static analysis (which is very dumb)

Change 3378986 on 2017/04/04 by Dan.Oconnor

	Fix bad merge

Change 3379100 on 2017/04/04 by Dan.Oconnor

	Fix missing CPF_ConstParm/CPF_ReferenceParm/CPF_OutParm logic in 'fast' skeleton path
	#jira UE-43629

Change 3379102 on 2017/04/04 by Ben.Zeigler

	Actually fix StreamableManager issues with cancelling a request messing up things in the future. We now always queue a request, even if it failed before or there is one in progress. This has to be done to avoid issues with cancelling the existing request or mounting new files after it's failed once
	Now that StreamableManager will retry missing files, add failed load packages to the known missing list so it won't spam errors over and over

Change 3379147 on 2017/04/04 by Zak.Middleton

	#ue4 - Improve on CL 3377608: Made Character::CacheInitialMeshOffset() take location and rotation params so you can be explicit on the values, in case you try to change these during network smoothing, where reading the relative offsets would have been skewed.

Change 3379254 on 2017/04/04 by Aaron.McLeran

	Fixing sounds in audio mixer when no EQ has been set.

Change 3379760 on 2017/04/04 by Ben.Zeigler

	#jira UE-43647 Don't delete failed async packages that are rooted

[CL 3380073 by Dan Oconnor in Main branch]
2017-04-04 20:49:52 -04:00
Jeff Wilson
63073963d6 Copying //UE4/Dev-Documentation to //UE4/Samples-Main (Source: //UE4/Dev-Documentation @ 3372893)
#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]
2017-03-30 16:24:56 -04:00
Ben Marsh
40fd45b376 Copying //UE4/Dev-Documentation to Samples-Main (//UE4/Samples-Main)
#rb none
#lockdown Nick.Penwarden

[CL 3239839 by Ben Marsh in Main branch]
2016-12-19 13:09:22 -05:00
Sungjin Hong
30e70c197a #loc UE4DocKor
[CL 3044219 by Sungjin Hong in Main branch]
2016-07-11 02:20:15 -04:00
Jeff Wilson
5850a98039 Initial merge of //depot/UE4/Engine/Documentation/... to //UE4/Main/Engine/Documentation/...
#rb none

[CL 3011129 by Jeff Wilson in Main branch]
2016-06-13 13:06:55 -04:00
Mi Wang
c7fbee083f # loc UE4DocCHN batch process for fix reference by copy all INT to CHN and mark those as not translated.
[CL 2615952 by Mi Wang in Main branch]
2015-07-09 18:48:16 -04:00
Sungjin Hong
ef5d8a687b #loc UE4DocKOR
[CL 2605488 by Sungjin Hong in Main branch]
2015-06-30 07:53:20 -04:00
Ian Shadden
6f45197bab #UE4 DOCS: Forced UTF8 without BOM onto any questionable docs. Unfortunately the script caught any doc without an additional blank line at the end, but it was still better than all 1800+ docs =)
[CL 2591123 by Ian Shadden in Main branch]
2015-06-17 18:53:23 -04:00
Michiru Niwa
617e8dfff4 Updated file against INT#2566630
[CL 2568250 by Michiru Niwa in Main branch]
2015-05-28 05:39:37 -04:00
Sungjin Hong
a045279294 #loc UE4DocKor
[CL 2568091 by Sungjin Hong in Main branch]
2015-05-28 02:30:59 -04:00
Marc.Audy
b26e1da165 [INTEGRATE] Change 2566527 by Marc.Audy@Marc.Audy_Z2487 on 2015/05/27 09:39:51
Add experimental/early access warning banner to details panel when an experimental component is selected
	#lockdown James.Golding

[CL 2566630 by Marc Audy in Main branch]
2015-05-27 10:43:20 -04:00
Kimio Yasuda
3512c67ab4 #loc UE4DocJpn Reflected changes against INTSourceChangelist:2438071
[CL 2498210 by Kimio Yasuda in Main branch]
2015-04-01 02:10:32 -04:00
Ben Marsh
49831a5631 Include documentation source in repository.
[CL 2489162 by Ben Marsh in Main branch]
2015-03-24 08:35:52 -04:00