C# Class Warcraft.WMO.RootFile.Chunks.ModelDoodadSets

Represents a list of doodad sets present in this model. Each set is stored separately in this block, and defines a list of doodad instances to render when the set is selected.
Inheritance: IRIFFChunk, IBinarySerializable
显示文件 Open project: Nihlus/libwarcraft Class Usage Examples

Public Properties

Property Type Description
DoodadSets List

Public Methods

Method Description
GetSignature ( ) : string

Gets the static data signature of this data block type.

LoadBinaryData ( byte inData ) : void

Deserialzes the provided binary data of the object. This is the full data block which follows the data signature and data block length.

ModelDoodadSets ( ) : System.Collections.Generic

Creates a new, empty doodad set block.

ModelDoodadSets ( byte inData ) : System.Collections.Generic

Deserializes a doodad set block from binary data.

Serialize ( ) : byte[]

Serializes the current object into a byte array.

Method Details

GetSignature() public method

Gets the static data signature of this data block type.
public GetSignature ( ) : string
return string

LoadBinaryData() public method

Deserialzes the provided binary data of the object. This is the full data block which follows the data signature and data block length.
public LoadBinaryData ( byte inData ) : void
inData byte The binary data containing the object.
return void

ModelDoodadSets() public method

Creates a new, empty doodad set block.
public ModelDoodadSets ( ) : System.Collections.Generic
return System.Collections.Generic

ModelDoodadSets() public method

Deserializes a doodad set block from binary data.
public ModelDoodadSets ( byte inData ) : System.Collections.Generic
inData byte The binary data containing the doodad set object.
return System.Collections.Generic

Serialize() public method

Serializes the current object into a byte array.
public Serialize ( ) : byte[]
return byte[]

Property Details

DoodadSets public_oe property

A list of the doodad sets contained in this chunk.
public List DoodadSets
return List