Navigation
API > API/Plugins > API/Plugins/RigLogicLib > API/Plugins/RigLogicLib/dna > API/Plugins/RigLogicLib/dna/BinaryStreamReader > API/Plugins/RigLogicLib/dna/BinaryStreamReader/create
Warnings All values in the array must be less than the value returned by getLODCount. There cannot be more elements in the array than the value returned by getLODCount. * User is responsible for releasing the returned pointer by calling destroy.
References
Module | RigLogicLib |
Header | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Public/dna/BinaryStreamReader.h |
Include | #include "dna/BinaryStreamReader.h" |
Source | /Engine/Plugins/Animation/RigLogic/Source/RigLogicLib/Private/dna/stream/BinaryStreamReaderImpl.cpp |
static BinaryStreamReader * create
(
BoundedIOStream * stream,
DataLayer layer,
UnknownLayerPolicy policy,
std::uint16_t * lods,
std::uint16_t lodCount,
MemoryResource * memRes
)
Remarks
The Definition data layer depends on and thus implicitly loads the Descriptor layer. The Behavior data layer depends on and thus implicitly loads the Definition layer. The Geometry data layer depends on and thus also implicitly loads the Definition layer. The MachineLearnedBehavior data layer depends on and thus also implicitly loads the Definition layer.
All values in the array must be less than the value returned by getLODCount.
There cannot be more elements in the array than the value returned by getLODCount.
If a memory resource is not given, a default allocation mechanism will be used.
User is responsible for releasing the returned pointer by calling destroy.
Parameters
Name | Description |
---|---|
stream | Source stream from which data is going to be read. |
layer | Specify the layer up to which the data needs to be loaded. |
policy | Specify whether unknown layers are to be preserved or just ignored. |
lods | An array specifying which exact lods to load. |
lodCount | The number of elements in the lods array. |
memRes | Memory resource to be used for allocations. |