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

