Add some comments to the entries in EComponentCreationMethod

[CL 2495914 by Marc Audy in Main branch]
This commit is contained in:
Marc Audy
2015-03-30 14:05:53 -04:00
committed by Marc.Audy@epicgames.com
parent 6bd76e798e
commit 2790370327

View File

@@ -12,10 +12,10 @@ struct FReplicationFlags;
UENUM()
enum class EComponentCreationMethod : uint8
{
Native,
SimpleConstructionScript,
UserConstructionScript,
Instance,
Native, // A component that is part of a native class
SimpleConstructionScript, // A component that is created from a template defined in the Components section of the Blueprint
UserConstructionScript, // A dynamically created component, either from the UserConstructionScript or from a Add Component node in a Blueprint event graph
Instance, // A component added to a single Actor instance via the Component section of the Actor's details panel
};
/**