Class ChoreoActor
Namespace: ValveResourceFormat.ResourceTypes.Choreo
Assembly: ValveResourceFormat.dll
Represents an actor in a choreography scene.
csharp
public class ChoreoActorInheritance
Constructors
ChoreoActor(string, ChoreoChannel[], bool)
Initializes a new instance of the class.
csharp
public ChoreoActor(string name, ChoreoChannel[] channels, bool isActive)Parameters
name string
The name of the actor.
channels ChoreoChannel[]
The channels associated with this actor.
isActive bool
Whether the actor is active.
Properties
Channels
Gets the channels associated with this actor.
csharp
public ChoreoChannel[] Channels { get; }Property Value
IsActive
Gets a value indicating whether the actor is active.
csharp
public bool IsActive { get; }Property Value
Name
Gets the name of the actor.
csharp
public string Name { get; }Property Value
Methods
ToKeyValues()
Converts this actor to a .
csharp
public KVObject ToKeyValues()Returns
A representing this actor.

