Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/USkeletalMesh
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FMeshDescription * CreateMeshDescription
(
const int32 InLODIndex |
Creates a new, empty mesh description at the LOD index given. | Engine/SkeletalMesh.h | |
FMeshDescription * CreateMeshDescription
(
const int32 InLODIndex, |
Creates a new mesh description at the LOD index given, moving the contents of the given mesh description into it. | Engine/SkeletalMesh.h |
CreateMeshDescription(const int32)
Description
Creates a new, empty mesh description at the LOD index given. If there was a mesh description there prior, that object is destroyed.
| Name | CreateMeshDescription |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/SkeletalMesh.h |
| Include Path | #include "Engine/SkeletalMesh.h" |
| Source | /Engine/Source/Runtime/Engine/Private/SkeletalMesh.cpp |
FMeshDescription * CreateMeshDescription
(
const int32 InLODIndex
)
A_ pointer to the newly created object, or nullptr_ if the method was unable to create anything.
Parameters
| Name | Remarks |
|---|---|
| InLODIndex | The LOD index to create a new mesh description object at. |
CreateMeshDescription(const int32, FMeshDescription &&)
Description
Creates a new mesh description at the LOD index given, moving the contents of the given mesh description into it. If there was a mesh description there prior, that object is destroyed.
| Name | CreateMeshDescription |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/SkeletalMesh.h |
| Include Path | #include "Engine/SkeletalMesh.h" |
| Source | /Engine/Source/Runtime/Engine/Private/SkeletalMesh.cpp |
FMeshDescription * CreateMeshDescription
(
const int32 InLODIndex,
FMeshDescription && InMeshDescription
)
A_ pointer to the newly created object, or nullptr_ if the method was unable to create anything.
Parameters
| Name | Remarks |
|---|---|
| InLODIndex | The LOD index to create a new mesh description object at. |
| InMeshDescription | The mesh description object to initialize from as a copy. |