mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
24 lines
525 B
C++
24 lines
525 B
C++
#include "FortPickupEffect.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UMaterialInstanceDynamic* AFortPickupEffect::ApplyCosmeticOverridesToMaterial(UMeshComponent* MeshComponent, int32 MatIndex) {
|
|
return NULL;
|
|
}
|
|
|
|
AFortPickupEffect::AFortPickupEffect() {
|
|
this->StaticMesh = NULL;
|
|
this->SkeletalMesh = NULL;
|
|
this->ItemDefinition = NULL;
|
|
this->bDoNotShowSpawnParticles = false;
|
|
this->bDoNotTickSkeletalMeshComponents = true;
|
|
this->bOwnedByALocalPlayer = false;
|
|
this->bOwnedByPlayer = false;
|
|
this->bRandomRotation = false;
|
|
}
|
|
|