2018-08-28 10:33:31 -04:00
INTSourceChangelist:4057278
2015-03-24 08:35:52 -04:00
Availability:Public
Title: 코딩 표준
Crumbs:%ROOT%, Programming, Programming\Development
Description:언리얼 엔진 4 코드베이스에 에픽게임스가 사용하는 표준과 규칙입니다.
2016-06-13 13:06:55 -04:00
Version: 4.11
2015-03-24 08:35:52 -04:00
[TOC(start:2)]
에픽에서 저희는 단순한 코딩 표준과 규칙이 몇가지 있습니다. 이 문서는 논의중이거나 작업중인 내용이라기 보다는, 현재 에픽에서 시행중인 코딩 표준 상태를 반영한 것입니다.
프로그래머들에게 있어서, 코딩 규칙은 매우 중요합니다. 그 이유 중의 몇 가지 는 다음과 같습니다:
* 하나의 소프트웨어가 그 수명을 지속하는 동안 들어가는 경비 가운데 80%는 유지 보수비입니다.
* 원저자가 그 소프트웨어의 수명이 다할 때까지 관리하는 일은 거의 없습니다.
2016-06-13 13:06:55 -04:00
* 코딩 규칙은 그 소프트웨어를 한층 읽기 쉽도록 해주므로, 엔지니어들은 새 코드를 보다 빨리 그리고 철저하게 이해할 수 있습니다.
2015-03-24 08:35:52 -04:00
* 만일 저희가 mod 커뮤니티 개발자들께 소스 코드를 공개하기로 결정한다면, 이해하기 쉬운 것이기를 바랍니다.
* 사실 이 규칙 가운데 상당수는 컴파일러간의 호환을 위해 필요한 것이기도 합니다.
2016-06-13 13:06:55 -04:00
아래 코딩 표준은 C++ 에 특화되어 있지만, 표준이라는 개념은 어떤 언어를 사용하든 상관없이 따르도록 하고 있습니다. 가급적 한 섹션에는 특정 언어에 대해 상응하는 규칙이나 예외가 제공될 수 있습니다.
2015-03-24 08:35:52 -04:00
## 클래스 체계
클래스 체계는 작성하는 사람 보다는 읽는 사람을 염두에 두고 체계를 잡아야 합니다. 읽는 사람 대부분은 클래스의 공용 인터페이스를 쓸 것이기에, public 을 먼저 선언하고, 그 후 클래스의 private 구현이 뒤따릅니다.
## 저작권 공지
에픽이 배포용으로 제공한 (`.h`, `.cpp`, `.xaml`, 등의) 소스 파일은 반드시 파일의 첫 줄에 저작권 공지를 포함시켜야 합니다. 공지의 포맷은 반드시 다음과 같아야 합니다:
2018-01-02 15:30:26 -05:00
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
2015-03-24 08:35:52 -04:00
이 줄이 없거나 포맷이 다르게 되어 있다면, CIS 가 오류를 내고 중단시킬 것입니다.
## 작명 규칙
* (유형이나 변수 등의) 이름 내 각 단어의 첫 글자는 대문자로 써야 하며, 단어 사이에 보통은 공백을 띄우지 않습니다. Health 와 UPrimitiveComponent 정도를 예로 들 수는 있지만, lastMouseCoordinates 나 delta_coordinates 같은 것은 아닙니다.
* 변수 이름과 구분하기 위해 유형 이름을 대문자 한 글자로 나타내는 접두사를 붙입니다. 예를 들어 FSkin 이 유형 이름이고, Skin 은 FSkin 의 인스턴스 입니다.
* 템플릿 클래스 접두사는 T 입니다.
* UObject 에서 상속하는 클래스 접두사는 U 입니다.
* AActor 에서 상속하는 클래스 접두사는 A 입니다.
* SWidget 에서 상속하는 클래스 접두사는 S 입니다.
* 추상 인터페이스인 클래스 접두사는 I 입니다.
2016-06-13 13:06:55 -04:00
* Enum (열거형)의 접두사는 E 입니다.
2019-01-31 15:30:04 -05:00
* Boolean (부울) 변수의 접두사는 b 입니다 (예: bPendingDestruction 또는 bHasFadedIn).
2015-03-24 08:35:52 -04:00
* 그 외 대부분 클래스의 접두사는 F 이나, 일부 서브시스템은 다른 글자를 사용하기도 합니다.
2016-06-13 13:06:55 -04:00
* Typedef 접두사는 적합한 유형을 붙여야 합니다: 구조체의 typedef 인 경우 F, UObject 등의 typedef 인 경우 U 입니다.
* 특정 템플릿 인스턴스의 typedef 는 더이상 템플릿이 아니라 그에 맞는 접두사를 붙여야 합니다, 예:
2016-12-19 13:09:22 -05:00
typedef TArray<FMyType> FArrayOfMyTypes;
2016-06-13 13:06:55 -04:00
* C# 에서는 접두사가 생략됩니다.
* UnrealHeaderTool (언리얼 헤더 툴)은 대부분의 경우 올바른 접두사가 필수이므로, 제대로 붙여주는 것이 중요합니다.
2015-03-24 08:35:52 -04:00
* 유형과 변수명은 명사입니다.
2018-08-28 10:33:31 -04:00
* 메서드 이름은 동사로 그 메서드가 하는 일이나, 하는 일이 딱히 없는 경우 반환값을 설명합니다.
2015-03-24 08:35:52 -04:00
2018-08-28 10:33:31 -04:00
변수, 메서드, 클래스 이름은 명확하고 애매하지 않으며 서술적이여야 합니다. 이름의 범위가 클 수록, 서술적인 좋은 이름의 중요성 역시 커집니다. 과도한 축약은 피하시기 바랍니다.
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
모든 변수는 변수에 대한 설명을 코멘트로 붙일 수 있도록 한 번에 하나씩만 선언해야 합니다. 이난 JavaDocs 스타일에서도 요구하는 바입니다. 변수 앞에 여러 줄짜리든 한 줄짜리든 코멘트를 남기면 되며, 변수 그룹 목적으로 빈 줄을 띄워도 됩니다.
2015-03-24 08:35:52 -04:00
2019-01-31 15:30:04 -05:00
모든 부울은 _True_ / _False_ 값을 묻습니다. 부울을 반환하는 함수도 모두 마찬가지입니다.
2015-03-24 08:35:52 -04:00
2019-01-31 15:30:04 -05:00
프로시져(반환값이 없는 함수)는 강한 동사 뒤에 오브젝트를 붙여 써야 합니다. 예외는 메서드의 오브젝트가 그 안에 있는 오브젝트일 때인데, 그런 경우 오브젝트는 컨텍스트에서 이해를 합니다. "Handle" 이나 "Process" 같은 것으로 시작하는 이름은 애매하니 피해 주시기 바랍니다.
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
필수는 아니지만, 함수 파라미터 중 레퍼런스로 전달된 이후 함수가 그 값에 출력할 것으로 기대되는 것의 경우 이름 앞에 "Out" 접두사를 붙일 것을 추천합니다. 그래야 이 인수로 전달되는 값은 함수가 대체시킬 것임이 명확해 집니다.
2019-01-31 15:30:04 -05:00
In 또는 Out 파라미터 역시 부울인 경우, In/Out 접두사 앞에 b 를 붙입니다, 예: bOutResult.
2015-03-24 08:35:52 -04:00
2019-01-31 15:30:04 -05:00
값을 반환하는 함수는 반환값에 대한 설명을 해야 합니다. 이름을 통해 함수가 반환하게 될 값을 명확히 알 수 있어야 하지요. 이는 부울 함수의 경우 특히나 중요합니다. 다음 두 예제 메서드를 살펴 봅시다:
2015-03-24 08:35:52 -04:00
2016-06-15 10:07:17 -04:00
bool CheckTea(FTea Tea) {...} // true 면 뭐라는 걸까요?
bool IsTeaFresh(FTea Tea) {...} // true 면 차가 신선하다는 것이 명확해집니다.
2015-03-24 08:35:52 -04:00
2016-06-15 10:07:17 -04:00
### 예제
2015-03-24 08:35:52 -04:00
float TeaWeight;
int32 TeaCount;
bool bDoesTeaStink;
FName TeaName;
FString TeaFriendlyName;
UClass* TeaClass;
USoundCue* TeaSound;
UTexture* TeaTexture;
2016-06-15 10:07:17 -04:00
## 기본 C++ 유형에 이식가능 앨리어스
2015-03-24 08:35:52 -04:00
2016-06-15 10:07:17 -04:00
* bool - boolean (bool 크기 추정 금지). BOOL 은 컴파일되지 않습니다.
2015-03-24 08:35:52 -04:00
* TCHAR - character (TCHAR 크기 추정 금지)
* uint8 - unsigned byte (1 바이트)
* int8 - signed byte (1 바이트)
* uint16 - unsigned "short" (2 바이트)
* int16 - signed "short" (2 바이트)
* uint32 - unsigned int (4 바이트)
* int32 - signed int (4 바이트)
* uint64 - unsigned "quad word" (8 바이트)
* int64 - signed "quad word" (8 바이트)
* float - single precision floating point (4 바이트)
* double - double precision floating point (8 바이트)
2016-06-15 10:07:17 -04:00
* PTRINT - 포인터를 가질 수 있는 integer (PTRINT 크기 추정 금지)
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
C+\+ 의 int 와 unsigned int 유형은 플랫폼에 따라 크기가 변할 수 있기에 정수 범위가 중요치 않은 경우라면 코드에서 사용해도 괜찮습니다. 명시적으로 크기가 정해진 유형은 여전히 시리얼라이즈 또는 리플리케이트된 포맷으로 사용해야 합니다.
2015-03-24 08:35:52 -04:00
## 코멘트
2016-06-15 10:07:17 -04:00
코멘트는 소통이고, 소통은 중요합니다. 코멘트에 대해 명심하실 점이 몇 가지 있습니다 (Kernighan & Pike 의 _The Practice of Programming_ 에서):
2015-03-24 08:35:52 -04:00
### 지침
* 자체적으로 설명이 되는 코드를 작성하세요:
// 나빠요:
2016-06-13 13:06:55 -04:00
t = s + l - b;
2015-03-24 08:35:52 -04:00
// 좋아요:
TotalLeaves = SmallLeaves + LargeLeaves - SmallAndLargeLeaves;
* 도움이 되는 코멘트를 작성하세요.
// 나빠요:
2016-06-13 13:06:55 -04:00
// Leaves 증가
2015-03-24 08:35:52 -04:00
++Leaves;
// 좋아요:
// 찻잎이 더 있다는 것을 알았습니다.
++Leaves;
* 나쁜 코드에 코멘트를 달지 마세요 - 그냥 다시 작성하세요:
// 나빠요:
// 잎의 총 갯수는
// 작은 잎과 큰 잎을 더한 것에서
// 둘 다인 것을 뺀 것입니다.
2016-06-13 13:06:55 -04:00
t = s + l - b;
2015-03-24 08:35:52 -04:00
// 좋아요:
TotalLeaves = SmallLeaves + LargeLeaves - SmallAndLargeLeaves;
* 코드를 모순되게 만들지 마세요:
// 나빠요:
2016-06-13 13:06:55 -04:00
// Leaves 절대 증가 아님!
2015-03-24 08:35:52 -04:00
++Leaves;
// 좋아요:
// 다른 잎이 있다는 것을 압니다.
++Leaves;
2016-06-13 13:06:55 -04:00
### Const 정확도
const 는 문서이자 컴파일러 지시자이기도 하므로, 모든 코드는 const 정확도를 맞추도록 해야 합니다.
2018-08-28 10:33:31 -04:00
여기에 포함되는 경우는, 함수 인수가 함수에 변경되지 않아 함수 인수를 const 포인터 또는 참조 전달하는 경우, 메서드가 오브젝트를 변경하지 않아 const 플래그를 붙이는 경우, 루프에서 컨테이너 자체에 대한 변경을 하지 않아 const 를 사용하여 컨테이너에 반복처리를 하는 경우가 포함됩니다.
2016-06-13 13:06:55 -04:00
void SomeMutatingOperation(FThing& OutResult, const TArray<int32>& InArray); // InArray 는 SomeMutatingOperation 에 의해 변경되지 않지만, OutResult 는 변경될 수도 있습니다.
void FThing::SomeNonMutatingOperation() const
{
// 이 코드는 자신을 부른 FThing 을 변경하지 않습니다.
}
TArray<FString> StringArray;
for (const FString& : StringArray)
{
// 이 루프의 바디는 StringArray 를 변경하지 않습니다.
}
const 는 값 전달 함수 파라미터와 로컬에 쓰기에도 좋습니다. 그러면 변수가 함수 바디에서 변경되지 않을 것이라고 알려주므로 가독성 향상에 도움이 됩니다. 이렇게 하면 선언과 정의부가 일치되는데, JavaDoc 프로세스에 영향을 줄 수 있습니다:
void AddSomeThings(const int32 Count);
void AddSomeThings(const int32 Count)
{
const int32 CountPlusOne = Count + 1;
// Count 도 CountPlusOne 도 함수 바디에서 변경 불가능합니다.
}
여기에 한 가지 예라면 값 전달 파라미터는 궁극적으로 컨테이너 속에 이동될텐데 ("이동 시맨틱" 참고), 드문 경우일 것입니다.
void FBlah::SetMemberArray(TArray<FString> InNewArray)
{
MemberArray = MoveTemp(InNewArray);
}
포인터(가 가리키는 것이 아닌) 자체를 const 로 만들 때는 끝에 cont 키워드를 넣으십시오. 레퍼런스는 어떻게든 '재할당' 불가능하며, 같은 방식으로 const 로 만들 수 없습니다:
// const 이외 오브젝트로의 const 포인터 - 포인터는 재할당 불가능하나, T 는 여전히 변경 가능합니다.
T* const Ptr = ...;
// 틀림
T& const Ref = ...;
2018-08-28 10:33:31 -04:00
반환형에는 const 를 사용하지 마십시오. 복잡한 유형에 대한 이동 시맨틱이 제한되며 내장된 유형에는 컴파일 경고가 나기 때문입니다. 이 규칙은 반환형 자체에만 적용되며, 반환되는 포인터 또는 레퍼런스 타깃 유형은 아닙니다.
2016-06-13 13:06:55 -04:00
// 나쁨 - const 배열 반환
const TArray<FString> GetSomeArray();
// 좋음 - const 배열로의 레퍼런스 반환
const TArray<FString>& GetSomeArray();
// 좋음 - const 배열로의 포인터 반환
const TArray<FString>* GetSomeArray();
// 나쁨 - const 배열로의 const 포인터 반환
const TArray<FString>* const GetSomeArray();
2015-03-24 08:35:52 -04:00
### 예제 포맷
저희는 JavaDoc 기반 시스템을 사용하여 코드에서 코멘트를 자동으로 추출한 뒤 문서를 만들기 때문에, 코멘트에는 따라야 하는 특수한 포맷 규칙이 몇 가지 있습니다.
2018-08-28 10:33:31 -04:00
다음 예제는 클래스, 스테이트, 메서드, 변수 코멘트의 포맷을 선보입니다. 기억하실 것은, 코멘트는 코드를 증강시켜야 합니다. 코드는 구현을 설명하고, 코멘트는 그 의도를 설명합니다. 코드 한 줄의 의도를 바꾸더라도 반드시 코멘트를 업데이트하시기 바랍니다.
2015-03-24 08:35:52 -04:00
2018-08-28 10:33:31 -04:00
참고로 지원되는 파라미터 코멘트 스타일은 두 가지로, Steep 와 Sweeten 메서드로 구체화되어 있습니다. Steep 이 사용하는 @param 스타일은 전형적인 스타일이지만, 단순 함수의 경우 파라미터 문서를 함수에 대한 설명 코멘트로 통합시키는 것이, Sweeten 예제에서 보듯이 더욱 깔끔할 수 있습니다.
2015-03-24 08:35:52 -04:00
2018-08-28 10:33:31 -04:00
메서드 코멘트는 딱 한번, 메서드가 공개적으로 선언되는 곳에 include 시켜야 합니다. 메서드 코멘트는 다른 호출자에게 관련이 있을 메서드 오버라이드 관련 정보를 포함해서, 메서드 호출자에 관련된 정보만을 담아야 합니다. 메서드 구현에 대한 세부사항이나 호출자에 관련이 없는 오버라이드는 메서드 구현 안에 코멘트를 달아야 할 것입니다.
2015-03-24 08:35:52 -04:00
class IDrinkable
{
public:
2016-06-13 13:06:55 -04:00
/**
2015-03-24 08:35:52 -04:00
* 플레이어가 이 오브젝트를 마실 때 호출.
* @param OutFocusMultiplier - 반환되면 마신 사람의 포커스에 적용할 배수가 들어갑니다.
* @param OutThirstQuenchingFraction - 반환되면 마신 사람의 갈증 해소 정도가 들어갑니다 (0-1).
*/
2016-06-13 13:06:55 -04:00
virtual void Drink(float& OutFocusMultiplier, float& OutThirstQuenchingFraction) = 0;
2015-03-24 08:35:52 -04:00
};
class FTea : public IDrinkable
{
public:
2016-06-13 13:06:55 -04:00
/**
2015-03-24 08:35:52 -04:00
* 우려내는 데 사용한 물의 용량과 온도가 주어진 경우 차에 대한 델타-테이스트 값을 계산합니다.
* @param VolumeOfWater - 우려내는 데 사용할 물의 양 mL 입니다.
* @param TemperatureOfWater - 물의 온도 켈빈입니다.
* @param OutNewPotency - 담그기 시작한 이후의 차의 효능으로, 0.97 에서 1.04 까지입니다.
* @return 차 강도의 변화를 분당 차 맛 단위(TTU) 로 반환합니다.
*/
float Steep(
2016-06-13 13:06:55 -04:00
const float VolumeOfWater,
const float TemperatureOfWater,
2015-03-24 08:35:52 -04:00
float& OutNewPotency
);
2016-06-13 13:06:55 -04:00
void Sweeten(const float EquivalentGramsOfSucrose);
2015-03-24 08:35:52 -04:00
float GetPrice() const
{
return Price;
}
2016-06-13 13:06:55 -04:00
virtual void Drink(float& OutFocusMultiplier, float& OutThirstQuenchingFraction) override;
2015-03-24 08:35:52 -04:00
private:
float Price;
float Sweetness;
};
2016-06-13 13:06:55 -04:00
float FTea::Steep(const float VolumeOfWater, const float TemperatureOfWater, float& OutNewPotency)
2015-03-24 08:35:52 -04:00
{
...
}
2016-06-13 13:06:55 -04:00
void FTea::Sweeten(const float EquivalentGramsOfSucrose)
2015-03-24 08:35:52 -04:00
{
...
}
2016-06-13 13:06:55 -04:00
void FTea::Drink(float& OutFocusMultiplier, float& OutThirstQuenchingFraction)
2015-03-24 08:35:52 -04:00
{
...
}
클래스 코멘트에 포함되는 것은?
* 이 클래스가 해결하는 문제에 대한 설명입니다. 왜 이 클래스를 생성했는가 겠죠?
2018-08-28 10:33:31 -04:00
그런 메서드 코멘트 부분이 뜻하는 바는?
2015-03-24 08:35:52 -04:00
* 함수의 목표가 첫 번째입니다. 여기서는 _이 함수가 해결하는 문제_ 를 설명합니다. 위에서 말씀드린 것처럼, 코멘트는 _의도_ 를 설명하며, 코드는 구현을 설명합니다.
* 그런 다음 파라미터 코멘트가 옵니다. 각 파라미터 코멘트에는 측량 단위, 예상되는 값 범위, "불가능한" 값, 상태/오류 코드의 의미가 포함되어야 합니다.
* 그런 다음 반환 코멘트가 옵니다. 출력 변수 설명과 마찬가지로 예상되는 반환값을 설명합니다.
2016-06-13 13:06:55 -04:00
## C++11 및 최신 언어 문법
2015-03-24 08:35:52 -04:00
언리얼 엔진은 다수의 C++ 컴파일러로 대규모 이식이 가능하도록 만들어 졌기에, 기능을 사용할 때는 지원하게 될 수도 있다고 생각되는 컴파일러와의 호환성을 신중히 따져 봅니다. 가끔은 매우 유용한 기능이라 매크로에 저장하여 많이 사용하는 경우도 있지만, 보통은 지원하게 될 거라 생각하는 모든 컴파일러가 최신의 표준을 지원할 때까지는 기다립니다.
2016-06-13 13:06:55 -04:00
범위 기반 for, 이동 시맨틱, 람다처럼 최신 컴파일러에서 잘 지원되는 것으로 보이는 C++ 11 언어 기능을 활용하고 있습니다. 어떤 경우에는 (컨테이너의 rvalue 레퍼런스같은) 전처리기 조건문에서 이러한 기능을 묶어 사용할 수 있도록 하고 있습니다. 그러나 새 플랫폼에서 문법을 소화시키지 못하여 혼란이 야기될 수 있는 기능에 대해서는, 확신이 들기 전까지 채택하지 않을 수 있습니다.
2015-03-24 08:35:52 -04:00
아래에 지원되는 최신 C++ 컴파일러 기능이라 명시한 것 이외의 컴파일러 전용 언어 기능에 대해서는, 전처리기 매크로나 조건문에 묶어두지 않고서야 사용을 삼가야 하며, 그랬다 해도 조심히 사용해야 합니다.
2016-06-13 13:06:55 -04:00
### static_assert
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
이 키워드는 컴파일 시간 어서트가 필요한 경우에 사용할 수 있습니다.
### override 와 final
이 키워드들은 사용할 수 있을 뿐 아니라, 강력히 권합니다. 이들이 빠진 곳이 많이 있을 수 있으나, 서서히 고쳐갈 것입니다.
### nullptr
모든 경우 C 스타일 NULL 매크로 대신 nullptr 을 사용해야 합니다.
2015-03-24 08:35:52 -04:00
2019-01-31 15:30:04 -05:00
이에 대한 한 가지 예외라면, C++/CX 빌드(예: Xbox One)의 nullptr 은 사실 매니지드 널 레퍼런스 유형입니다. 유형이나 어떤 템플릿 인스턴스화 컨텍스트를 제외하고는 네이티브 C++ 의 nullptr 과 거의 호환되므로, 호환성을 위해서는 좀 더 일반적인 decltype(nullptr) 대신 TYPE_OF_NULLPTR 매크로를 사용해야 합니다.
2015-03-24 08:35:52 -04:00
### 'auto' 키워드
2016-06-13 13:06:55 -04:00
아래 몇 가지 예외를 제외하고 C++ 에서 auto 를 사용해서는 안됩니다. 항상 초기화시키려는 유형은 명시해 줘야 합니다. 그 유형이 독자에게 명확히 보여야 한다는 뜻입니다. 이 규칙은 C# 의 var 키워드 사용에도 적용됩니다.
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
auto 를 사용해도 괜찮은 경우는?
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
* 변수에 람다를 바인딩해야 하는 경우, 람다 유형은 코드에 표현 가능하지 않습니다.
* 이터레이터 변수의 경우, 유형이 매우 장황하여 가독성에 악영향을 끼칠 수 있습니다.
* 템플릿 코드에서, 표현식의 유형을 쉽게 식별할 수 없는 경우입니다. 이는 고급에 해당하는 경우입니다.
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
코드를 읽는 사람이 유형을 명확하게 알 수 있어야 한다는 것은 매우 중요합니다. 일부 IDE 에서 유형을 추론할 수는 있지만, 이는 코드가 안정적인 상태라는 가정하에서입니다. GitHub 같은 곳에서 개별 소스 파일을 독립적으로 확인하거나, merge/diff 툴을 사용하는 사람에게도 도움이 되지 않습니다.
auto 를 사용해도 괜찮다고 확실히 알고 있는 경우, 항상 해당 유형에 const, &, * 를 정확히 사용해야 한다는 점 기억해 주시기 바랍니다. 그렇게 해야 auto 를 통해 추론 유형을 원하는 유형으로 이끌어낼 수 있을 것입니다.
2015-03-24 08:35:52 -04:00
### 범위 기반 For
2019-01-31 15:30:04 -05:00
(Range Based For) 코드의 가독성과 유지보수성 향상에 도움이 되므로 사용을 추천합니다. 이전 TMap 이터레이터를 사용하는 코드를 이주할 때는, 이전 이터레이터 유형 메서드였던 Key() 와 Value() 함수가 이제 단순히 내재된 키-값 TPair 의 Key 와 Value 칸이 되었음에 유의하세요:
2015-03-24 08:35:52 -04:00
TMap<FString, int32> MyMap;
// Old style
for (auto It = MyMap.CreateIterator(); It; ++It)
{
UE_LOG(LogCategory, Log, TEXT("Key: %s, Value: %d"), It.Key(), *It.Value());
}
// New style
2016-06-13 13:06:55 -04:00
for (TPair<FString, int32>& Kvp : MyMap)
2015-03-24 08:35:52 -04:00
{
UE_LOG(LogCategory, Log, TEXT("Key: %s, Value: %d"), Kvp.Key, *Kvp.Value);
}
몇몇 독립형 이터레이터 유형에 대해 범위로 대체한 것도 있습니다:
// Old style
for (TFieldIterator<UProperty> PropertyIt(InStruct, EFieldIteratorFlags::IncludeSuper); PropertyIt; ++PropertyIt)
{
UProperty* Property = *PropertyIt;
UE_LOG(LogCategory, Log, TEXT("Property name: %s"), *Property->GetName());
}
// New style
for (UProperty* Property : TFieldRange<UProperty>(InStruct, EFieldIteratorFlags::IncludeSuper))
{
UE_LOG(LogCategory, Log, TEXT("Property name: %s"), *Property->GetName());
}
### 람다 및 무명 함수
2016-06-13 13:06:55 -04:00
이제 람다(Lamda)는 모든 컴파일러에 사용할 수 있지만, 그 용법은 주의를 기울여야 합니다. 최적의 사용법은 길이상 두 구문 정도, 특히나 규모가 더 큰 표현식이나 구문의 일부로 사용될 때, 예를 들면 범용 알고리즘의 술부(predicates)에 사용될 때는 더욱 그러해야 합니다.
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
// 이름에 "Hello" 단어가 포함된 첫 번째 Thing 을 검색합니다.
2015-03-24 08:35:52 -04:00
Thing* HelloThing = ArrayOfThings.FindByPredicate([](const Thing& Th){ return Th.GetName().Contains(TEXT("Hello")); });
2016-06-13 13:06:55 -04:00
// 배열을 이름 역순 정렬합니다.
2015-03-24 08:35:52 -04:00
AnotherArray.Sort([](const Thing& Lhs, const Thing& Rhs){ return Lhs.GetName() > Rhs.GetName(); });
2016-06-13 13:06:55 -04:00
주의할 점이라면, 스테이트풀 람다는 많이 사용하는 경향이 있는 함수 포인터에 적용할 수 없습니다.
사소한 람다가 아니거나 익명 함수의 문서화는 일반 함수를 문서화할 때와 같은 방식으로 간주해서 해야 합니다. 코멘트를 붙일 때는 몇 줄에 걸쳐서 나눠 붙여줘도 되니 걱정하지 마십시오.
자동 캡처보다 수동 캡처가 선호됩니다 ([&] 와 [=]). 특히 커다란 람다와 유예식 실행이 그렇습니다. 실수로라도 잘못된 캡처 시맨틱으로 변수를 캡처하면 안좋은 결과가 날 수 있으며, 코드 유지보수 과정에서 생길 수 있는 일이니 주의해야 합니다:
2019-01-31 15:30:04 -05:00
* 포인터 참조 캡처와 값 캡처가 때때로 허상 참조를 유발할 수 있는데, 람다가 캡처된 변수의 컨텍스트 외부에서 실행된 경우 그렇습니다:
2016-06-13 13:06:55 -04:00
void Func()
{
int32 Value = GetSomeValue();
// 다량의 코드
AsyncTask([&]()
{
// 여기서는 값이 유효하지 않습니다.
for (int Index = 0; Index != Value; ++Index)
{
// ...
}
});
}
* 값 캡처는 불필요한 복사 작업때문에 퍼포먼스 우려가 있을 수 있습니다:
void Func()
{
int32 ValueToFind = GetValueToFind();
// ArrayOfThings 가 ValueToFind 만 캡처해야 함에도 [=] 로 잘못 캡처되어 람다가 ArrayOfThings 사본을 취합니다.
FThing* Found = ArrayOfThings.FindByPredicate(
[=](const FThing& Thing)
{
return Thing.Value == ValueToFind && Thing.Index < ArrayOfThings.Num();
}
);
}
* 잘못 캡처된 UObject 포인터는 가비지 콜렉터에 보이지 않습니다:
void Func(AActor* MyActor)
{
// MyActor 포인터 캡처가 그 오브젝트의 콜렉팅을 막지 않습니다.
AsyncTask([=]()
{
MyActor->DoSlowThing();
});
}
* 자동 캡처는 멤버 변수가 레퍼런싱된 경우, [=] 가 있다 하더라도 묵시적으로 항상 this 를 캡처합니다. [=] 는 람다에 멤버 변수가 없어도 별도의 사본이 있다는 인상을 줍니다:
void FStruct::Func()
{
int32 Local = 5;
Member = 5;
auto Lambda = [=]()
{
UE_LOG(LogTest, Log, TEXT("Local: %d, Member: %d"), Local, Member);
};
Local = 100;
Member = 100;
Lambda(); // Logs "Local: 5, Member: 100"
}
커다란 람다이거나 다른 함수 호출의 결과를 반환할 때는 명시적 반환형을 선호합니다. auto 키워드와 같은 방식으로 고려해야 합니다:
// 여기에 반환형이 없으면 불분명해집니다.
auto Lambda = []() -> FMyType
{
return SomeFunc();
};
자동 캡처와 묵시적 반환형은 Sort 호출처럼 시맨틱이 명확해서 명시해 줘도 과잉 친절일 뿐인 사소한 람다에는 사용이 가능합니다.
2015-03-24 08:35:52 -04:00
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
### 강 유형 Enum
2015-03-24 08:35:52 -04:00
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
Enum 클래스는 항상 일반 Enum 이든 UENUM 이든 구식 네임스페이스 Enum 을 대체하여 사용해야 합니다. 예:
2015-03-24 08:35:52 -04:00
// Old enum
UENUM()
namespace EThing
{
enum Type
{
Thing1,
Thing2
};
}
// New enum
UENUM()
enum class EThing : uint8
{
Thing1,
Thing2
};
Copying //UE4/Dev-Documentation to //UE4/Samples-Main (Source: //UE4/Dev-Documentation @ 3623665)
#lockdown Nick.Penwarden
============================
MAJOR FEATURES & CHANGES
============================
Change 3178213 by Tim.Hobson
#UE4 Docs: UEDOC-3973 - Corrected issues based on Peer Review Feedback.
Change 3318201 by Tim.Hobson
Submitted with folder in wrong location. Moved to HowTo section.
Change 3346002 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 3376692 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Moving Files up a section to Engine/Rendering/Materials/
Change 3378497 by Tim.Hobson
#UE4 Docs: UEDOC-4640 - Mesh Decals Reorganization
Change 3454533 by Jeff.Wilson
Added global OS toggle
Change 3488613 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482403
Change 3488693 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3487380
Change 3488695 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3487380
Change 3488700 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3488782 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3472589
Change 3488801 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3478445
Change 3488802 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3477566
Change 3488827 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3488837 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3488842 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3488845 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3488859 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3484673
Change 3489715 by Robert.Gervais
#jira UEDOC-4692
Publishing BP Maps and Sets documentation.
#UE4Doc
Change 3489752 by Jeff.Wilson
Fixing image file case issue
Change 3489755 by Jeff.Wilson
Fixed image not showing
Change 3489757 by Jeff.Wilson
Updated topic images for platforms
Change 3490313 by Wes.Bunn
#ue4 docs
Animation Montage section revamp
- Split existing Animation Montage page into 4 pages
- Overview page added
- Creation page added
- Editing Montages page added
- User Guide page added
- Landing page added with links to the 4 new pages.
Change 3490420 by Robert.Gervais
#jira UEDOC-5048
Made a minor grammar fix during Editorial Review process.
#UE4Doc
Change 3490604 by Robert.Gervais
#jira UEDOC-5103
Removing author's question (comment) from source.
#UE4Doc
Change 3490639 by Robert.Gervais
#jira UEDOC-5103
Flipping doc to 'Public'.
#UE4Doc
Change 3491065 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3491123 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3490639
Change 3491144 by Kimio.Yasuda
Updated File against INTSoruceChangelist:3482403
Change 3491155 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484673
Change 3491158 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484673
Change 3491161 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3489755
Change 3491287 by Masayo.Kondo
Fixed publish error, essentials list not shown
Change 3491299 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3491305 by Kimio.Yasuda
Updated File against INTSourceChangelist:3452211
Change 3491310 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491315 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491320 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491335 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491342 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491345 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491348 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491350 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491351 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491353 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3491358 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482332
Change 3491362 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482332
Change 3491363 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484673
Change 3491409 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482309
Change 3491415 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482294
Change 3491429 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482294
Change 3491682 by Wes.Bunn
#ue4 docs
apply editorial review feedback.
Change 3491704 by Wes.Bunn
#ue4 docs
additional updates based on editorial review feedback
Change 3491718 by Wes.Bunn
#ue4 docs
Added missing image and updated based on editorial review feedback.
Change 3492042 by Robert.Gervais
#jira UEDOC-5030
Applying minor edit.
#UE4Doc
Change 3492049 by Robert.Gervais
#jira UEDOC-4441
Adding Feature Highlight video, covering Blueprint Nativization, to documentation.
#UE4Doc
Change 3494250 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3494733 by Jeff.Wilson
Fixed typo
Change 3494771 by Wes.Bunn
#ue4 docs
Applying peer review feedback.
Change 3495719 by Mitchell.Wilson
Checking in 1 image for ReducePackageSize
#UE4 Docs
Change 3497877 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3472589
Change 3498163 by Wes.Bunn
#ue4 docs
applying peer review feedback
Change 3498439 by Wes.Bunn
#ue4 docs
Adding missing image.
Change 3500087 by Sungjin.Hong
#loc UE4DocKOR
Change 3500128 by Sungjin.Hong
#loc UE4DocKOR
Change 3500166 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3500224 by Sungjin.Hong
#loc UE4DocKOR
Change 3500287 by Sungjin.Hong
#loc UE4DocKOR
Change 3501272 by Jeff.Wilson
Fixed broken links
Change 3502096 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3498163
Change 3502127 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3498163
Change 3502137 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3498163
Change 3502150 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3498163
Change 3502159 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3498163
Change 3502168 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3494771
Change 3502187 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3492042
Change 3502190 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3491718
Change 3504279 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3501272
Change 3504288 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3484673
Change 3504965 by Jeff.Wilson
Updated topic images
Change 3505571 by Jeff.Wilson
Updated search boxes for new search engine
Change 3505632 by Wes.Bunn
#ue4 docs
Updating Pose Driver Documentation
- Split Anim Pose Nodes into two pages (Pose Blender and Pose Driver)
- Refactored both Pose Blender and Pose Driver pages.
- Updated AnimPose Page to include new Pose Blender and Pose Driver pages.
Change 3505698 by Richard.Hinckley
#jira UEDOC-5130
Updated based on SME feedback.
Change 3505757 by Wes.Bunn
#ue4 docs
Applying SME feedback, updated Create Animation description to reflect the inclusion of retargeting.
Change 3506226 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3506259 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3505632
Change 3506264 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3505632
Change 3506281 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3473488
Change 3506310 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3506350 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3469699
Change 3506370 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3505757
Change 3506478 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3505632
Change 3506499 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3505632
Change 3506584 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3507178 by Sam.Deiter
#UE4 Docs: Applying SME Feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3507208 by Sam.Deiter
#UE4 Docs: Applying SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3509002 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3509009 by Kimio.Yasuda
Updated file against INTSourceChangelist:3350329
Change 3509013 by Sungjin.Hong
#loc UE4DocKOR
Change 3509014 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3509081 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3487496
Change 3509107 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3471591
Change 3509115 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3471591
Change 3509126 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3509139 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3509142 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3509154 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429254
Change 3509156 by Kimio.Yasuda
Updated File against INTSourceChangelist:3508009
Change 3509177 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3509488 by Richard.Hinckley
Documentation says "texture streamer cannot automatically fit different memory budgets without the hassle of manual tweaks" - looks like this should say it "can" do that. Code reviewing you guys in case I'm wrong.
Change 3509572 by Wes.Bunn
#ue4 docs
Applying Peer Review feedback.
Change 3510083 by Wes.Bunn
#ue4 docs
Applying SME feedback.
Change 3510882 by Kimio.Yasuda
Updated File against INTSourceChangelist:3507178
Change 3510891 by Kimio.Yasuda
Updated File against INTSourceChangelist:3454520
Change 3510892 by Kimio.Yasuda
Fixed translation of description
Change 3510893 by Kimio.Yasuda
Fixed translation of description
Change 3510894 by Kimio.Yasuda
Fixed again (add period)
Change 3510905 by Kimio.Yasuda
Updated File against INTSourceChangelist:3429238
Change 3510908 by Kimio.Yasuda
Fixed again (add period)
Change 3510910 by Kimio.Yasuda
Fixed translation of title and description
Change 3510916 by Kimio.Yasuda
Fixed translation of title
Change 3510923 by Kimio.Yasuda
Updated File against INTSourceChangelist:3505571
Change 3511033 by Kimio.Yasuda
Updated File against INTSourceChangelist:3360829
Change 3511039 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482177
Change 3511044 by Kimio.Yasuda
Updated File against INTSourceChangelist:3477690
Change 3511084 by Kimio.Yasuda
Updated File against INTSourceChangelist:3473556
Change 3511096 by Kimio.Yasuda
Updated File against INTSourceChangelist:3360829
Change 3511100 by Kimio.Yasuda
Updated File against INTSourceChangelist:3360829
Change 3511115 by Kimio.Yasuda
Updated File against INTSourceChangelist:3350329
Change 3512321 by Robert.Gervais
#jira UEDOC-4461
Fixed broken link.
#UE4Doc
#code_review Sam.Deiter
Change 3512328 by Tim.Hobson
#UE4 Docs: UEDOC-4958 - Add Custom Stencil to Mobile Post Processing Effects page.
* Added Custom Stencil section
* Updated page metadata
* Adding usage of Custom Stencil to PostProcess Materials page
* Updating page metadata
* Updating images for Custom Depth as well.
* Added Editorial Review suggested edits.
Change 3512866 by Kimio.Yasuda
Updated File against INTSourceChangelist:3512328
Change 3512966 by Kimio.Yasuda
Updated File against INTSourceChangelist:3512321
Change 3513060 by Kimio.Yasuda
Updated File against INTSourceChangelist:3507208
Change 3513074 by Kimio.Yasuda
Updated File against INTSourceChangelist:3494733
Change 3513114 by Kimio.Yasuda
Updated File against INTSourceChangelist:3492049
Change 3513116 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3510083
Change 3513127 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3509572
Change 3513140 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3509572
Change 3513144 by Kimio.Yasuda
Updated File against INTSourceChangelist:3360829
Change 3513145 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3509488
Change 3513582 by Tim.Hobson
#UE4 Docs: UEDOC-4952 - Updating Mobile Rendeirng Previewer page.
* Updating Page metadata
* Reorganizing page to be easier to read.
* Adding new Mobile Preview Modes and removing outdated info
* Added section to show how to enable/disable exprimental/high-end targets
Change 3513619 by Tim.Hobson
#UE4 Docs: UEDOC-4858 and UEDOC-4951 - Renaming folders for NVIDIA sections.
Change 3513646 by Wes.Bunn
#ue4 docs
Sequencer Updates
- New How-to page for WhenFinished property
- Added section to Overview page for Hierarchical Bias explanation.
- Adjusted Overview page layout.
- Removed outdated Enabling Sequencer page since it is now out of experimental and enabled by default.
Change 3513740 by Tim.Hobson
#UE4 Docs: UEDOC-4853 and UEDOC-4946 - Renamed pages based on Editorial Review feedback.
Change 3513744 by Tim.Hobson
Rollback //UE4/Dev-Documentation/Engine/Documentation/Source/Engine/Rendering/Nvidia/Nvidia.INT.udn to revision 3
Change 3513963 by Tim.Hobson
#UE4 Docs: UEDOC-4946 and UEDOC-4853 - NVIDIA pages updates Aftermath and AFR
Change 3514120 by Wes.Bunn
#ue4 docs
Refactored page for Jira UEDOC-3221
Change 3514192 by Wes.Bunn
#ue4 docs
Applying mark ups to images for how-to guide.
Change 3514316 by Wes.Bunn
#ue4 docs
Applying Editorial Review feedback.
Change 3514489 by Robert.Gervais
#jira UEDOC-5175
Setting doc to 'Public'.
#UE4Doc
#code_review Wes.Bunn
Change 3514628 by Jeff.Wilson
Updated metadata
Change 3514777 by Tim.Hobson
#UE4 Docs: UEDOC-4957 - Mobile Previewer Editorial Review edits.
Change 3515326 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3515366 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3471995
Change 3515421 by Kimio.Yasuda
Updated File against INTSourceChangelist:3360829
Change 3515453 by Tianmin.Xie
#loc UE4DocCHN. do translation
Change 3515467 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3515480 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3513646
Change 3515481 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3513646
Change 3515492 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3513646
Change 3515493 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3514489
Change 3515494 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3514316
Change 3515503 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3515514 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3515526 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3481084
Change 3515542 by Kimio.Yasuda
Updated File against INTSourceChangelist:3514777
Change 3515558 by Kimio.Yasuda
Updated File against INTSourceChangelist:3484583
Change 3515571 by Kimio.Yasuda
Updated File against INTSourceChangelist:3484583
Change 3515575 by Kimio.Yasuda
Updated File against INTSourceChangelist:3483116
Change 3517038 by Robert.Gervais
#jira UEDOC-5361
Writing first draft of UE4 Brand Glossary.
#UE4Doc
Change 3517196 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3517457 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3517485 by Sungjin.Hong
#loc UE4DocKOR
Change 3517486 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3518154 by Richard.Hinckley
Minor adjustment to IWYU page, linking API docs since they tell users what to include for any given class.
Change 3519874 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3514120
Change 3519893 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT# INT#3517038
Change 3519902 by Sungjin.Hong
#loc UE4DocKOR
Change 3519919 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3519945 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3517038
Change 3520085 by Tim.Hobson
#UE4 Docs: UEDOC-4933 - Volumetric Fog Editorial Review edits.
Change 3520317 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520327 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520347 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520382 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482475
Change 3520390 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520392 by Kimio.Yasuda
Updated File against INTSourceChangelist:3517038
Change 3520409 by Kimio.Yasuda
Updated File against INTSourceChangelist:3514628
Change 3520418 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520420 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3517038
Change 3520423 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520428 by Kimio.Yasuda
Updatd File against INTSourceChangelist:3482332
Change 3520442 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520446 by Kimio.Yasuda
Updated File against INTSourceChangelist:3108692
Change 3520449 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520495 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520509 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520580 by Sungjin.Hong
#loc UE4DocKOR
Change 3520887 by Kimio.Yasuda
Updated File against INTSourceChecklist:3520085
Change 3520893 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520896 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520903 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520915 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520922 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3517038
Change 3520966 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3467293
Change 3520990 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3487496
Change 3520999 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3521021 by Kimio.Yasuda
Updated File against INTSourceChangelist:3518154
Change 3521235 by Sam.Deiter
#UE4 Docs: Making a few changes based on feedback form Rob.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3521730 by Robert.Gervais
#jira UEDOC-5305
Adding link to API Reference.
#UE4Doc
Change 3521824 by Sam.Deiter
#UE4 Docs: Was using the wrong format, changed to the right one.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3523701 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3469699
Change 3523722 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3452211
Change 3523743 by Kimio.Yasuda
Updated File against INTSourceChangelist:3487496
Change 3523784 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3523785 by Kimio.Yasuda
Updated File against INTSourceChangelist:3521235
Change 3523836 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3523845 by Kimio.Yasuda
Updated File against INTSourceChangelist:3521824
Change 3523879 by Kimio.Yasuda
Updated File against INTSourceChangelist:3521235
Change 3523894 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3426963
Change 3523910 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3521730
Change 3523916 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3523952 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3367474
Change 3523964 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3473462
Change 3523969 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3523984 by Kimio.Yasuda
Updated File against INTSourceChangelist:3514628
Change 3524197 by Wes.Bunn
#ue4 docs
Applying Peer Feedback
Change 3524216 by Wes.Bunn
#ue4 docs
Applying Peer Review feedback.
Change 3524231 by Richard.Hinckley
Removing CHM reference from API page.
Change 3524929 by Wes.Bunn
#ue4 docs
Applying Peer Review feedback.
Change 3525849 by Kimio.Yasuda
Updated File against INTSourceChangelist:3512328
Change 3525881 by Kimio.Yasuda
Updated File against INTSourceChangelist:3487496
Change 3525922 by Kimio.Yasuda
Updated File against INTSourceChangelist:3487496
Change 3525964 by Tianmin.Xie
#loc UE4DocCHN. update against latest INT version
Change 3528506 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528507 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528508 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528510 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528511 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528516 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528517 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528518 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528520 by Sungjin.Hong
#loc UE4DocKOR
Change 3528522 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528523 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528528 by Kimio.Yasuda
Udpated File against INTSourceChangelist:3489715
Change 3528529 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528530 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528532 by Kimio.Yasuda
Updated File agaisnt INTSourceChangelist:3489715
Change 3528534 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528535 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528541 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528543 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528546 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528550 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528554 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528555 by Kimio.Yasuda
Updated File against INTSourceChangelist:3489715
Change 3528558 by Kimio.Yasuda
Updated File against INTSourceChangelist:3482332
Change 3528974 by Sam.Deiter
#UE4 Docs: Adding in a few updates and fixing some spelling and grammer errors.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3528976 by Sam.Deiter
Adding this missing file.
Change 3530743 by Richard.Hinckley
Adding some fields to Properties page. Including some tags to make bitmask/bitfield enums easier to find.
Change 3531730 by Richard.Hinckley
#jira UEDOC-4554
Implementing editorial review comments.
Change 3531989 by Sam.Deiter
#UE4 Docs: Applying Editorial feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3531998 by Robert.Gervais
#jira UEDOC-4554
Applied bold text style to all key terms belonging to tables.
#UE4Doc
#code_review richard.hinckley
Change 3532405 by Robert.Gervais
#UE4Doc
Updating Engine Version
#code_review jeff.wilson
Change 3532595 by Kimio.Yasuda
Updated File against INTSourceChangelist:3528974
Change 3532731 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3524216
Change 3532735 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3524197
Change 3532745 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3524929
Change 3532750 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3524929
Change 3533383 by Richard.Hinckley
#jira UEDOC-5131
Updated in response to editorial review.
Change 3533392 by Jeff.Wilson
Set page to publish
Change 3534796 by Robert.Gervais
#jira UEDOC-4939
Moving to new scope per Editorial Review.
#UE4Doc
Change 3534801 by Robert.Gervais
#jira UEDOC-4939
Fixing Parent metadata.
#UE4Doc
Change 3534809 by Robert.Gervais
#jira UEDOC-4939
Fixed Parent Metadata in localized docs.
#UE4Doc
Change 3534891 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3533392
Change 3534895 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3533392
Change 3534899 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3533392
Change 3534903 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3533392
Change 3534906 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3537135 by Sungjin.Hong
correction for 4.16 - Window to Edit, Head Mount Display to Virtual Reality
Change 3537137 by Sungjin.Hong
#loc UE4DocKOR
Change 3537352 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3537359 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3537362 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3537534 by Sungjin.Hong
#loc UE4DocKOR
Change 3539678 by Tianmin.Xie
#loc UE4DocCHN. do translation.
Change 3540046 by Robert.Gervais
#jira UEDOC-4934
Setting documentation to 'Public'.
#UE4Doc
Change 3541529 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3531730
Change 3541692 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3533383
Change 3541720 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3543533 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3543535 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3543537 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3543716 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3531998
Change 3544224 by Sam.Deiter
re-naming this file to make it easier to know what it is.
Change 3544387 by Sam.Deiter
#UE4 Docs: First Check in for this doc
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3544397 by Robert.Gervais
#jira UEDOC-5254
Submitting first draft.
#UE4Doc
Change 3544575 by Sam.Deiter
#UE4 Docs: Applying SME Feedback
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3544589 by Jeff.Wilson
Updated metadata
Change 3545553 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3545593 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3530743
Change 3545845 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3545848 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3547788 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429264
Change 3547833 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3547843 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3547846 by Masayo.Kondo
INTSourceChangelist:3532405
Change 3547847 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3547858 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3548232 by Richard.Hinckley
#jira UEDOC-5217
Initial Asset Management document and related new/updated materials.
Change 3548353 by Tim.Hobson
#UE4 Docs: UEDOC-5073 - Slate Clipping System documentation
* Added Slate Clipping System doc for programming
* Added Clipping System Feature doc for UMG Designer.
Change 3548675 by Robert.Gervais
#jira UEDOC-3867
Added tag as part of Editorial Review.
#UE4Doc
Change 3550094 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544589
Change 3550236 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3485038
Change 3550817 by Tim.Hobson
#UE4 Docs: UEDOC-5086 - Adding Opacity/Opacity Mask for Material Flattening to the following pages for HLOD and Actor Merging.
Actor Merging Reference Page updates:
* Updating Page UI
* Removing parts referencing this feature as experimental as it no longer is.
* Broke up table into different sections with their own descriptions and added missing table information.
* Updated and added images for the 'Actor Merging Workflow' section and moved to the bottom of the reference page.
HLOD Reference page udates:
* Updated images to reflect latest UI additions.
* Added new changes to the section tables.
Change 3552394 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544589
Change 3552524 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544589
Change 3552532 by Kimio.Yasuda
Updated File against INTSourceChangelist:3151855
Change 3552667 by Sungjin.Hong
#loc UE4DocKOR
Change 3554961 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544387
Change 3554968 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544387
Change 3554970 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3548353
Change 3555015 by Sungjin.Hong
#loc UE4DocKOR
Change 3555683 by Sam.Deiter
Chaning the titles so they are not the same.
Change 3555716 by Sam.Deiter
Hand to change the" to " as the current ones would not publish.
Change 3556577 by Sam.Deiter
#UE4 Docs: Chris B pointed out a small issue in the Google VR QS that could result in people not getting their project to work.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3556634 by Tim.Hobson
#UE4 Docs: fixing NVIDIA captialization
Change 3556651 by Tim.Hobson
#UE4 Docs - fixed NVIDIA captilization for NVIDIA Aftermath page.
Change 3560592 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3548232
Change 3560640 by Kimio.Yasuda
Updated File against INTSourceChangelist:3544397
Change 3560709 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3548232
Change 3561534 by Tim.Hobson
#UE4 Docs: UEDOC-5090 - Editorial Review edits for Opacity and Opacity Masks for Material Flattening.
Change 3563711 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3561534
Change 3564038 by Richard.Hinckley
#jira UEDOC-5218
Implemented peer review suggestions.
Change 3565221 by Robert.Gervais
#jira UEDOC-5463
Adding relevant page links and applying basis S&S best practices to these documents.
#UE4Doc
Change 3565273 by Chase.McAllister
#UE Docs: Applying some grammar and typo fixes to StereoLayers page
Change 3565868 by Sungjin.Hong
#loc UE4DocKOR
Change 3566803 by Richard.Hinckley
#jira UEDOC-5220
SME review fixes.
Change 3567151 by Richard.Hinckley
#jira UEDOC-5075
Peer review suggestions.
Change 3567323 by Sam.Deiter
#UE4 Docs: aPPLYING PEER FEEDBACK.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3568376 by Sam.Deiter
#UE4 Docs: Applying Editorial feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3568433 by Sam.Deiter
#UE4 Docs:Applying SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3568601 by Sam.Deiter
#UE4 Docs: Changing the liminations section to Feature Limitations
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3568702 by Chase.McAllister
#UE Docs: Grammatical fixes for ShaderInPlugins docs
Change 3568890 by Mitchell.Wilson
Initial check in of 4.17 Release Notes.
Change 3569033 by Tim.Hobson
#UE4 Docs: UEDOC-4970 - Updating Mobile Performance with new optimizations in Project Settings.
* Added necessary images and recaptured others for Mobile Project Settings section
* Updated page metadata
* Restructured and rewrote parts of the page to update it to latest S&S guidelines.
Change 3569052 by Chase.McAllister
#UE Docs: UEDOC-5076 - Typo fixes to ClippingSystem Docs
Change 3569253 by Jeff.Wilson
Formatting updates
Change 3570173 by Jeff.Wilson
Updated public docs
-4.17 release notes update
Change 3570322 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3570398 by Sungjin.Hong
#loc UE4DocKOR
Change 3570570 by Mitchell.Wilson
Fixed a few typos.
Change 3571140 by Tim.Hobson
#UE4 Docs: UEDOC-4975 - Mobile Performance Editorial Review edits.
Change 3571159 by Robert.Gervais
#UE4Doc
Updating related pages.
#code_review jeff.wilson
Change 3573283 by Tim.Hobson
#UE4 Docs: UEDOC-5397 - Clothing Tool updates for 4.17
* Updated the Overview Page
* Added a Landing Page for Clothing
* Added a Property and Tool Reference Page
* Added link to reference page on Physics Landing page
Change 3574383 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3561534
Change 3574393 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3569052
Change 3574395 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3573283
Change 3574458 by Kimio.Yasuda
Updated File against INTSourceChangelist:3569151
Change 3574459 by Kimio.Yasuda
Updated File against INTSourceChangelist:3569151
Change 3574461 by Kimio.Yasuda
Updated File against INTSourceChangelist:3569151
Change 3574584 by Sungjin.Hong
#loc UE4DocKOR
Change 3574716 by Wes.Bunn
#UE4 Docs
#Jira UEDOC-5355
Animation Optimization documentation
- omitted URO documentation as 4.18 is slated for improvements.
- already reviewed by ThomasS
Change 3574744 by Wes.Bunn
#ue4 docs
Applying Editoral Review feedback.
Change 3574749 by Wes.Bunn
#ue4 docs
Applying Editoral Review feedback.
Change 3575019 by Wes.Bunn
#UE4 Docs
Applying Editorial Review feedback
Change 3575037 by Wes.Bunn
#ue4 docs
Applying Editorial Review feedback
Change 3575635 by Tim.Hobson
#UE4 Docs: UEDOC-5399 - Clothing Tool Peer Review edits
Change 3575783 by Chase.McAllister
#UE4DOC #jira UEDOC-5400 - Fixing Typos in ClothOverview
Change 3575912 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3575939 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3576254 by Sungjin.Hong
#loc UE4DocKOR
Change 3576470 by Tim.Hobson
#UE4 Docs: UEDOC-5401 - Clothing Tool 4.17 updates SME review edits
Change 3576482 by Jeff.Wilson
updating DB file
Change 3576484 by Jeff.Wilson
Minor updates
Change 3576492 by Jeff.Wilson
Initial draft of Composure Quick Start
Change 3576958 by Mitchell.Wilson
Updating Unreal Engine logo on Introduction to C++ Programming in UE4 doc.
#UEDoc
Change 3577867 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3578075 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3578289 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3575037
Change 3578362 by Sungjin.Hong
#loc UE4DocKOR
Change 3578363 by Tianmin.Xie
#loc UE4DocCHN. do translation.
Change 3579093 by Sam.Deiter
#UE4 Docs:Applying SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3579346 by Tim.Hobson
#UE4 Docs: Fixing NVIDIA capitalization issues on the NVIDIA Ansel documentation pages
Change 3579707 by Kimio.Yasuda
Updated File against INTSourceChangelist:3567323
Change 3579843 by Kimio.Yasuda
Updated File against INTSourceChangelist:3565221
Change 3579859 by Kimio.Yasuda
Updated File against INTSourceChangelist:3565221
Change 3579873 by Kimio.Yasuda
Updated File against INTSourceChangelist:3565221
Change 3579918 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3574716
Change 3579929 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3579346
Change 3579934 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3579346
Change 3579937 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3579346
Change 3579942 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3579346
Change 3579946 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3579346
Change 3579953 by Kimio.Yasuda
Updated File against INTSourceChangelist:3556651
Change 3580568 by Sam.Deiter
#UE4 Docs: First Composure doc check in.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3580600 by Sam.Deiter
#UE4 Docs:Apply editoral feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3580774 by Sam.Deiter
#UE4 Docs:Applying more peer feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3580824 by Sam.Deiter
#UE4 Docs:Applying Editorial feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3580887 by Sam.Deiter
#UE4 Docs:Applying Editoral feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3581141 by Mitchell.Wilson
Adding mac version of ProjectHierarchy screenshot to Glossary_P
#UEDoc
Change 3581822 by Tianmin.Xie
#loc UE4DocCHN moved or deleted
Change 3581871 by Sungjin.Hong
#loc UE4DocKOR
Change 3583752 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3583774 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3583828 by Kimio.Yasuda
Updated File against INTSourceChangelist:3576484
Change 3583988 by Tianmin.Xie
#loc UE4DocCHN. do translation.
Change 3584026 by Sungjin.Hong
#loc UE4DocKOR
Change 3584118 by Wes.Bunn
#ue4 docs
Applying peer review feedback.
Change 3587160 by Robert.Gervais
#jira UEDOC-5496
Updating documentation at Team Online's request.
#UE4Doc
#code_review Chase.McCallister
Change 3587264 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587278 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#:3580568
Change 3587304 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587361 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587396 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587410 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587414 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587425 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587477 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587481 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3580568
Change 3587505 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3587509 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3587510 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3587512 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3587513 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3532405
Change 3587524 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3584118
Change 3587527 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3575019
Change 3587531 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3574749
Change 3587677 by Sam.Deiter
#UE4 Docs: Applying Peer Feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3587824 by Sam.Deiter
#UE4 Docs: Applying SME feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3588288 by Richard.Hinckley
#jira UEDOC-5221
Implemented editorial review feedback.
Change 3589912 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3587677
Change 3589916 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3587677
Change 3589918 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3587677
Change 3589921 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3587677
Change 3589924 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3587677
Change 3589927 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3587677
Change 3589979 by Sungjin.Hong
#loc UE4DocKOR
Change 3590068 by Sam.Deiter
#UE4 Docs:Applying Editorial feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3590438 by Tim.Hobson
#UE4 Docs: UEDOC-5397 - Clothing Tool updates for 4.17 Editorial review edits.
Change 3590614 by Sam.Deiter
#UE4 Docs: Fixing code comments.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3591289 by Richard.Hinckley
Fixed a minor error in Replay documentation.
Change 3592139 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3591289
Change 3592181 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3588288
Change 3592207 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3588288
Change 3592290 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3588288
Change 3592538 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3590438
Change 3593326 by Jeff.Wilson
Set page to publish
Change 3593328 by Jeff.Wilson
Added link to Precomputed Lighting Scenarios
Change 3593759 by Robert.Gervais
#jira UEDOC-5496
Adding Linux section to the OS specific file descriptions.
#UE4Doc
Change 3594921 by Zak.Parrish
#UEDOC Fixing UEDOC-5526, which illustrates how little I knew about the engine back in April of 2013.
Removing section on permanent socket attachment and drag/drop, which isn't reliable and doesn't work on sockets.
Change 3595864 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3594921
Change 3595974 by Kimio.Yasuda
Updated File against INTSourceChangelist:3593326
Change 3595984 by Kimio.Yasuda
Fixed translation
Change 3595996 by Kimio.Yasuda
Fixed tag error
Change 3595997 by Kimio.Yasuda
Updated File against INTSourceChangelist:3593328
Change 3596043 by Kimio.Yasuda
Updated File against INTSourceChangelist:3590614
Change 3596065 by Kimio.Yasuda
Updated File against INTSourceChangelist:3587824
Change 3596097 by Kimio.Yasuda
Updated File against INTSourceChangelist:3584409
Change 3596109 by Kimio.Yasuda
Updated File against INTSourceChangelist:3580887
Change 3596116 by Kimio.Yasuda
Updated File against INTSourceChangelist:3580824
Change 3596189 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3590438
Change 3596201 by Masayo.Kondo
Fixed translation
Change 3596774 by Tianmin.Xie
#loc UE4DocCHN. minor improvement for auto-key in Chinese
Change 3596779 by Robert.Gervais
#jira UEDOC-5496
Updated a section title to express its intent a bit more clearly.
#UE4Doc
Change 3599439 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3599465 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3599541 by Kimio.Yasuda
Updated File against INTSourceChangelist:3580774
Change 3599723 by Sungjin.Hong
#loc UE4DocKOR
Change 3600018 by Richard.Hinckley
#jira UE-47646
Documentation update for Timers.
Change 3600078 by Sam.Deiter
Fixing a small typo in step 7 with the name of the FBX file.
Change 3600525 by Richard.Hinckley
#jira UE-47646
Added a related page and some helpful links.
Change 3601417 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601469 by Kimio.Yasuda
Updated File against INTSourceChangelist:3599948
Change 3601483 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601486 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601502 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601518 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601531 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601540 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601560 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3601599 by Kimio.Yasuda
Updated file against INTSourceChangelist:3571159
Change 3602897 by Sam.Deiter
Checking in my changes.
Change 3602938 by Wes.Bunn
#ue4 docs
applying editorial review feedback.
Change 3603049 by Wes.Bunn
#ue4 docs
applying sme review feedback.
Change 3603366 by Tim.Hobson
#UE4 Docs: UEDOC-5013 - Color Grading improvements
* Updating the Post Process Effects for Mobile page which includes numerous image updates and reworking of the properties table to reflect latest changes.
* Updating the Post Process: Color Grading page to reflect latest changes, new images, and reworking the LUT Creation section into something better.
Change 3603669 by Robert.Gervais
Replacing Unicode character with ANSI character.
#UE4Doc
Change 3604326 by Mitchell.Wilson
Adding r.Mobile.DisableVertexFog=False to multiple projects to enable Vertex Fog on mobile to resolve warnings.
Saving default spawn location in SunTemple.
#jira UE-48713
Change 3604419 by Tim.Hobson
#UE4 Docs: Clarifying phrasing of a sentence based on feedback from our EGK team.
Change 3606232 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3602938
Change 3606246 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3603049
Change 3606254 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3603049
Change 3606274 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606291 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606327 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606328 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606363 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606380 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606384 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606390 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3599948
Change 3606391 by Sungjin.Hong
#loc UE4DocKor
Change 3606398 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606415 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606445 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606448 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606482 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606485 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3606552 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3454520
Change 3608492 by Richard.Hinckley
#jira UEDOC-4474
Implemented editorial reviews.
Change 3609596 by Sungjin.Hong
#loc UE4DocKor
Change 3609599 by Sungjin.Hong
#loc UE4DocKor
Change 3610206 by Richard.Hinckley
#jira UEDOC-5474
Updated Plugins document with some new fields that have appeared in .uplugin files.
Change 3610971 by Mitchell.Wilson
Removing destructibles content and levels from Content Examples.
Disabling Apex Destruction plugin in Content Examples project.
Fixing any levels that utilized destructibles content.
#jira UE-48843
Change 3611013 by Tim.Hobson
#UE4 Docs: UEDOC-5077 - Clipping System updates for 4.17 SME Review edits.
* Clarified one section
* Updated image
Change 3611047 by Mitchell.Wilson
Setting T_TD_FlameTower_E2 texture compression quality to highest.
#jira UE-34882
Change 3611622 by Sungjin.Hong
#loc UE4DocKOR
Change 3612088 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3611013
Change 3612112 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3608492
Change 3612127 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3606403
Change 3612139 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3606403
Change 3612169 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3599948
Change 3612206 by Tianmin.Xie
#loc UE4DocCHN. do translation.
Change 3612432 by Mitchell.Wilson
Replacing deprecated BP node in BP_Bomb
#jira UE-48898
Change 3612551 by Tim.Hobson
#UE4 Docs: UEDOC-5078 - UMG Clipping Updates -
* Fixed the UMG User Guide page to now use directory listing vs topic image links.
* Updated Metadata for all pages under Engine/UMG/UserGuide.
Change 3614123 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3612551
Change 3614127 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614132 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614134 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614140 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614142 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614146 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3612551
Change 3614149 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614151 by Kimio.Yasuda
Updated file against INTSourceChangelist:3603669
Change 3614152 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614154 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3612551
Change 3614157 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614160 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614163 by Kimio.Yasuda
Updated file agasint INTSourceChangelist:3602897
Change 3614164 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614168 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3614183 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3614188 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3614192 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3614208 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3614457 by Tianmin.Xie
#loc UE4DocCHN. do translation.
Change 3614682 by Jeff.Wilson
Added missing topic image
Change 3614688 by Mitchell.Wilson
Adding missing Mac and Windows images for StaticMeshes and ContentBrowser pages.
#UEDoc
Change 3614707 by Tim.Hobson
#UE4 Docs: Pivot Painter doc: Fixed a bad related page link.
Change 3615003 by Wes.Bunn
#ue4 docs
Initial doc for Anim Modifiers
Change 3615724 by Wes.Bunn
#ue4 docs
Added Marker Based Syncing to Sync Group page.
Change 3615845 by Wes.Bunn
#ue4 docs
Applying SME feedback.
Change 3616100 by Wes.Bunn
#ue4 docs
Applying Editorial Review feedback.
Change 3616216 by Wes.Bunn
#ue4 docs
Applying Editorial Review feedback.
Change 3616274 by Robert.Gervais
#jira UEDOC-5555
Added note according to SME's feedback.
#UE4Doc
Change 3616288 by Wes.Bunn
#ue4 docs
Applying Editorial Review feedback.
Change 3616389 by Tim.Hobson
#UE4 Docs: UEDOC-5018 - Color Grading Editorial Review
* Cleaned up the page a little bit.
* Moved Lookup Tables (LUTs) into its own page since it was cluttering up the Color Grading/Tonemapper page.
Change 3617131 by Kimio.Yasuda
#loc UE4DocJPN moved or deleted
Change 3617142 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3614707
Change 3617147 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3614688
Change 3617153 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3481084
Change 3617155 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3429240
Change 3617191 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3615003
Change 3617196 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3612551
Change 3617213 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3616288
Change 3617218 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3616216
Change 3617266 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#:3615724
Change 3617302 by Kimio.Yasuda
Updated file against INTSourceChangelist:3596779
Change 3617398 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3615003
Change 3617476 by Kimio.Yasuda
Updated file against INTSourceChangelist:3616389
Change 3617957 by Tim.Hobson
#UE4 Docs: UEDOC-5018 - Color Grading and Using LUTs page Editorial Review edits.
Change 3618359 by Tim.Hobson
#UE4 Docs: UEDOC-5078 - Clipping System Editorial Review edits.
- grammatical fixes
- updated image
- clarified some sections to flow better.
Change 3618434 by Sam.Deiter
Removing these images as this is not something you can do any more.
Change 3618473 by Sam.Deiter
Removing this as it is not needed.
Change 3618474 by Sam.Deiter
Removing this as it is not needed.
Change 3618677 by Sam.Deiter
#UE4 Docs: Removing this as the user no longer needs to set this up.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3619133 by Kimio.Yasuda
Updated file against INTSourceChangelist:3616274
Change 3619194 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3618359
Change 3620333 by Tim.Hobson
#UE4 Docs: UEDOC-4647 - Virtual Bones Editorial Review edits.
Change 3620832 by Wes.Bunn
#ue4 docs
Updates made to Overview and Reference pages:
- Updated images/videos for both page.
- Updated content to include new features.
Change 3621748 by Masayo.Kondo
#loc UE4DocJpn File updated against INT#3620832
Change 3621931 by Sungjin.Hong
#loc UE4DocKor
Change 3622284 by Sam.Deiter
#UE4 Docs: Applying peer feedback and a new page referance page.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson
Change 3622466 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this page to cover all Motion Controller's UE4 supports.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622471 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the information in this page to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622501 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - New landing page for desktop VR experiances.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622503 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - New landing page for mobiel VR experiances.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622507 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate -Updating the information in this doc to be inline with UE4.17. Also applied peer review feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622510 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new page about picking up and dropping items with Motion Controllers.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622529 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the information in this document to be inline with UE4.17.
Note that while this file is called VRCameraRefactor inside the document, it is called Attaching Items To the HMD as that is more inline with what this feature is for.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622536 by Wes.Bunn
#ue4 docs
Refactored Animation Blending page to Blending Animations & Properties
- All content / images updated.
Change 3622554 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updated the links on this pag to point to the desktop and mobile VR landing pages.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622561 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the information in this page to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622563 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the information in this page to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622565 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - This is a new Landing Page for the Gear VR How - To section.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622571 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding new Gear VR How - To for setting up Cameras.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622576 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding a new page for using the Gear VR HMD touchpad.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622577 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding new Gear VR topic images.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622582 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding a new page for using the Gear VR controller touch pad.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622587 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding a new page for How to use the Gear VR MC touch pad buttons.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622590 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding a new page that shows how to setup a MC for Gear VR.
Note that this page might be removed in the future.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622591 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updated this page so that the information is inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622592 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updateing the information in this doument to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622814 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this page with the new pages created from the update to this section.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622815 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new document for Google VR.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622817 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this document to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622818 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new document.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622819 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622820 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the sectoin images.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622821 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622822 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622823 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622825 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Checking in the new How To section for Google VR.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622826 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Checking in changes to the Google VR Quick Start.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622828 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the Google VR Landing page with new doc page.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622829 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this document to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622830 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622831 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622832 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622834 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding these new topic images.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622836 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622841 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this doucment and applying peer review feedback.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622842 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622848 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating the landing page with the new document links.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622850 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding these new topic iamges.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622854 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this section to match the other ones with the same name.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622856 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this information in this document to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622857 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this Quick Start to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622862 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new page
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622864 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this page with to point to the new VR pages.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622866 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this page to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622867 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622869 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622871 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622872 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To landing page.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622874 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this image to use the new Vive HMD.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622877 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new document.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622878 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new document.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622880 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this Quick Start to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622881 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new page.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622883 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this landing page to point to the new SteamVR doc pages.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622884 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new document.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622887 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Updating this Quick Start to be inline with UE4.17.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622896 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding this new How To
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622908 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding these missing files to the Oculus section.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622909 by Sam.Deiter
#UE4 Docs: VR-Re Org Upate - Adding these missing SteamVR images.
#Code_Review wes.bunn, chase.mcallister, robert.gervais, tim.hobson, jeff.wilson
Change 3622913 by Sam.Deiter
Adding these missing files.
[CL 3623763 by Jeff Wilson in Main branch]
2017-09-01 21:02:49 -04:00
이들은 uint8 기반인 한 UPROPERTY 로 지원되기도 하며, 구형 `TEnumAsByte<>` 우회법을 대체합니다:
2015-03-24 08:35:52 -04:00
// Old property
UPROPERTY()
TEnumAsByte<EThing::Type> MyProperty;
// New property
UPROPERTY()
EThing MyProperty;
플래그로 사용되는 Enum 클래스는 새로운 ENUM_CLASS_FLAGS(EnumType) 매크로를 사용하여 비트단위 연산자 전부를 자동 정의합니다:
enum class EFlags
{
2016-06-13 13:06:55 -04:00
None = 0x00,
2015-03-24 08:35:52 -04:00
Flag1 = 0x01,
Flag2 = 0x02,
Flag3 = 0x04
};
ENUM_CLASS_FLAGS(EFlags)
2019-01-31 15:30:04 -05:00
여기에 한 가지 예외라면, 'truth' 컨텍스트에서 플래그를 사용하는 것인데, 이는 언어상의 한계입니다. 그 대신, 모든 플래그 Enum 에 비교용으로 0 설정된 None Enum 을 넣도록 합니다:
2015-03-24 08:35:52 -04:00
// Old
if (Flags & EFlags::Flag1)
// New
2016-06-13 13:06:55 -04:00
if ((Flags & EFlags::Flag1) != EFlags::None)
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
### 이동 시맨틱
2015-03-24 08:35:52 -04:00
모든 주요 컨테이너 유형, TArray, TMap, TSet, FString 에는 move 생성자와 move 할당 연산자가 있습니다. 이러한 유형의 값을 전달/반환할 때 종종 자동으로 사용되지만, std::move 의 UE4 해당 버전인 MoveTemp 를 통해 명시적으로 실행 가능합니다.
값으로 컨테이너나 스트링을 반환하는 것은, 보통 임시로 복사하는 비용 없어 표현성에 이득이 될 수 있습니다. 값 전달 관련 규칙 및 MoveTemp 사용법은 아직도 확립중이지만, 최적화된 코드베이스 영역 일부에서는 이미 찾아볼 수 있습니다.
2018-08-28 10:33:31 -04:00
### 디폴트 멤버 이니셜라이저
디폴트 멤버 이니셜라이저는 클래스 자체 내 클래스 기본 값을 정의하는 데 사용할 수 있습니다:
UCLASS()
class UTeaOptions : public UObject
{
GENERATED_BODY()
public:
UPROPERTY()
int32 MaximumNumberOfCupsPerDay = 10;
UPROPERTY()
float CupWidth = 11.5f;
UPROPERTY()
FString TeaType = TEXT("Earl Grey");
UPROPERTY()
EDrinkingStyle DrinkingStyle = EDrinkingStyle::PinkyExtended;
};
코드를 이런 식으로 작성했을 때의 장점은 다음과 같습니다:
* 여러 생성자에 걸쳐 이니셜라이저를 복제할 필요가 없습니다.
* 초기화 순서와 선언 순서가 섞일 일이 없습니다.
* 멤버 유형, 프로퍼티 플래그, 기본 값이 모두 한 곳에 있어, 가독성과 유지보수성에 좋습니다.
하지만 단점도 있습니다:
* 기본 값을 변경하면 모든 종속 파일을 리빌드해야 합니다.
* 헤더는 엔진 패치 릴리즈에서 변경할 수 없으므로, 가능한 픽스 종류가 제한될 수 있습니다.
* 이런 방식으로 모든 것을 초기화시킬 수는 없습니다. 예로 베이스 클래스, UObject 서브오브젝트, 앞서 선언한(forward-declared) 유형으로의 포인터, 컨스트럭터 인수에서 추론해 낸 값, 여러 단계에 걸쳐 초기화된 멤버 등입니다.
* 헤더에 이니셜라이저를 조금 두고, 나머지는 .cpp 파일의 생성자에 두게 되면 가독성과 유지보수성에 좋지 않을 수 있습니다.
실제 사용할지 여부는 적절한 판단에 맡길 부분입니다. 경험적으로, 디폴트 멤버 이니셜라이저는 엔진 코드보다 게임 코드 쪽에 적합합니다. 기본 값에 환경설정 파일을 사용하는 것도 고려해 보세요.
2015-03-24 08:35:52 -04:00
## 써드 파티 코드
2016-06-13 13:06:55 -04:00
엔진에서 사용하는 라이브러리에 코드를 수정할 때마다, 변경내용에 //@UE4 코멘트는 물론 왜 변경했는지에 대한 설명이 되는 태그를 꼭 달아주세요. 그래야 그 라이브러리의 새 버전으로 변경내용을 병합하는 작업이 쉽게 이루어지며, 라이선시 역시 우리가 가한 수정 내용을 쉽게 찾을 수 있습니다.
2015-03-24 08:35:52 -04:00
그리고 엔진에 포함되는 써드 파티 코드는 쉽게 검색되는 포맷의 코멘트로 마킹해야 합니다. 예:
// @third party code - BEGIN PhysX
#include <PhysX.h>
// @third party code - END PhysX
// @third party code - BEGIN MSDN SetThreadName
// [http://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx]
// Used to set the thread name in the debugger
...
//@third party code - END MSDN SetThreadName
## 코드 포맷
### 대괄호 { }
대괄호 전쟁은 신물이 날 정도입니다. 때문에 에픽에서는 새 줄에 괄호를 넣는 것이 오래된 관행처럼 이어져 오고 있으니, 가급적 준수하여 주시기 바랍니다.
2016-06-13 13:06:55 -04:00
단일 문장 블록도 항상 대괄호를 포함시켜 주세요, 예:
2015-03-24 08:35:52 -04:00
2016-06-13 13:06:55 -04:00
if (bThing)
{
return;
}
### If - Else
2015-03-24 08:35:52 -04:00
if-else 문의 각 실행 블록은 대괄호로 묶어야 합니다. 이는 편집상의 실수를 방지하기 위함으로, 대괄호를 사용하지 않은 경우 다른 사람이 의도치 않게 if 블록에다 다른 줄을 추가하게 될 수가 있습니다. if 문의 영향을 받지 말아야 할 줄이라면 안좋은 일이겠지요. 더욱 안좋은 예라면 조건에 따라 컴파일되는 항목이 if/else 문을 깨지게 만드는 것입니다. 그러니 항상 대괄호로 묶어 주시기 바랍니다.
2016-06-13 13:06:55 -04:00
if (HaveUnrealLicense)
2015-03-24 08:35:52 -04:00
{
InsertYourGameHere();
}
else
{
CallMarkRein();
}
여러 갈래 if 문에서 각각의 else if 문은 첫 번째 if 문과 같은 양만큼 들여써 줘야 합니다. 그래야 읽는 사람이 구조를 쉽게 이해할 수 있습니다:
2016-06-13 13:06:55 -04:00
if (TannicAcid < 10)
2015-03-24 08:35:52 -04:00
{
2016-06-13 13:06:55 -04:00
UE_LOG(LogCategory, Log, TEXT("Low Acid"));
2015-03-24 08:35:52 -04:00
}
2016-06-13 13:06:55 -04:00
else if (TannicAcid < 100)
2015-03-24 08:35:52 -04:00
{
2016-06-13 13:06:55 -04:00
UE_LOG(LogCategory, Log, TEXT("Medium Acid"));
2015-03-24 08:35:52 -04:00
}
else
{
2016-06-13 13:06:55 -04:00
UE_LOG(LogCategory, Log, TEXT("High Acid"));
2015-03-24 08:35:52 -04:00
}
### 탭
* 실행 블록별로 코드를 들여쓰세요.
* 줄 시작부분의 공백은 스페이스가 아니라 탭을 사용해 주시구요. 그래도 탭을 스페이스 몇 칸으로 지정했는지와 무관하게 코드 줄을 맞추기 위해 스페이스를 써야 할 때가 있습니다. 이를테면 탭 이외의 캐릭터에 코드 줄을 맞출 필요가 있을 때겠지요.
* C# 으로 코드를 작성하신다면 공백이 아니라 탭을 사용해 주시기 바랍니다. C# / C++ 사이의 전환은 프로그래머에게 자주 있는 일이고, 대부분은 그 탭 설정에 일관성이 있기 때문입니다. Visual Studio 기본값으로는 C# 파일에 공백을 사용하고 있으니, 언리얼 엔진 코드 작업을 할 때는 이 세팅을 바꿔줘야 한다는 점 기억해 주시기 바랍니다.
### Switch 문
빈 case 를 제외하고 (똑같은 코드를 갖는 다중 케이스의 경우), switch case 문에서는 다음 케이스로 넘어가는지를 명시적으로 밝혀줘야 합니다. 각각의 경우마다 break 를 넣던가, fall through 코멘트를 달아 주세요. 다른 코드 제어-이동 명령(return, continue 등)도 괜찮습니다.
default 케이스는 항상 만들어 두시고, 다른 사람이 그 디폴트 뒤에 새로운 케이스를 추가할 때에 대비해 break 도 넣어 두시기 바랍니다.
switch (condition)
{
case 1:
...
// falls through
case 2:
...
break;
case 3:
...
return;
case 4:
case 5:
...
break;
default:
break;
}
## 네임스페이스
네임스페이스(Namespace)는 아래 규칙만 준수한다면 클래스, 함수, 변수의 체계를 적절히 잡는 데 사용할 수 있습니다.
* 언리얼 코드는 현재 글로벌 네임스페이스에 쌓여있지 않습니다. 전영 범위에서의 충돌을, 특히나 써드 파티 코드를 끌어들일 때는 주의를 기울여야 합니다.
* 전역 범위에는 "using" 선언을, .cpp 파일에서도 넣지 마시기 바랍니다 ("unity" 빌드 시스템에 문제가 생깁니다).
* 다른 네임스페이스 안이나 함수 본문 안에서는 "using" 선언을 넣어도 괜찮습니다.
* 참고로 네임스페이스 안에서 "using" 을 사용한다면, 동일 이동 단위 내의 또다른 해당 네임스페이스로 이어지게 됩니다. 일관되기만 하다면야 괜찮기는 합니다.
* 위의 규칙을 따른다면 헤더 파일에서만은 안전히 "using" 을 사용할 수 있습니다.
* 참고로 앞서 선언된 형은 각각의 네임스페이스 안에서 선언해 줘야 하며, 그렇지 않으면 링크 오류가 납니다.
* 한 네임스페이스 안에 다수의 클래스/유형을 선언하면, 다른 전역 범위의 클래스에서 사용하기가 어려워 집니다 (이를테면 함수 시그너처는 클래스 선언에 나타날 때 명시적 네임스페이스를 사용해야 합니다).
2018-08-28 10:33:31 -04:00
* (using Foo:FBar 과 같이) "using" 을 사용해서 네임스페이스 안의 특정 변수만 자신의 범위로 에일리어싱할 수도 있습니다만, 언리얼 코드에서는 보통 그렇게 하지 않습니다.
2016-06-13 13:06:55 -04:00
* 언리얼 헤더 툴에는 네임스페이스가 지원되지 않으므로, UCLASS, USTRUCT 등을 정의할 때는 사용할 수 없습니다.
2015-03-24 08:35:52 -04:00
## 물리적 종속성
* 파일 이름은 가급적 접두사를 붙이지 않는 것이 좋습니다. 예를 들면 UnScene.cpp 보다는 Scene.cpp 가 좋습니다. 그래야 Workspace Whiz 나 Visual Assist 같은 툴에서 Open File in Solution 같은 기능을 사용할 때, 원하는 파일을 명확히 구분해 내는 데 필요한 글자수를 줄이는 등 사용하기가 용이해 집니다.
* 모든 헤더는 #pragma once 디렉티브(지시자)로 복수의 include 를 방지해야 합니다. 참고로 요즘 사용하는 모든 컴파일러는 #pragma once 를 지원합니다.
#pragma once
<파일 내용물>
* 일반적으로는 물리적 결합을 최소화시켜 보세요.
** 헤더 include 대신 앞선 선언이 가능하면, 그리 하세요.
** 가급적이면 세세한 부분을 include 하세요. Core.h 를 include 하지 마시고, Core 의 헤더 중 정의가 필요한 특정 부분을 include 시키세요.
* 세세한 include 작업을 쉽게 하기 위해, 필요한 헤더는 전부 직접 include 해 주세요.
** 자신이 include 시킨 다른 헤더를 간접적으로 include 시키는 헤더에 의존하지 마세요.
** 다른 헤더를 통해 include 시키는 것 보다는, 필요한 것을 전부 include 하세요.
2018-08-28 10:33:31 -04:00
* 모듈에는 Private 와 Public 소스 디렉터리가 있습니다. 다른 모듈이 필요로 하는 정의는 Public 디렉터리의 헤더에 있어야 하나, 그 외 모든 것은 Private 디렉터리에 있어야 할 것입니다. 참고로 구형 언리얼 모듈의 경우 이 디렉터리는 Src 와 Inc 로 불리기도 하는데, 이름만 그렇다 뿐 같은 방식으로 프라이빗 코드와 퍼블릭 코드를 구분하기 위함일 뿐이지, 헤더 파일을 소스 파일과 구분하기 위함은 아닙니다.
2015-03-24 08:35:52 -04:00
* 미리컴파일된 헤더 생성용 헤더 셋업에 대해서는 걱정하지 마세요. UnrealBuildTool 이 더욱 잘 처리해 줄 것입니다.
2016-06-13 13:06:55 -04:00
* 큰 함수는 논리적 하위 함수로 나눕니다. 컴파일러 최적화 중 한 분야가 공통 하위 표현식 삭제인데, 함수가 클 수록 그 식별을 위해 컴파일러가 할 일이 많아지므로, 빌드 시간이 크게 늘어나게 됩니다.
* 인라인 함수는 분별있게 사용해야 하는데, 사용하지 않는 파일에 있어도 강제로 리빌드시키기 때문입니다. 인라인은 사소한 접근자에만, 또는 프로파일링을 통해 이득이 있는 것으로 보일때만 써야 합니다.
* FORCEINLINE 사용에 있어서는 조금 더 보수적이어야 합니다. 모든 코드와 로컬 변수는 호출하는 함수로 확장되어, 큰 함수에서 발생하는 것과 동일한 빌드 시간 문제가 생깁니다.
## 캡슐화
보호 키워드로 캡슐화 시키세요. 클래스 멤버는 클래스의 public/protected 인터페이스 일부가 아닌 다음에야 거의 항상 private 으로 선언해야 합니다. 상황에 따라 판단을 잘 하시되, 접근자가 없으면 나중에 기존 프로젝트와 플러그인 해체 없이 리팩터링 작업을 하는 것이 힘들어 진다는 점 염두에 둬 주시기 바랍니다.
특정 칸은 파생 클래스에서만 사용하도록 의도된 경우, private 로 만들어 보호된 접근자를 제공해 주시기 바랍니다.
더이상 파생시킬 클래스가 아닌 경우 final 을 사용하세요.
2015-03-24 08:35:52 -04:00
## 일반적인 스타일 문제
* *종속성 거리를 최소화하세요*. 코드가 특정 값을 갖는 변수에 의존할 때는, 변수를 사용하기 직전에 그 값을 설정해 보도록 하세요. 실행 블록 상단에 변수 값을 초기설정해 둔 상태로 코드 수백 줄 동안 사용하지 않는다면, 그 종속성을 모르는 사람이 그 값을 바꾸게 될 여지가 많이 있습니다. 바로 다음 줄에 사용한다면 변수 초기설정을 왜 그렇게 했는지, 어디서 사용되는지를 명확히 알 수 있는 것입니다.
2018-08-28 10:33:31 -04:00
* *메서드는 가급적 서브-메서드로 분할하세요*. 인간은 세밀한 부분부터 시작해서 큰 그림을 재구성하기 보다는, 큰 그림을 먼저 그린 후 흥미를 끄는 세밀한 부분으로 파내려가는 것을 더 잘합니다. 마찬가지로, 모든 코드가 통째로 들어있는 메서드 보다는, 이름을 잘 지어둔 다수의 서브-메서드를 연속적으로 호출하는 단순한 메서드를 이해하기가 수월합니다.
2015-03-24 08:35:52 -04:00
* 함수 선언이나 함수 호출 위치에서 함수의 이름과 인수 목록에 선행되는 괄호 사이에 공백을 두지 마세요.
* *컴파일러 경고에 주의를 기울여 주세요.* 컴파일러 경고 메시지는 무언가 잘못되었다는 것을 뜻합니다. 컴파일러의 고민에 귀를 기울여 주세요. 전혀 그럴 수가 없다면 #pragma 를 억제시키면 되긴 하는데, 이는 최후의 방법입니다.
* *파일 끝에 빈 줄을 하나 놔두세요.* 모든 .cpp 와 .h 파일은 빈 줄이 있어야 gcc 에 제대로 돌아갑니다.
* *절대 float 가 int32 로 묵시적 변환되도록 하지 마세요.* 연산이 느릴 뿐만 아니라 모든 컴파일러에서 컴파일되지도 않습니다. 그 대신 항상 appTrunc() 함수를 사용하여 int32 로 변환하세요. 여러 컴파일러에 대한 호환성이 높아질 뿐만 아니라 더 빠른 코드가 생성됩니다.
2018-08-28 10:33:31 -04:00
* Interface (접두사 "I") 클래스는 항상 추상(abstract) 상태여야 하며 멤버 변수를 가져서는 안됩니다. Interface 는 순수 가상이 아닌 메서드, 심지어 가상이 아니거나 스태틱인 메서드도 내부적으로(inline) 구현하지 않는 한 포함시킬 수 있습니다.
2015-03-24 08:35:52 -04:00
* *디버그 코드는 유용하며 잘 다듬어진 상태거나, 체크인을 하지 않거나 중 하나여야 합니다.* 디버그 코드가 다른 코드와 섞이면 다른 코드 읽기가 훨씬 힘들어 집니다.
2016-06-13 13:06:55 -04:00
* 스트링 리터럴 주변에는 항상 TEXT() 매크로를 사용하세요. 그러지 않으면, 코드가 리터럴에서 FString 을 생성하는 경우 원치 않는 스트링 변환 프로세스가 유발됩니다.
* 루프에서의 동일 작업 반복을 피하세요. 공통된 하위 표현식은 루프에서 끌어올려 중복 계산을 피합니다. 어떤 경우에는 statics 를 활용하여 전역 범위에서의 함수 호출을 대상으로 하는 중복 작업을 피할 수 있는데, 스트링 리터럴에서의 FName 생성같은 경우를 예로 들 수 있습니다.
* 핫 리로드 기능을 염두에 두세요. 종족성을 최소화시켜 반복처리 시간을 줄입니다. 리로드 동안에 변할 확률이 있는 함수에는 인라인 또는 템플릿을 사용하지 마세요. 리로드 동안 그대로 남아있을 듯한 것에만 statics 를 사용하시기 바랍니다.
2015-03-24 08:35:52 -04:00
* *복잡한 표현식은 중간 변수를 사용하여 단순화시키세요.* 복잡한 표현식을, 부모 표현식 내에서 그 의미가 잘 설명되도록 이름지은 작은 표현식들을 가진 중간 변수에 할당된 하위 표현식으로 나눌 수 있다면, 이해하기가 수월해질 것입니다. 예를 들어:
if ((Blah->BlahP->WindowExists->Etc && Stuff) &&
!(bPlayerExists && bGameStarted && bPlayerStillHasPawn &&
IsTuesday())))
{
DoSomething();
}
_이런 코드는 다음으로 갈음합니다:_
const bool bIsLegalWindow = Blah->BlahP->WindowExists->Etc && Stuff;
const bool bIsPlayerDead = bPlayerExists && bGameStarted && bPlayerStillHasPawn && IsTuesday();
2016-06-13 13:06:55 -04:00
if (bIsLegalWindow && !bIsPlayerDead)
2015-03-24 08:35:52 -04:00
{
DoSomething();
}
2018-08-28 10:33:31 -04:00
* *오버라이딩 메서드 선언시에는 virtual 과 override 키워드를 사용하세요.* 부모 클래스의 가상 함수를 덮어쓰는 파생 클래스에서 가상 함수를 선언할 때는, *반드시* virtual 과 override 키워드를 둘 다 사용해야 합니다. 예:
2015-03-24 08:35:52 -04:00
class A
{
public:
virtual void F() {}
};
class B : public A
{
public:
virtual void F() override;
};
참고로 override 키워드는 최근에 추가된 관계로 이를 지키지 않은 코드가 많이 있는데, 편할 때 그런 코드에다 이 override 키워드를 추가해야 주면 좋을 것입니다.
* *포인터와 레퍼런스의 공백은 그 오른쪽에 딱 한 칸만 둬야 합니다.* 그래야 특정 유형에 대한 모든 포인터나 레퍼런스를 빠르게 Find in Files 할 수 있습니다.
이렇게 사용하시되:
FShaderType* Type
이렇게는 안됩니다:
FShaderType *Type
2016-06-13 13:06:55 -04:00
FShaderType * Type
Copying //UE4/Dev-Documentation to //UE4/Samples-Main (Source: //UE4/Dev-Documentation @ 4091886)
#lockdown Nick.Penwarden
#rb none
============================
MAJOR FEATURES & CHANGES
============================
Change 3725068 by Kimio.Yasuda
Fixed typo
Change 3809004 by Tim.Hobson
mesh Distance Field missing updates for cms copy.
Change 3809144 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3809151 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809156 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809164 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717114
Change 3809166 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809213 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717114
Change 3809217 by Kimio.Yasuda
Updated fie against INTSourceChangelist:3782314
Change 3809225 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809238 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809243 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809247 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151855
Change 3809606 by Jeff.Wilson
More fixes for migration
Change 3809611 by Jeff.Wilson
Fixed incorrect syntax
Change 3809644 by Jeff.Wilson
Adding XML templates
Change 3811009 by Kimio.Yasuda
Updated file against INTSourceChangelist:3718347
Change 3811010 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811011 by Kimio.Yasuda
Error fixed (column alignment error)
Change 3811015 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811017 by Kimio.Yasuda
Fixed image missing error (by updating DoNet)
Change 3811026 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811032 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811043 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3811054 by Kimio.Yasuda
Updated file against INTSourceChangelist:3726228
Change 3811063 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811070 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3811079 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3811080 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3811083 by Kimio.Yasuda
Updated file against INTSourceChangelist:3735117
Change 3811090 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3811092 by Kimio.Yasuda
Fixed error
Change 3811098 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3811099 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3811101 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3811150 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3811151 by Yang.Zhang
#loc UE4DocCHN moved or deleted
Change 3811152 by Masayo.Kondo
#loc UE4DocJpn File updated against 3782314
Change 3811157 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3811160 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3811161 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3811164 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812250 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812252 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812256 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3812258 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812262 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812265 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812268 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812270 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812276 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812280 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812281 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812289 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812296 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812306 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812309 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3812326 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3812498 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3678273
Change 3813612 by Kimio.Yasuda
Minor translation change
Change 3813654 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813663 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813668 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813686 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813687 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3813711 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813725 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813730 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813732 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813734 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813737 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813740 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813741 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813742 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813748 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3813800 by Sungjin.Hong
#loc UE4DocKOR
Change 3814338 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814339 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3814340 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3814342 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814354 by Masayo.Kondo
INTSourceChangelist:3810557
Change 3814355 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814356 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814357 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814359 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814776 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3801260
Change 3814780 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3801260
Change 3814784 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814786 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814787 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814789 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814790 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814792 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814794 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814798 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814799 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814801 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814808 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814814 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814815 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814817 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814821 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814823 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814824 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814825 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3814828 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3814832 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3814833 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3814834 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3814840 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3814843 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3814844 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3814845 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814940 by Masayo.Kondo
#loc UE4DocJpn File updated against INT# INTSourceChangelist:3782314
Change 3814941 by Masayo.Kondo
#loc UE4DocJpn File updated against INT# INTSourceChangelist:3782314
Change 3814942 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3814943 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3814944 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3814945 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815773 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815774 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815776 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815779 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815780 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815785 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815791 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815793 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3815796 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3806721
Change 3815797 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3804170
Change 3815799 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3815801 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3815803 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3815808 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3815814 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3815815 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3815816 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3815818 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3801260
Change 3815820 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815822 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815826 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815828 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3815832 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3808342
Change 3815834 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3808342
Change 3815835 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3808342
Change 3815836 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3816009 by Kimio.Yasuda
Updated file against INTSourceChangelist:3718323
Change 3816010 by Kimio.Yasuda
Updated file against INTSourceChangelist:3727000
Change 3816012 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3816037 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3816040 by Kimio.Yasuda
Updated file against INTSourceChangelist:3622284
Change 3816049 by Kimio.Yasuda
Updated file against INTSourceChangelist:3680097
Change 3816050 by Kimio.Yasuda
Updated file against INTSourceChangelist:3692730
Change 3816052 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3816053 by Kimio.Yasuda
Updated file against INTSourceChangelist:3692730
Change 3816089 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3816091 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3816094 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3816098 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3816102 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3816375 by Kimio.Yasuda
Updated file against INTSourceChangelist:3809606
Change 3816733 by Kimio.Yasuda
Updated file against INTSourceChangelist:3689149
Change 3816736 by Kimio.Yasuda
Fixed bookmark error
Change 3816745 by Kimio.Yasuda
Updated file against INTSourceChangelist:3723511
Change 3819579 by Sungjin.Hong
#loc UE4DocKOR
Change 3819679 by Sungjin.Hong
#loc UE4DocKOR
Change 3822726 by Kimio.Yasuda
Updated file against INTSourceChangelist:3397556
Change 3822745 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3822750 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3822758 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3822771 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3822778 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827349 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827377 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827379 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827384 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827386 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3827391 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3827396 by Kimio.Yasuda
Updated file against INTSourceChangelist:3726228
Change 3827404 by Kimio.Yasuda
Updated file against INTSourceChangelist:3474032
Change 3827405 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3801260
Change 3827409 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827411 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827416 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827419 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827421 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827426 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3827447 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827450 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827455 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827457 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827458 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3827463 by Sungjin.Hong
#loc UE4DocKor
Change 3827464 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827465 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827466 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827470 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827472 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827475 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3827486 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3827537 by Kimio.Yasuda
Updated file against INTSourceChangelist:3716175
Change 3827538 by Kimio.Yasuda
Fixed title translation
Change 3827541 by Kimio.Yasuda
Updated file against INTSourceChangelist:3211040
Change 3827548 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807086
Change 3827550 by Kimio.Yasuda
Updated file against INTSourceChangelist:3766333
Change 3827717 by Sungjin.Hong
#loc UE4DocKOR
Change 3829650 by Kimio.Yasuda
File updated against INTSourceChangelist:3782314
Change 3829653 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829656 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829658 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829662 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829663 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829677 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829681 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829686 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829694 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829704 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829714 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829721 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829725 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829727 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829732 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829735 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829736 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829739 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829741 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829742 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829751 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829754 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829793 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829798 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829799 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829803 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829804 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829805 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829808 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829809 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829814 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829816 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829818 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829821 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829823 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829824 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829825 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829827 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829828 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829829 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829833 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829837 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829850 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829855 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829859 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829862 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829864 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829866 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829869 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829870 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829872 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829876 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829877 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829878 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829882 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829895 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829898 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829900 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829901 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829902 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829904 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829905 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829906 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829907 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829909 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3829911 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831636 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831644 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831649 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831651 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831654 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831656 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831664 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831667 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831671 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831672 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831674 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831682 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831687 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831690 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831694 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831695 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831705 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831716 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831721 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831722 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831739 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831744 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831745 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831752 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831772 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831779 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831783 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831793 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831794 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831796 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831803 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831805 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831808 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3831811 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831812 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3831815 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831826 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831828 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831835 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831837 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831839 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831845 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831847 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831850 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831851 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831859 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831862 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831863 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831865 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831870 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831928 by Kimio.Yasuda
c:\UE4\Main\Engine\Documentation\Source\Engine\Performance\Visualizers\OutOfBoundsPixels\OutOfBoundsPixels.INT.udn
Change 3831931 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831934 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831939 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831956 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831957 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831964 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831977 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831978 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831981 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831986 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831989 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831991 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831997 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3831998 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832001 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832004 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832006 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832015 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832016 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832018 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832019 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832021 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832022 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832026 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832027 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832028 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832032 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832040 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832042 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832051 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832053 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832063 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832064 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832072 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832073 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832074 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832076 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832078 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832080 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832083 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832086 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832088 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3809606
Change 3832089 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832092 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832093 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832094 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832100 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832103 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832105 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832107 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832111 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832114 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832115 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832116 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832119 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832125 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3832132 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832133 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832137 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832138 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832141 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3832142 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3833977 by Kimio.Yasuda
Fixed link error
Change 3833981 by Kimio.Yasuda
Fixed link error
Change 3833990 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3833995 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834027 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834030 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834038 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3810557
Change 3834041 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834060 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834072 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834078 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834086 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834089 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834097 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3834098 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834100 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834102 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834106 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834117 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834124 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834126 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834134 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834136 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834138 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834140 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834147 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834155 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834157 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834158 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3834159 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834163 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834168 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834172 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834173 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834175 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834183 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834185 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3834187 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834188 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834190 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834193 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834196 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834197 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834201 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834203 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834210 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834231 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834232 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834233 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834236 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834238 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834242 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834243 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834244 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834245 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834246 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834248 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834249 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834250 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834251 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834252 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834253 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834259 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834260 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834261 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834262 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834263 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834264 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834265 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834266 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834267 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834268 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834271 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834272 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834274 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834275 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834276 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834282 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834298 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834299 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834304 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3834305 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834311 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834313 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834314 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834315 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834316 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834318 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834319 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834322 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834331 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834334 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834336 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834342 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834344 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834347 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834351 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834364 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834366 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834367 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834378 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834384 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834388 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834390 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834392 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834395 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834396 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834399 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834402 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834409 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834410 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834412 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834418 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834419 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3834428 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834430 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834439 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834444 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834450 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834451 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834452 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834456 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3834459 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3835269 by Robert.Gervais
#UE4Doc
Updated Toolchain table to include link to newest cross compile toolchain.
#code_review Arciel.Rekman
Change 3837426 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3837428 by Masayo.Kondo
#loc UE4DocJpn File updated against3810557
Change 3837430 by Kimio.Yasuda
Updated file against INTSourceChangelist:3835269
Change 3837433 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837436 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837438 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837483 by Kimio.Yasuda
Updatd file against INTSourceChangelist:3810557
Change 3837484 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837492 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837495 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837504 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837506 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3761563
Change 3837507 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837518 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750352
Change 3837519 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837521 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837522 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3804170
Change 3837523 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837524 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837526 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3810557
Change 3837527 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837531 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837537 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837557 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3837569 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837580 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837581 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837585 by Kimio.Yasuda
Fixed translation
Change 3837590 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837591 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837592 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837593 by Kimio.Yasuda
Updated file against sINTSourceChangelist:3810557
Change 3837595 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837597 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837598 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3837599 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837605 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837606 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837607 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837609 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837612 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837614 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837618 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837621 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837624 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837626 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837627 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837640 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3837643 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3837649 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837650 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3837652 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837657 by Kimio.Yasuda
Updatead file against INTSourceChangelist:3810467
Change 3837658 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3837660 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837661 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837665 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837666 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837667 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837668 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837669 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837671 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837672 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837682 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837683 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837687 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837688 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837689 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837690 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837691 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837695 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837697 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837698 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837699 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837703 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3837707 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837708 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837710 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837713 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837716 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3837806 by Sungjin.Hong
#loc UE4DocKor
Change 3839390 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839428 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3839430 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839440 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3804170
Change 3839460 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839476 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839480 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3804170
Change 3839482 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839501 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3839507 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3839522 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3839539 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3839547 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839556 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3839558 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3839562 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839565 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3839567 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839568 by Kimio.Yasuda
Updated file against INTSourceChangelist:3809606
Change 3839630 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839632 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3839648 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839649 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839651 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750351
Change 3839654 by Kimio.Yasuda
Updated file against INTSourceChangelist:3761485
Change 3839657 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750407
Change 3839659 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839660 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839662 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839664 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839665 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839667 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839668 by Kimio.Yasuda
Updated file against INTSourceChangelist:3750348
Change 3839670 by Kimio.Yasuda
Updated file against Updated file against INTSourceChangelist:3750348
Change 3839673 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736300
Change 3839682 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736300
Change 3839683 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736300
Change 3839684 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3839686 by Sungjin.Hong
Foliage Instanced Mesh system > Foliage Mode
Change 3839688 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839690 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3839693 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736212
Change 3839696 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736212
Change 3839697 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736250
Change 3839699 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3839702 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839706 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3839707 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839708 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839709 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839710 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839711 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839712 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839714 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3839715 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839716 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839717 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839718 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839719 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839720 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839724 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3839732 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3839734 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839735 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839736 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839737 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839738 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839739 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839740 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839741 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839742 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839743 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839744 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839750 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3839757 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839758 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839759 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839760 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839761 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839763 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839764 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839765 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839766 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839767 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839768 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839769 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839771 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3839778 by Kimio.Yasuda
Updated file against INTSourceChangelist:3211040
Change 3839779 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839781 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839786 by Kimio.Yasuda
Updated file against INTSourceChangelist:3242329
Change 3839788 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3839789 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3839790 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3839792 by Kimio.Yasuda
Updated file against INTSourceChangelist:3489715
Change 3839975 by Sungjin.Hong
#loc UE4DocKOR
Change 3841564 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3841572 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3839686
Change 3841646 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3841664 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3841672 by Kimio.Yasuda
Updated file against INTSourceChangelist:3808342
Change 3841679 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841680 by Kimio.Yasuda
Updated file against INTSourceChangelist:3808342
Change 3841683 by Kimio.Yasuda
Updated file against INTSourceChangelist:3808342
Change 3841688 by Kimio.Yasuda
Updated file against INTSourceChangelist:3808342
Change 3841694 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3841695 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3841699 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3841701 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841708 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841728 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3841747 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841754 by Masayo.Kondo
loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3841757 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3841772 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841789 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3841801 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3841859 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3841877 by Sungjin.Hong
#loc UE4DocKOR
Change 3841882 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3841905 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3841909 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3843230 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3843244 by Kimio.Yasuda
Fixed typo
Change 3843401 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843410 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843411 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843421 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843432 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3801260
Change 3843439 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843441 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843442 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843444 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843445 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843448 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843453 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843456 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843460 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843466 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843478 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843496 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843537 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843543 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843547 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843549 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843553 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843569 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843570 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843571 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843573 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843574 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843586 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3843593 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843596 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843598 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3843651 by Sungjin.Hong
#loc UE4DocKOR
Change 3845030 by Kimio.Yasuda
Updated file against INTSourceChangelist:3809606
Change 3845036 by Kimio.Yasuda
Updated file against INTSourceChangelist:3809606
Change 3845040 by Masayo.Kondo
#loc UE4DocJpn File updated against INT# 3810557
Change 3845099 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3845107 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845111 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845115 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845117 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810467
Change 3845118 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845122 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845128 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3716096
Change 3845148 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3715974
Change 3845160 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845172 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3721613
Change 3845174 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845198 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845201 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845205 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845210 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845215 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845217 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845221 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845226 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845235 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845244 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845246 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845249 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845259 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845271 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845304 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845343 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3845381 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845382 by Sungjin.Hong
#loc UE4DocKOR
Change 3845384 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845391 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3807090
Change 3845393 by Sungjin.Hong
#loc UE4DocKOR
Change 3845394 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3807090
Change 3845397 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845400 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845403 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845404 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845408 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845410 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3845416 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3845427 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3845429 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3845438 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3845447 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3848205 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3801260
Change 3848212 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3848214 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3848215 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3848217 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3848237 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848239 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848246 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848253 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848254 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848259 by Kimio.Yasuda
Fixed according to INT fixes for migration
Change 3848260 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848261 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848262 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3848263 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848264 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848266 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848267 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848269 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848270 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848271 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848272 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848273 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848274 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848275 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848278 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848281 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848282 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848286 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848289 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3848293 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850310 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850317 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850330 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850334 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801137
Change 3850335 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850339 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850427 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3850588 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850642 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850643 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850649 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850650 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850652 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850654 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850657 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850659 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850661 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850663 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850666 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850670 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850671 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850680 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850681 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850683 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850684 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850685 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850686 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850688 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850689 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850690 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850692 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850695 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850747 by Kimio.Yasuda
Updated file against INTSourceChangelist :3783201
Also change "Level of detail (LOD)" to just "Lovel of detail" due to linkage error which had caused another document (Skylight)
Change 3850748 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3850753 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3850755 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850756 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850757 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850760 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850764 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850765 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850766 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850767 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850768 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850769 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850772 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3810557
Change 3850775 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850781 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850785 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850796 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850798 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3850799 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850800 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850802 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850812 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3850814 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3850818 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850819 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850821 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3850822 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850823 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850824 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850827 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850830 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850831 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850833 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3850834 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3850835 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850839 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3850843 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852604 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3852625 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3852631 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3852646 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852659 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3750353
Change 3852685 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852713 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852724 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852732 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852755 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3852770 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852773 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852788 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852800 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852803 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852804 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852809 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852815 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852816 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852819 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852820 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852828 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852832 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852835 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852844 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852845 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852846 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852850 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852851 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852863 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852864 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852865 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852867 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852870 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852871 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852881 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852885 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852888 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852894 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852908 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852918 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852921 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852923 by Kimio.Yasuda
Fixed title translation
Change 3852924 by Kimio.Yasuda
Fixed translation
Change 3852925 by Kimio.Yasuda
Fixed translation
Change 3852930 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852932 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852938 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3852939 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852941 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852942 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852944 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852947 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852948 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3852949 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3852961 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853008 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853012 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853014 by Kimio.Yasuda
Updated file against INTSourceChangelist:3730858
Change 3853022 by Kimio.Yasuda
Updated file against INTSourceChangelist:3728517
Change 3853023 by Kimio.Yasuda
Updated file against INTSourceChangelist:3728517
Change 3853024 by Kimio.Yasuda
Updated file against INTSourceChangelist:3728517
Change 3853037 by Kimio.Yasuda
Updated file against INTSourceChangelist:3728406
Change 3853046 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853058 by Kimio.Yasuda
Updated file against INTSourceChangelist:3726700
Change 3853063 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853075 by Kimio.Yasuda
Updated file against INTSourceChangelist:3726075
Change 3853084 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853091 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853095 by Kimio.Yasuda
Updated file against INTSourceChangelist:3721197
Change 3853105 by Kimio.Yasuda
Updated file against INTSourceChangelist:3718992
Change 3853108 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3853110 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3807090
Change 3853111 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717118
Change 3853112 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717117
Change 3853124 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717059
Change 3853125 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3853143 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3716175
Change 3853158 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3804170
Change 3853168 by Kimio.Yasuda
Fixed translation
Change 3853170 by Kimio.Yasuda
Updated file against INTSourceChangelist:3677919
Change 3855031 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3804170
Change 3855095 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3855166 by Kimio.Yasuda
Updated file against INTSourceChangelist:3622529
Change 3855180 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3855204 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3855206 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3855218 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3855226 by Kimio.Yasuda
Updated file against INTSourceChangelist:3487496
Change 3855229 by Kimio.Yasuda
Updated file against INTSourceChangelist:3467293
Change 3855236 by Kimio.Yasuda
Updated file against INTSourceChangelist:3429264
Change 3855240 by Kimio.Yasuda
Updated file against INTSourceChangelist:3372845
Change 3855241 by Kimio.Yasuda
Updated file against INTSourceChangelist:3253196
Change 3855249 by Kimio.Yasuda
Updated file against INTSourceChangelist:3429254
Change 3855252 by Kimio.Yasuda
Updated file against INTSourceChangelist:3244370
Change 3855257 by Kimio.Yasuda
Updated file against INTSourceChangelist:3243860
Change 3855267 by Kimio.Yasuda
Updated file against INTSourceChangelist:3238697
Change 3855282 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151861
Change 3855285 by Kimio.Yasuda
Updated file against INTSourceChangelist:3151861
Change 3855321 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855326 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855329 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855344 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810557
Change 3855346 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3855357 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3855366 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3855370 by Kimio.Yasuda
Updated file against INTSourceChangelist:3810467
Change 3855375 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807092
Change 3855379 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3855384 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3855391 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855392 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855408 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855410 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855415 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855417 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855423 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855429 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855432 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855469 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855470 by Kimio.Yasuda
Fixed line alignment
Change 3855471 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855479 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3855492 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856665 by Joe.Conley
Deleting old misnamed file (.PN.udn instead of .JPN.udn)
Change 3856858 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856863 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3801260
Change 3856865 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3856869 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856957 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856981 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856984 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856987 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856991 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3856997 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3857002 by Kimio.Yasuda
Updated file against INTSourceChangelist:3599948
Change 3857035 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3801260
Change 3857049 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3807090
Change 3857051 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3857054 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3857063 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3857070 by Masayo.Kondo
#loc UE4DocJpn File updated againstINTSourceChangelist:3782314
Change 3857094 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3808342
Change 3857098 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857108 by Kimio.Yasuda
Updated file against INTSourceChangelist:3733519
Change 3857109 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736174
Change 3857116 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736174
Change 3857135 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736175
Change 3857136 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857143 by Kimio.Yasuda
Fixed indent space
Change 3857145 by Kimio.Yasuda
Updated file against INTSourceChangelist:3736300
Change 3857146 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857148 by Kimio.Yasuda
Updated file against INTSourceChangelist:3753383
Change 3857149 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3857192 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857194 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857202 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3857204 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3782314
Change 3859716 by Masayo.Kondo
Fixed to match structure
Change 3859717 by Masayo.Kondo
Fixed to match structure
Change 3859718 by Kimio.Yasuda
Fixed error (linkage unmatched)
Change 3859719 by Masayo.Kondo
Fixed to match structure
Change 3859720 by Masayo.Kondo
Fixed to match structure
Change 3859726 by Masayo.Kondo
#loc UE4DocJpn File updated against INT# INTSourceChangelist:3782314
Change 3859727 by Kimio.Yasuda
Removed extra indent space before [/EXCERPT:Browser] on line 114 (which caused conversion error in Perforce\Basics\PerforceBasics)
Change 3859728 by Kimio.Yasuda
Removed extra index space which caused conversion error
Change 3859730 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3859732 by Masayo.Kondo
Removed a space after Description
Change 3859738 by Masayo.Kondo
Fixed line spaces to match structure
Change 3859740 by Masayo.Kondo
Fixed lines and spaces in programming section
Change 3859747 by Masayo.Kondo
Fixed lines in programming section
Change 3859755 by Masayo.Kondo
Fixed lines in programming section
Change 3859756 by Masayo.Kondo
Fixed lines in programming section
Change 3859757 by Masayo.Kondo
Fixed lines in programming section
Change 3859759 by Masayo.Kondo
Fixed lines in programming section
Change 3859768 by Masayo.Kondo
Fixed lines in programming section
Change 3859769 by Masayo.Kondo
Fixed lines in programming section
Change 3859774 by Masayo.Kondo
Fixed lines in programming section
Change 3859776 by Masayo.Kondo
Fixed lines in programming section
Change 3859778 by Masayo.Kondo
Fixed lines in programming section
Change 3859780 by Masayo.Kondo
Fixed lines in programming section
Change 3859783 by Kimio.Yasuda
Updated file against INTSourceChecklist:3108692
Change 3859786 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3859790 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3859794 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3859797 by Kimio.Yasuda
Removed extra line
Change 3859798 by Kimio.Yasuda
Fixed to match migration structure
Change 3859799 by Kimio.Yasuda
Fixed structure for migration
Change 3859800 by Masayo.Kondo
Fixed lines in programming section
Change 3859801 by Kimio.Yasuda
Fixed structure for migration
Change 3859803 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859805 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859810 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859814 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859819 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859820 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859823 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859824 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859825 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859828 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859829 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859831 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859835 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859841 by Masayo.Kondo
Fixed "Bookmark"to bookmark
Change 3859845 by Masayo.Kondo
Fixed line spaces in programming section
Change 3859864 by Kimio.Yasuda
Fixed structure for migration
Change 3861599 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861603 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861687 by Kimio.Yasuda
Fixed linkage path
Change 3861689 by Kimio.Yasuda
Remove extra line to match migration structure
Change 3861694 by Kimio.Yasuda
Fixed structure for migration
Change 3861697 by Kimio.Yasuda
Fixed structure for migration
Change 3861700 by Kimio.Yasuda
Fixed structure for migration
Change 3861702 by Kimio.Yasuda
Fixed structure for migration
Change 3861712 by Kimio.Yasuda
Updated file agaistn INTSourceChangelist:3810557
Change 3861717 by Kimio.Yasuda
Fixed structure for migration
Change 3861765 by Kimio.Yasuda
Removed extra index space
Change 3861766 by Kimio.Yasuda
Fixed structure for migration
Change 3861771 by Kimio.Yasuda
Anothre structure fix for migration
Change 3861776 by Kimio.Yasuda
Fixed structure for migration
Change 3861778 by Kimio.Yasuda
Fixed structure for migration
Change 3861784 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746172
Change 3861785 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3746172
Change 3861788 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861795 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861797 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746172
Change 3861799 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746534
Change 3861808 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861814 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861819 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746172
Change 3861823 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861824 by Kimio.Yasuda
Fixed structure for migration
Change 3861870 by Kimio.Yasuda
Fixed structure for migration
Change 3861871 by Kimio.Yasuda
Fixed structure for migration
Change 3861873 by Kimio.Yasuda
Fixed structure for migration
Change 3861875 by Kimio.Yasuda
Fixed structure for migration
Change 3861877 by Kimio.Yasuda
Fixed structure for migration
Change 3861884 by Kimio.Yasuda
Fixed structure for migration
Change 3861888 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3108692
Change 3861892 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3861895 by Kimio.Yasuda
Fixed structure for migration
Change 3861898 by Kimio.Yasuda
Fixed structure for migration
Change 3861900 by Kimio.Yasuda
Fixed structure for migration
Change 3861901 by Kimio.Yasuda
Fixed structure for migration
Change 3861903 by Kimio.Yasuda
Fixed structure for migration
Change 3861906 by Kimio.Yasuda
Fixed structure for migration
Change 3861908 by Kimio.Yasuda
Fixed structure for migration
Change 3861910 by Kimio.Yasuda
Fixed structure for migration
Change 3861911 by Kimio.Yasuda
Fixed structure for migration
Change 3861913 by Kimio.Yasuda
Added tag
Change 3861914 by Kimio.Yasuda
Fixed structure for migration
Change 3861915 by Kimio.Yasuda
Added tag
Change 3861917 by Kimio.Yasuda
Fixed structure for migration
Change 3861919 by Kimio.Yasuda
Fixed structure for migration
Change 3861920 by Masayo.Kondo
#loc UE4DocJpn File updated against 3810467 fixed image file sections for migration
Change 3861922 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861929 by Masayo.Kondo
#loc UE4DocJpn File updated against 3810467
Change 3861940 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3861947 by Kimio.Yasuda
Updated structure only for migration (translation partially not completed)
Change 3861950 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3861951 by Kimio.Yasuda
Inserted a line to fix structure for migration
Change 3861954 by Kimio.Yasuda
Fixed structure for migration
Change 3861955 by Kimio.Yasuda
Added hyphen for type
Change 3861957 by Kimio.Yasuda
Fixed structure for migration
Change 3861958 by Kimio.Yasuda
Inserted a line to fix structure for migration
Change 3861965 by Masayo.Kondo
Fixed spaces for migration
Change 3861997 by Masayo.Kondo
Checked structure for migration
Change 3862001 by Masayo.Kondo
Fixed for migration
Change 3862008 by Masayo.Kondo
Fixed for migration
Change 3862014 by Masayo.Kondo
Fixed for migration
Change 3862016 by Masayo.Kondo
Fixed for migration
Change 3862019 by Masayo.Kondo
Fixed for migration
Change 3862029 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3108692
Change 3862034 by Masayo.Kondo
Fixed for migration
Change 3862037 by Masayo.Kondo
Fixed for migration
Change 3862039 by Masayo.Kondo
Fixed for file migration
Change 3862049 by Kimio.Yasuda
Fixed format
Change 3862051 by Kimio.Yasuda
Fixed structure for migration
Change 3864073 by Masayo.Kondo
Fixed for migration
Change 3864086 by Masayo.Kondo
Fixed spaces and lines
Change 3864088 by Kimio.Yasuda
Fixed structure for migration
Change 3864101 by Masayo.Kondo
Put a space between version and 4.9.
Change 3864114 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3864115 by Kimio.Yasuda
Fixed version "V" to capital letter
Change 3864116 by Masayo.Kondo
Fixed spaces between version and 4.9 and lines
Change 3864117 by Kimio.Yasuda
Fixed version number
Change 3864127 by Kimio.Yasuda
Minor adjustment for migration
Change 3864133 by Masayo.Kondo
Checked structure but only a difference found is a space between description: E has a space which usually do not
Change 3864192 by Kimio.Yasuda
Updated file against INTSouceChangelist :3782314
Change 3864193 by Masayo.Kondo
Fixed for migration
Change 3864216 by Masayo.Kondo
Checked for structure
Change 3864221 by Kimio.Yasuda
Fixed typo
Change 3864222 by Kimio.Yasuda
Minor line adjustment for migration
Change 3864226 by Masayo.Kondo
Checked for structure
Change 3864233 by Masayo.Kondo
Checked for structure
Change 3864244 by Masayo.Kondo
Fixed lines and spaces
Change 3864249 by Masayo.Kondo
Fixed :-- section|
Change 3864296 by Kimio.Yasuda
Minor structure adjustment for migration
Change 3864322 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3780178
Change 3864355 by Kimio.Yasuda
Updated file against INTSourceChangelist:3717050
Change 3864358 by Kimio.Yasuda
Fixed typo
Change 3864383 by Masayo.Kondo
Updated for migration
Change 3864384 by Masayo.Kondo
Updated for migration
Change 3864408 by Kimio.Yasuda
Added translation
Change 3864420 by Masayo.Kondo
Fixed line spaces
Change 3864426 by Kimio.Yasuda
Added translation
Change 3864429 by Masayo.Kondo
Updated for migration
Change 3864431 by Masayo.Kondo
Fixed line spaces
Change 3864435 by Masayo.Kondo
Fixed line spaces
Change 3864439 by Masayo.Kondo
Fixed line spaces
Change 3864442 by Masayo.Kondo
Fixed line spaces
Change 3864446 by Masayo.Kondo
Fixed line spaces
Change 3864447 by Kimio.Yasuda
Added translation
Change 3864451 by Masayo.Kondo
Fixed line spaces
Change 3864456 by Masayo.Kondo
Fixed a space Version
Change 3864459 by Masayo.Kondo
Fixed line spaces
Change 3864461 by Masayo.Kondo
Fixed spaces
Change 3864463 by Masayo.Kondo
Fixed line spaces
Change 3864466 by Masayo.Kondo
Fixed line spaces
Change 3864470 by Kimio.Yasuda
Added translation
Change 3866266 by Masayo.Kondo
Updated for migration
Change 3866271 by Masayo.Kondo
Fixed line spaces
Change 3866273 by Masayo.Kondo
Fixed lines and spaces
Change 3866279 by Masayo.Kondo
Fixed line spaces
Change 3866286 by Masayo.Kondo
Fixed programming section
Change 3866292 by Masayo.Kondo
Fixed programming section
Change 3866294 by Masayo.Kondo
Fixed line spaces
Change 3866296 by Masayo.Kondo
Fixed line spaces
Change 3866298 by Masayo.Kondo
Fixed line spaces
Change 3866299 by Masayo.Kondo
Fixed line spaces
Change 3866305 by Masayo.Kondo
Fixed asterisk to number1
Change 3866306 by Masayo.Kondo
Fixed Version: space
Change 3866315 by Masayo.Kondo
Fixed line and version spaces
Change 3866316 by Masayo.Kondo
Fixed ver space
Change 3866326 by Masayo.Kondo
Fixed line spaces
Change 3866331 by Masayo.Kondo
Fixed line spaces
Change 3866335 by Masayo.Kondo
Fixed line spaces
Change 3866337 by Masayo.Kondo
Fixed line spaces
Change 3866345 by Masayo.Kondo
Fixed line spaces
Change 3866353 by Masayo.Kondo
Fixed line spaces
Change 3866360 by Masayo.Kondo
Fixed programming section comment
Change 3866363 by Masayo.Kondo
Fixed programming section
Change 3866372 by Masayo.Kondo
Fixed a line space
Change 3866385 by Masayo.Kondo
Fixed line spaces
Change 3866392 by Masayo.Kondo
Fixed for migration
Change 3866395 by Masayo.Kondo
Fixed line spaces
Change 3866400 by Masayo.Kondo
Fixed line spaces
Change 3866404 by Masayo.Kondo
Fixed line spaces
Change 3866406 by Masayo.Kondo
Fixed line spaces
Change 3866417 by Masayo.Kondo
Fixed line spaces
Change 3866424 by Masayo.Kondo
Updated for migration
Change 3866427 by Masayo.Kondo
Fixed line and colon spaces
Change 3866434 by Masayo.Kondo
Updated for migration
Change 3866442 by Masayo.Kondo
Fixed line spaces
Change 3866568 by Masayo.Kondo
Updated for migration INTSourceChangelist:3781189
Change 3866569 by Masayo.Kondo
Fixed line spaces
Change 3866570 by Masayo.Kondo
Fixed line spaces
Change 3866573 by Masayo.Kondo
Fixed spaces for migration
Change 3866574 by Masayo.Kondo
Fixed space for End result part
Change 3866575 by Masayo.Kondo
Fixed space for End result part
Change 3866576 by Masayo.Kondo
Fixed End result space
Change 3866582 by Masayo.Kondo
Fixed End result part
Change 3866598 by Masayo.Kondo
Fixed line spaces
Change 3866601 by Masayo.Kondo
Fixed line spaces
Change 3866602 by Masayo.Kondo
Fixed line spaces
Change 3866607 by Masayo.Kondo
Fixed line spaces
Change 3866609 by Masayo.Kondo
Fixed line spaces
Change 3866613 by Masayo.Kondo
Fixed png file names
Change 3866615 by Masayo.Kondo
Fixed lines
Change 3866617 by Masayo.Kondo
Fixed a space
Change 3866620 by Masayo.Kondo
Updated for migration
Change 3866629 by Masayo.Kondo
Fixed tabs before 1
Change 3866633 by Masayo.Kondo
Fixed line spaces
Change 3866640 by Masayo.Kondo
Fixed image height section and line spaces
Change 3866642 by Masayo.Kondo
File updated for INTSourceChangelist:3108692
Change 3866644 by Masayo.Kondo
Fixed line spaces
Change 3866650 by Masayo.Kondo
Updated for INTSourceChangelist:3716214
Change 3866651 by Masayo.Kondo
Fixed line spaces
Change 3866654 by Masayo.Kondo
Fixed line spaces and programinng comments
Change 3866657 by Masayo.Kondo
Fixed line spaces
Change 3866662 by Masayo.Kondo
Fixed lines
Change 3866669 by Masayo.Kondo
Fixed lines
Change 3866670 by Masayo.Kondo
Fixed line spaces
Change 3866671 by Masayo.Kondo
Fixed for migration
Change 3866672 by Masayo.Kondo
Fixed for migration
Change 3866673 by Masayo.Kondo
Fixed lines
Change 3866677 by Masayo.Kondo
Fixed lines
Change 3866681 by Masayo.Kondo
Fixed lines
Change 3866683 by Masayo.Kondo
Fixed lines
Change 3866685 by Masayo.Kondo
Fixed for migration
Change 3866686 by Masayo.Kondo
Fixed lines
Change 3866688 by Masayo.Kondo
Fixed for migration
Change 3866691 by Masayo.Kondo
Fixed for migration
Change 3866696 by Masayo.Kondo
Fixed for migration
Change 3866702 by Masayo.Kondo
Fixed for migration
Change 3868509 by Masayo.Kondo
Fixed line spaces
Change 3868513 by Masayo.Kondo
Fixed line spaces
Change 3868521 by Masayo.Kondo
Fixed line spaces
Change 3868544 by Masayo.Kondo
Fixed for migration
Change 3868563 by Masayo.Kondo
Fixed a space
Change 3868572 by Masayo.Kondo
Deleted one redundant line beforePurchasing from the Store section
Change 3868578 by Masayo.Kondo
Fixed a line space before 284
Change 3868586 by Masayo.Kondo
Fixed :--- section again
Change 3868672 by Masayo.Kondo
Added spaces after colons
Change 3868679 by Masayo.Kondo
Fixedⁿ@" parent:Engine/Editor" part
Change 3868856 by Masayo.Kondo
Second check for migration
Change 3868875 by Masayo.Kondo
Second check for migration fix line spaces and indent
Change 3868889 by Masayo.Kondo
Second check fixed line spaces and deleted JP comment in programming section
Change 3868895 by Masayo.Kondo
Second fix, one indent
Change 3868911 by Masayo.Kondo
Second ck, fixed removed part
Change 3868924 by Masayo.Kondo
Second fix,
Change 3868927 by Sungjin.Hong
#loc UE4DocKOR
Change 3868930 by Masayo.Kondo
Second fix, deleted JP comment in programming
Change 3868937 by Masayo.Kondo
Second fix, deleted JP comment in programming section
Change 3868950 by Masayo.Kondo
Second fix, deleted JP comment in programming section
Change 3868966 by Masayo.Kondo
Second check table spaces
Change 3868972 by Masayo.Kondo
Second check, fixed indent,
Change 3868973 by Masayo.Kondo
Second ck, fixed Unreal VS file as well
Change 3868978 by Masayo.Kondo
Second fix
Change 3868980 by Masayo.Kondo
Fixed
Change 3871569 by Masayo.Kondo
Second check, added asterisk, removed JP comment in programing section
Change 3871579 by Masayo.Kondo
Second check
Change 3871587 by Masayo.Kondo
Fixed headings #
Change 3871616 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3871617 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3872326 by Robert.Gervais
#UE4Doc
Updating Linux Quick Start as part of UGS-P4V workflow description.
#jira 5789
Change 3873219 by Robert.Gervais
#UE4Doc
Updating Linux XCompile Toolchain download table.
I'll keep this ticket up open until v11_clang-5.0.0-centos7 becomes available for download from our cdn.
#jira UEDOC-7081
#code_review jeff.wilson, nick.bullardbradley
Change 3873696 by Masayo.Kondo
Submitted for migration
Change 3873698 by Kimio.Yasuda
Updated file against INTSourceChangelist:3873219
Change 3873700 by Kimio.Yasuda
Updated file against INTSourceChangelist:3872326
Change 3873766 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3782314
Change 3873800 by Masayo.Kondo
File updated
Change 3873823 by Masayo.Kondo
File updated
Change 3873836 by Masayo.Kondo
File updated fot INT3108692
Change 3873845 by Kimio.Yasuda
Added translation
Change 3873926 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746172
Change 3873927 by Kimio.Yasuda
Updated file against INTSourceChangelist:3746532
Change 3873946 by Masayo.Kondo
File updated for INTSourceChangelist:3759006
Change 3873948 by Masayo.Kondo
File updated for INTSourceChangelist:3750407
Change 3873979 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3873982 by Kimio.Yasuda
Added translation
Change 3873983 by Masayo.Kondo
Updated for INTSourceChangelist:3108692
Change 3874000 by Masayo.Kondo
Updated for INTSourceChangelist:3108692
Change 3874024 by Masayo.Kondo
Updated for INTSourceChangelist:3108692
Change 3875865 by Masayo.Kondo
Fixed book mark error, SelectionTool to Select Tool
Change 3875906 by Kimio.Yasuda
Fixed translation
Change 3875909 by Masayo.Kondo
Fixed a line space
Change 3875947 by Kimio.Yasuda
Minor adjustment for file migration
Change 3875980 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3875999 by Kimio.Yasuda
Minor adjustment for file migration
Change 3876015 by Kimio.Yasuda
Minor adjustment for file migration
Change 3876019 by Kimio.Yasuda
Added topic-image
Change 3876021 by Kimio.Yasuda
Another structuer adjustment
Change 3876027 by Kimio.Yasuda
Updated file against INTSourceChangelist:3801260
Change 3876043 by Kimio.Yasuda
Updated file against INTSourceChangelist:3807090
Change 3876069 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876074 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876078 by Kimio.Yasuda
Remove space for file migration
Change 3876183 by Kimio.Yasuda
Updated file against INTSourceChangelist:3108692
Change 3876189 by Kimio.Yasuda
Minor adjustment for file migration
Change 3876193 by Kimio.Yasuda
Inserted space for structure adjustment
Change 3876195 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876196 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876198 by Kimio.Yasuda
Fixed structure
Change 3876204 by Kimio.Yasuda
Inserted space for structure adjustment
Change 3876207 by Kimio.Yasuda
Minor adjustment for file migration
Change 3876210 by Kimio.Yasuda
Removed "*" for structure adjustment
Change 3876212 by Kimio.Yasuda
Inserted spaces for structure adjustment
Change 3876214 by Kimio.Yasuda
Added "*" for structure adjustment
Change 3876221 by Kimio.Yasuda
Fixed property name from Japanese to English
Change 3876225 by Kimio.Yasuda
Inserted spaces as necessary for structure adjustment
Change 3876229 by Kimio.Yasuda
Added topic image line
Change 3876233 by Kimio.Yasuda
Minor adjustment for file migration
Change 3876244 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876251 by Kimio.Yasuda
Minor strucutre adjustment for file migration
Change 3876262 by Kimio.Yasuda
Minor structrue adjustment (Removed *)
Change 3876265 by Kimio.Yasuda
Minor structure adjustment (inserted line)
Change 3876267 by Kimio.Yasuda
Minor structure adjustment (inserted space)
Change 3876270 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876276 by Kimio.Yasuda
Minor structure adjustment for file migation (added space)
Change 3876279 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876295 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876305 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876322 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876329 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876332 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876341 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876342 by Kimio.Yasuda
Removed extra "*"
Change 3876345 by Kimio.Yasuda
Added missing "*"
Change 3876348 by Sungjin.Hong
#loc UE4DocKOR
Change 3876354 by Kimio.Yasuda
Chaged Version into English
Change 3876356 by Kimio.Yasuda
Changed 'Version 4.9' back to English
Change 3876358 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876365 by Kimio.Yasuda
Removed extra space.
Change 3876369 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876373 by Kimio.Yasuda
Minor structure adjustment for file migration
Change 3876396 by Kimio.Yasuda
Updated file against INTSourceChangelist:3808342
Change 3876457 by Sungjin.Hong
#loc UE4DocKOR
Change 3877048 by Arciel.Rekman
Linux: update the link to the cross toolchain in docs.
- Also updated part of the tutorial that mentioned the toolchain version.
Change 3878311 by Kimio.Yasuda
Updated file against INTSourceChangelist:3877048
Change 3878388 by Kimio.Yasuda
Fixed typo
Change 3878423 by Kimio.Yasuda
Updated file against INTSourceChangelist:3877048
Change 3878504 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878538 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878563 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878565 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878589 by Sungjin.Hong
#loc UE4DocKor
Change 3878618 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878621 by Kimio.Yasuda
Updated file against INTSourceChangelist:3782314
Change 3878695 by Kimio.Yasuda
Fixed translation
Change 3878731 by Kimio.Yasuda
Fixed translation
Change 3878788 by Masayo.Kondo
Fixed an indent
Change 3878801 by Masayo.Kondo
Updated and added asterisks at beginning
Change 3880663 by Masayo.Kondo
Removed an extra line
Change 3880697 by Masayo.Kondo
Fixed layout
Change 3880702 by Masayo.Kondo
Fixed line spaces between paragraphs
Change 3880708 by Masayo.Kondo
Added a line space between paragraphs
Change 3880717 by Masayo.Kondo
Added a numbering 1
Change 3880720 by Masayo.Kondo
Fixed indents
Change 3880724 by Masayo.Kondo
Fixed a line space
Change 3880739 by Masayo.Kondo
Fixed a line space
Change 3880744 by Masayo.Kondo
Fixed an indent
Change 3880756 by Masayo.Kondo
Added an line between paragraphs
Change 3880761 by Masayo.Kondo
Fixed an indent
Change 3880774 by Masayo.Kondo
Removed a line between paragraphs
Change 3880791 by Masayo.Kondo
Updated for INTSourceChangelist:3782314
Change 3880803 by Masayo.Kondo
Added an asterisk at beginning of sentense
Change 3880810 by Masayo.Kondo
Fixed a line space between paragraphs
Change 3880829 by Masayo.Kondo
Fixed a line space
Change 3880892 by Masayo.Kondo
Checked for structure
Change 3880944 by Masayo.Kondo
Fixed for migration
Change 3880950 by Masayo.Kondo
Fixed a line space
Change 3880955 by Masayo.Kondo
Fixed a heading ##
Change 3880968 by Masayo.Kondo
File Updated
Change 3880973 by Masayo.Kondo
Added ## to headlline
Change 3881059 by Masayo.Kondo
Fixed spaces
Change 3881064 by Masayo.Kondo
Removed an asterisk
Change 3881076 by Masayo.Kondo
Fixed indents
Change 3881080 by Masayo.Kondo
Fixed a line space
Change 3881089 by Masayo.Kondo
Added an asterisk
Change 3881098 by Masayo.Kondo
Fixed spaces between numberings
Change 3881104 by Masayo.Kondo
Checked for structure
Change 3881109 by Masayo.Kondo
Fixed skill field
Change 3881118 by Masayo.Kondo
Fixed skill level field
Change 3881128 by Masayo.Kondo
Fixed for migration
Change 3881141 by Masayo.Kondo
Fixed line spaces
Change 3881142 by Masayo.Kondo
Removed an asterisk
Change 3881147 by Masayo.Kondo
Fix a line space
Change 3881150 by Masayo.Kondo
Fixed line spaces
Change 3881154 by Masayo.Kondo
Fixed layout
Change 3881159 by Masayo.Kondo
Removed an unnecessary symbol
Change 3881162 by Masayo.Kondo
Added numbering 1
Change 3881164 by Masayo.Kondo
Fixed wrong image index
Change 3881172 by Masayo.Kondo
Fixed around ver field
Change 3881182 by Masayo.Kondo
Fixed table field
Change 3881191 by Masayo.Kondo
Fixed around ver field
Change 3881192 by Masayo.Kondo
Added a line between paragraphs
Change 3881197 by Masayo.Kondo
Fixed table and around ver field
Change 3881204 by Masayo.Kondo
Added an asterisk
Change 3881208 by Masayo.Kondo
Removed an asterisk
Change 3881213 by Masayo.Kondo
Fixed Region tags
Change 3881218 by Masayo.Kondo
Fixed DIR section
Change 3881219 by Masayo.Kondo
Fixed a line
Change 3881224 by Masayo.Kondo
Fixed a space
Change 3881225 by Masayo.Kondo
Fixed a space
Change 3881237 by Kimio.Yasuda
Fixed translation
Change 3881240 by Kimio.Yasuda
Fixed translation
Change 3890899 by Kimio.Yasuda
Fixed translation
Change 3892946 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3892962 by Kimio.Yasuda
Updated file against INTSourceChangelist:3891955
Change 3892964 by Masayo.Kondo
Fixed description space
Change 3892970 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3892975 by Kimio.Yasuda
Updated file agaisnt INTSourceChangelist:3891955
Change 3892980 by Masayo.Kondo
Fixed title spaces
Change 3892983 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893002 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893023 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893032 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893041 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893059 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893074 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893080 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893090 by Masayo.Kondo
#loc UE4DocJpn File updated against INTSourceChangelist:3891955
Change 3893200 by Masayo.Kondo
#loc UE4DocJpn Initial translation against INT#3810557
Change 3920877 by Jeff.Wilson
moving enterprise pages back to original location - yay
Change 3920986 by Jeff.Wilson
Fixing links in enterprise pages
Change 3921434 by Jeff.Wilson
fixes for enterprise
Change 3922416 by Tim.Hobson
#UE4 Docs: Unreal Studio - Getting Started page edits
Change 3924191 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3924925 by Jeff.Wilson
Adding templates from migration
Change 3924926 by Jeff.Wilson
misc style/template updates
Change 3926259 by Jeff.Wilson
Misc fixes
Change 3926759 by Tim.Hobson
#UE4 Docs: Unreal Studio Getting Started Doc Edits.
- Line 36 needs Project Templates PDF link
- Line 221 needs Supported Software and File Types PDF link
-
Change 3926778 by Jeff.Wilson
More updates for enterprise
Change 3926780 by Jeff.Wilson
misc styling updates
Change 3927257 by Jeff.Wilson
enterprise updates
Change 3930427 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3930979 by Sungjin.Hong
#loc UE4DocKOR
Change 3940592 by Mitchell.Wilson
Initial check in of 4.19 Major release notes. Waiting for Minor release notes so I can add them here.
Change 3941748 by Mitchell.Wilson
Adding minor notes.
Change 3942094 by Masayo.Kondo
#loc UE4DocJPN moved or deleted
Change 3964177 by Sungjin.Hong
#loc UE4DocKOR moved or deleted
Change 3975369 by Mitchell.Wilson
Adding switch trigger inputs to VehicleGame.
#jira UE-47835
Change 3977387 by Sungjin.Hong
#loc UE4DocKOR
Change 3977853 by Mitchell.Wilson
Updating Tile_Gem Blueprint and P_Selected_Title particle system to resolve "immortal particle system" warnings.
#jira UE-54735
Change 3978060 by Mitchell.Wilson
Removed console command referencing a custom event that no longer exists to resolve warnings.
Rebuilt lighting and saved all levels to resolve vert paint warnings on level load.
#jira UE-54932
Change 3982168 by Mitchell.Wilson
Saving levels to resolve UReflectionCaptureComponent warnings when packaging.
#jira UE-54970
Change 3989408 by Mitchell.Wilson
Correcting a spelling error in Blueprint_Communication example 1.4
#jira UE-54308
Change 3989612 by Mitchell.Wilson
Updating path in DefaultEditor and DefaultEngine ini to resolve warnings.
#jira UE-32185
Change 3992974 by Mitchell.Wilson
Sampler source changed to Shared: Clamp to resolve clipping issues in material properties example. Updated texture sample to "Masks". Rebuilt lighting in level and saved.
#jira UE-54464
Change 3997379 by Sungjin.Hong
#loc UE4DocKOR
Change 4008826 by Robert.Gervais
#jira UEDOC-7427
Adding ObjectOrientation tooltip update.
#UE4Doc
#code_review jeff.wilson
Change 4029781 by Mitchell.Wilson
Updating documentation links in some engine tutorials
#jira UEDOC-7444
Change 4036799 by Richard.Hinckley
Fixing an incomplete code comment due to a UDN report.
Change 4036853 by Mitchell.Wilson
Building engine content levels and saving to resolve warnings.
#jira UE-58327
Change 4039760 by Sungjin.Hong
#loc UE4DocKOR
Change 4054483 by Mitchell.Wilson
Adding organization in world outliner for VR Template levels.
#jira UE-55565
Change 4064060 by Richard.Hinckley
Doxygen warning markers to clean up an API doc issue.
Change 4064750 by Richard.Hinckley
Moving Paulo's shelved files for ARPG.
Change 4065297 by Andrew.Grant
Merging 4063960 (RemoteSession work) from //UE4/Main to Dev-Documentation
Change 4065344 by Andrew.Grant
Merging latest RemoteSession plugins & app from //UE4/Main to Dev-Documentation
Change 4065901 by Andrew.Grant
Restored RemoteSession changes that were removed in Dev-VR integration
Change 4066000 by Jim.Brown
Action RPG
- Changed level to include center obstruction for more varied gameplay.
- Added 4th weapon, Fire Axe
- Changed visuals of regular Axe
- Added damage curves and uniqe anim montages for each weapon (every weapon should behave slightly differnt now)
- Fixed lighting issue on foliage actors
- Added slight flicker to into screen lighting
Change 4067491 by Jim.Brown
Action RPG:
- Fixed rocks in middle of map not showing up in proper location
Change 4067781 by Jim.Brown
Action RPG:
- Fixed some clipping issues in map (rocks clipping into one another)
- Cleaned up, organized, and commented all UMG scripting
Change 4069094 by Sorin.Gradinaru
UE-57770 Resizing New Window results in grey space on device
#jira UE-57770
#4.20
#iOS
From 4039175 on //Dev-VR
Listen to the viewport resize event on the host
Change 4069098 by Sorin.Gradinaru
UE-57687 Support portrait orientation based on PIE window settings
#jira UE-57687
#iOS
#4.20
From CL4039449 //Dev-VR
Please note that remote host window can be resized (please see UE-57770), meaning that even if the windows setting were initially for protrait mode (eg. 750x1334), we can easily modify the window's aspect to look like a landscape app (1334x750), before connecting the client.
The host-client communication basically consists in sending screenshots of the host window.
After solving UE-57770, we'll no longer have gray areas, the host window's content is displayed on the client in full-screen mode (eventually stretched). This also solved the problem with the input mapping - another problem with UE-57770 was that the touch areas remained mapped full-screen (0.0 - width, height) on the iPad, even though the host window was resized.
Adding rotation support, to allow the user to rotate the device for a better experience, i.e. if the image looks stretched.
Change 4069102 by Sorin.Gradinaru
UE-57686 Interactable pixel border in Virtual Camera UI
#jira UE-57686
#iOS
#4.20
From CL 4039450 on Dev-VR
The Client/Host input mapping should take into account only the interactable area of the host window, without the title bar and borders
Change 4069107 by Jim.Brown
Action RPG:
New Skills:
- 1st Skill = Fireball
- 2nd Skill = Fire Wave
- 3rd Skill = Meteor (new!)
- 4th skill = Meteor Storm
- Adjusted price values to reflect power of skills.
- Tweaked fireball effect (range increase, size increase, wobbles a bit on cast instead of traveling in a perfectly straight line)
New weapon scaling:
- Cleaver is default (weakest)
- War Hammer is second (does highest damage per hit, but slowest ROF)
- Molten Axe is third (axe damage + fire damage) good combos
- Ember Sword is 4th (lower damage per hit, but extra fire damae+super fast ROF and powerful combos)
- New FX/anims/etc. to reflect power and abilities of weapons.
Change 4069219 by Andrew.Grant
Removed work-around for missing files
Change 4070190 by Andrew.Grant
Added icons for iOS RemoteSessionApp
Change 4071200 by Ben.Zeigler
Fix abilities on player character by adding an InventoryLoaded callback, this is needed because the pawn now spawns before the inventory loads due to changes to game mode
Change 4071868 by Jim.Brown
RPG Game:
- Changed Meteor ability to Combustion (to make it more obviously different from Meteor Storm).
- Fixed the broken Fire Axe attack so it would advance through all stages of the combo
- Updated format of all Ability descriptions so they were presented in the same way (capitals, no punctuation)
- removed blank combo sections from axe attack that were left in accidentally
- started groundwork for exploding Lvl3 Guardian.
Change 4071873 by Mitchell.Wilson
Submitting Match3 marketplace icon.
#jira UE-58774
Change 4071918 by paulo.souza
Action RPG:
- Lightmap render in production quality
- Changed stationary lights to be static
- Added vegetation to hide seams
Change 4073664 by paulo.souza
Action RPG:
- Fix: Rocks in the middle of the level were blocking the intro cut-scene
- Minor foliage fixes
Change 4074023 by Jim.Brown
Action RPG :
- Turned Level 2 enemy into a ranged attack enemy (he now spits a slime ball instead of melee attacks)
- More prep work for making lvl 3 enemy explode upon death.
- various tweaks and polish
Change 4074136 by paulo.souza
ActionRPG: Fixed on screen joypad not working properly
Change 4075235 by paulo.souza
Action RPG: Main menu screen re-lighting and animated light
Change 4075315 by James.McNatton
Added warning message textbox to RemoteSessionApp and hooked up a message to notify when connection was dropped #fyi Andrew.Grant #rb none
Change 4076500 by Jim.Brown
Action RPG:
- Rotated all spawn points (player and enemy) to opposite end of the map. Map seems better when viewed from this angle? Let me know what you think...
- Updated the material used on the pillars to reflect the same stone runes found in the main UI. WIP, not finished yet, but proof of concept.
Change 4076818 by paulo.souza
Action RPG:
- Camera collision issues
- AI logic cleanups and fixes
Change 4077051 by paulo.souza
ActionRPG:
- Fix: Loading screen uses the new logo
- Shows game-over screen when all waves are finished
- PlayerStart position
Change 4077828 by Sam.Deiter
Adjusting the lighting for the foliage as it was broken after building lighting.
Change 4078833 by paulo.souza
ActionRPG:
- Fix: Wave spawning freezing after wave 1
- Imported and converted all animations/montages to use skeleton from Infinity Blade
- Re-imported "warrior" SM from Infinity blade
- New hatchet mesh
Change 4079024 by Jim.Brown
Action RPG:
- Changed impact to be generic pouf instead of fire.
- Changed Guardian Slime attack to be a lob instead of a direct line of fire.
Change 4079980 by paulo.souza
ActionRPG: Fix missing AnimBP references
Change 4080097 by Jim.Brown
Action RPG:
- Converted Cleaver to new weapon (looks very different from Axe now)
- Added temp icon to UI. Polished version WIP.
#Paulo.Souza, Sam.Deiter
Change 4080099 by Sam.Deiter
Adding an IsValid node to the Recived Notify End Function in the WeaponAttackNS Blueprint. It was giving an error after the game was closed.
Change 4080205 by Jim.Brown
Action RPG:
- Removed cast animation from NPC Behavior Tree (no longer needed as idle since the anim was fixed and cast animation is now used by Lvl2 enemies).
Change 4080598 by Jim.Brown
Action RPG:
- Fixed shader on Rock Rune surfaces
- Tweaks to Slimeball attack (now arcs, moves more realistically, looks better overall)
Change 4080738 by paulo.souza
ActionRPG:
- Fix: Rocks where colliding with the player's spring arm
- Fix: Wave spawner stuck at Wave 4 (Spider was never destroyed)
- Fix: Mana/health potion were spawning attached emitters
- Fix: Weapon effects were spawning off character's feet
Change 4081177 by Jim.Brown
Action RPG:
- Removed all unused modules and emitters from Particle Systems.
- Optimization pass on a few systems to remove dynamic lights, extra particles, etc. where they weren't needed (or rendering on mobile)
- 1st pass at priortization / significance setup
Change 4082335 by paulo.souza
ActionRPG:
- Fix: Blocking volumes not working in cooked build: Somehow bNotForClientOrServer was set as True on volume brushes.
- Fix: Not creating initial weapons during loading
- UI test: Moving auto-play button to top
- Unifying physics assets and redirectors
- Barbarous material roughness map
Change 4083255 by Jim.Brown
Action RPG:
- Updated Hatchet icon to replace placeholder that was there.
- Tweaked progression. I was still able to complete with basic weapon (Hatchet), but it was more difficult and required planning (no longer 100% given that you will have enough time). I think that's a good thing? LMK!
Change 4083390 by paulo.souza
ActionRPG:
- Fix: Character rotation reset when attacking or rolling if not moving
- Delete unused BT nodes
Change 4083842 by paulo.souza
ActionRPG: Update HUD icon when switching weapons
Change 4084420 by Jim.Brown
Action RPG:
- Tweaked Lvl2 Guardian attack behavior (they should properly attack from range now)
- Added extra column in distance to help with parralax / depth in the scene
- Tweaked normals on column per Paulo's feedback
- Slight tweak to Character roughness (moved beard into channel with skin so it wasn't shiny)
- Adjusted intro cine:
---- Slighlty tighter camera angle in opening shot to cover the character feet sliding unrealistically on the ground
---- Changed Guardian animations so they were not mirrors of each other (looked odd that they would both be doing the exact same thing)
Change 4085038 by Ben.Zeigler
Add BeginPossessPawn and EndPossessPawn events to RPGPlayerControllerBase for initialization events
These may make sense on base controller/playercontroller as well, but it may conflict with game overrides that are very common
Change 4085228 by paulo.souza
ActionRPG:
- Re-enable damage root motion animations
- Enable falldown animations on Goblins when hit by non-melee attacks
- Delete unused variables from parent BPs
- Joypad support
Change 4085941 by Andrew.Grant
Fixed issue where client and server were using their respective project versions and not a shared verson number
Change 4086525 by Ben.Zeigler
Fix race condition where it may spawn the player pawn before loading the world. We now delay spawning until the start play event goes off, and don't initialize the UI until the controller possesses a pawn
Change 4086939 by Ben.Zeigler
Some player/game mode BP cleanup, fixed some runtime warnings from last checkin
Change 4087732 by Sam.Deiter
Re-building the reflection captures as they where always saying they needed to be re-built.
Change 4087740 by Sam.Deiter
Adding a isValid node to the blueprint to stop an error from happeing in the log.
Change 4088038 by paulo.souza
ActionRPG:
- Player physics asset
- Main title screen has a QUIT buton when not running on mobile
- Fix: Virtual joypad showing during sequences
Change 4088575 by paulo.souza
ActionRPG: Project settings/name update
Change 4089005 by Sorin.Gradinaru
UE-59360 BackChannel and RemoteSession plugins don't have Epic Games as authors
#jira UE-59360
#4.20
Updating uplugin's fields "CreatedBy": "Epic Games, Inc." and "CreatedByURL": "http://epicgames.com",
Change 4089006 by Sorin.Gradinaru
UE-59314 RemoteSessionApp unreal console blocks 4+ multi-touch input from reaching host
#jira UE-59314
#4.20
Disable the console on 4 finger tap, on mobile platforms - DefaultInput.ini: bShowConsoleOnFourFingerTap=false
Change 4089007 by Sorin.Gradinaru
UE-58048 Second device does not autoconnect to session if the user quits out from the first device
#jira UE-58048
#iOS
#4.20
If the host's TCP socket was already connected, we get SE_ECONNRESET when trying to re-use it => when the client disconnects, we should also reset the host TCP socket.
Change 4089031 by Sorin.Gradinaru
UE-57987 White screen on device when connecting to Play in Viewport session
#jira UE-57987
#4.20
Engine: needed to refer SLevelViewport::ActiveViewport as TSharedPtr<FSceneViewport>
RemoteApp plugin: re-wrote input mapping (including the fix for UE-57686 Interactable pixel border in Virtual Camera UI) - generic code for UEEditor's vieport and standalone/floating windows
Change 4089239 by paulo.souza
ActionRPG: Moved emitter spawn to OnDeath event
Change 4090632 by paulo.souza
ActionRPG: Loading screen logo + iOS icons and launchscreens
[CL 4091939 by Mitchell Wilson in Main branch]
2018-05-24 11:28:53 -04:00
2016-06-13 13:06:55 -04:00
* 변수 음영(shadowed)은 허용되지 않습니다. C++ 에서는 외부 영역에서의 변수를 음영 처리하는 것이 가능한데, 독자에게 애매한 느낌을 줄 수 있습니다. 예로 다음은 이 멤버 함수에서 Count 변수를 쓸 수 있는 방식이 세 가지입니다:
class FSomeClass
{
public:
void Func(const int32 Count)
{
for (int32 Count = 0; Count != 10; ++Count)
{
// Use Count
}
}
private:
int32 Count;
};