|
| LMeshSource (const std::vector< FVertex > &InVertices, const std::vector< FIndex > &InIndices, const glm::mat4 &InTransform) |
|
| LMeshSource (const std::vector< FVertex > &InVertices, const std::vector< FIndex > &InIndices, const std::vector< LSubmesh > &InSubmeshes) |
|
FORCEINLINE std::vector< LSubmesh > & | GetSubmeshes () |
|
FORCEINLINE const std::vector< LSubmesh > & | GetSubmeshes () const |
|
FORCEINLINE const std::vector< FVertex > & | GetVertices () const |
|
FORCEINLINE const std::vector< FIndex > & | GetIndices () const |
|
FORCEINLINE bool | IsSubmeshRigged (const uint32_t SubmeshIndex) const |
|
FORCEINLINE const std::vector< FBoneInfluence > & | GetBoneInfluences () const |
|
FORCEINLINE std::vector< TObjectPtr< LMaterial > > & | GetMaterials () |
|
FORCEINLINE const std::vector< TObjectPtr< LMaterial > > & | GetMaterials () const |
|
FORCEINLINE const std::filesystem::path & | GetFilePath () const |
|
FORCEINLINE const std::vector< FTriangle > | GetTriangleCache (const uint32_t Index) const |
|
FORCEINLINE TObjectPtr< LVertexBuffer > | GetVertexBuffer () |
|
FORCEINLINE TObjectPtr< LIndexBuffer > | GetIndexBuffer () |
|
FORCEINLINE TObjectPtr< LVertexBuffer > | GetBoneInfluenceBuffer () |
|
FORCEINLINE const std::vector< FMeshNode > & | GetNodes () const |
|
FORCEINLINE const FMeshNode & | GetRootNode () const |
|
void | DumpVertexBuffer () |
|
virtual FORCEINLINE EAssetType | GetAssetType () const |
|
FORCEINLINE bool | HasFlag (const EAssetFlag Flag) const |
|
FORCEINLINE void | SetFlag (const EAssetFlag Flag, bool Value=true) |
|
virtual FORCEINLINE bool | IsValid () const |
|
virtual bool | operator== (const LAsset &Other) const |
|
virtual bool | operator!= (const LAsset &Other) const |
|
| LObject (const LObject &Other) |
|
virtual void | Initialize () |
| Initialize object.
|
|
virtual void | Destroy () |
| Destroy object, releasing all resources.
|
|
virtual FORCEINLINE bool | IsInitialized () const |
| Check if object is initialized.
|
|
FORCEINLINE FObjectHandle | GetObjectHandle () const |
| Get the object handle.
|
|
virtual FORCEINLINE bool | IsObjectValid () const |
| Check if object is valid for use.
|
|
virtual const LClass * | ObjectRegistration ()=0 |
| Register object class.
|
|
virtual FORCEINLINE const LClass * | GetClass () const |
| Get the class for this LObject.
|
|
virtual std::string | ClassName () const =0 |
| Get name of the LObject class.
|
|
LObject & | operator= (const LObject &Other) |
|
void | MarkAsGarbage () |
| Mark object as garbage.
|
|
template<typename T > |
T & | As () |
| Cast object to type T.
|
|
template<typename T > |
const T & | As () const |
| Cast object to type T.
|
|
template<typename T > |
bool | IsA () const |
| Check if the object is or is a derivation of type T.
|
|
virtual FORCEINLINE bool | IsAsset () const |
| Check if object is an asset.
|
|
FORCEINLINE uint32_t | GetReferenceCount () const |
| Return current reference count from all object pointers.
|
|
template<typename OtherClassType > |
FORCEINLINE bool | IsA (OtherClassType OtherObject) const |
| Check if the object is the same type as the passed object's.
|
|