AGS.Types.AudioClipType.AudioClipType C# (CSharp) Method

AudioClipType() public method

public AudioClipType ( int typeID, string name, int maxChannels, int volumeReductionWhileSpeechPlaying, bool backwardsCompatType, CrossfadeSpeed crossfading ) : System
typeID int
name string
maxChannels int
volumeReductionWhileSpeechPlaying int
backwardsCompatType bool
crossfading CrossfadeSpeed
return System
        public AudioClipType(int typeID, string name, int maxChannels, int volumeReductionWhileSpeechPlaying, bool backwardsCompatType, CrossfadeSpeed crossfading)
        {
            this.TypeID = typeID;
            this.Name = name;
            this.MaxChannels = maxChannels;
            this.VolumeReductionWhileSpeechPlaying = volumeReductionWhileSpeechPlaying;
            this.BackwardsCompatibilityType = backwardsCompatType;
            this.CrossfadeClips = crossfading;
        }

Same methods

AudioClipType::AudioClipType ( XmlNode node ) : System