Exemplo n.º 1
0
 protected BaseActorNode(string name, string actorLabel, SpawnCollisionHandlingMethod spawnCollisionHandlingMethod, string folderPath, string rootComponentName, ResourceReference archetype, Node[] children = null)
     : base(name, children)
 {
     ActorLabel = actorLabel;
     SpawnCollisionHandlingMethod = spawnCollisionHandlingMethod;
     FolderPath        = folderPath;
     RootComponentName = rootComponentName;
     Archetype         = archetype;
 }
 public DirectionalLightActor(string name, ResourceReference archetype, string actorLabel, SpawnCollisionHandlingMethod spawnCollisionHandlingMethod, string folderPath, string rootComponentName, Node[] children, string directionalLightComponentName)
     : base(name, actorLabel, spawnCollisionHandlingMethod, folderPath, rootComponentName, archetype, children)
 {
     DirectionalLightComponentName = directionalLightComponentName;
 }
Exemplo n.º 3
0
 public StaticMeshActor(string name, ResourceReference archetype, string actorLabel, SpawnCollisionHandlingMethod spawnCollisionHandlingMethod, string folderPath, string rootComponentName, Node[] children, string staticMeshComponentName)
     : base(name, actorLabel, spawnCollisionHandlingMethod, folderPath, rootComponentName, archetype, children)
 {
     StaticMeshComponentName = staticMeshComponentName;
 }
 public SphereReflectionCaptureActor(string name, ResourceReference archetype, string actorLabel, SpawnCollisionHandlingMethod spawnCollisionHandlingMethod, string folderPath, string rootComponentName, Node[] children, string captureComponentName)
     : base(name, actorLabel, spawnCollisionHandlingMethod, folderPath, rootComponentName, archetype, children)
 {
     CaptureComponentName = captureComponentName;
 }
Exemplo n.º 5
0
 public ExponentialHeightFog(string name, ResourceReference archetype, string actorLabel, SpawnCollisionHandlingMethod spawnCollisionHandlingMethod, string folderPath, string rootComponentName, Node[] children)
     : base(name, actorLabel, spawnCollisionHandlingMethod, folderPath, rootComponentName, archetype, children)
 {
 }