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
Afficher le fichier Open project: Nihlus/libwarcraft Class Usage Examples

Méthodes publiques

Свойство Type Description
DoodadSets List

Méthodes publiques

Méthode 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 méthode

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

LoadBinaryData() public méthode

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.
Résultat void

ModelDoodadSets() public méthode

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

ModelDoodadSets() public méthode

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.
Résultat System.Collections.Generic

Serialize() public méthode

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

Property Details

DoodadSets public_oe property

A list of the doodad sets contained in this chunk.
public List DoodadSets
Résultat List