Table of Contents

Class ChoreoChannel

Namespace
ValveResourceFormat.ResourceTypes.Choreo
Assembly
ValveResourceFormat.dll

Represents a channel in a choreography scene.

public class ChoreoChannel

Inheritance

Inherited Members

Constructors

ChoreoChannel(string, ChoreoEvent[], bool)

Initializes a new instance of the ValveResourceFormat.ResourceTypes.Choreo.ChoreoChannel class.

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.

public ChoreoEvent[] Events { get; }

Property Value

ChoreoEvent[]

IsActive

Gets a value indicating whether the channel is active.

public bool IsActive { get; }

Property Value

bool

Name

Gets the name of the channel.

public string Name { get; }

Property Value

string

Methods

ToKeyValues()

Converts this channel to a ValveResourceFormat.Serialization.KeyValues.KVObject.

public KVObject ToKeyValues()

Returns

KVObject

A ValveResourceFormat.Serialization.KeyValues.KVObject representing this channel.