Copying //UE4/Dev-Build to Dev-Main (//UE4/Dev-Main)

#rb none
#rnx

#ROBOMERGE-OWNER: lina.halper
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 6631504 in //UE4/Main/...
#ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) (v365-6733468)

[CL 6748759 by ben marsh in Dev-Anim branch]
This commit is contained in:
ben marsh
2019-05-31 18:06:13 -04:00
parent 6ebb2a19d0
commit 83bd3cd7c6
599 changed files with 25292 additions and 8427 deletions

View File

@@ -215,6 +215,17 @@ namespace Tools.DotNETCommon
WriteValueInternal(Name, Value ? "true" : "false");
}
/// <summary>
/// Write a field name and enum value
/// </summary>
/// <typeparam name="T">The enum type</typeparam>
/// <param name="Name">Name of the field</param>
/// <param name="Value">Value for the field</param>
public void WriteEnumValue<T>(string Name, T Value) where T : struct
{
WriteValue(Name, Value.ToString());
}
void WriteCommaNewline()
{
if (bRequiresComma)