You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17430120 and Dev-PerfTest @17437669 [CL 17463546 by aurel cordonnier in ue5-main branch]
32 lines
743 B
C++
32 lines
743 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "DatasmithSketchUpCommon.h"
|
|
|
|
// SketchUp SDK.
|
|
#include "DatasmithSketchUpSDKBegins.h"
|
|
#include "SketchUpAPI/geometry.h"
|
|
#include "SketchUpAPI/model/uv_helper.h"
|
|
#include "DatasmithSketchUpSDKCeases.h"
|
|
|
|
// Datasmith SDK.
|
|
#include "Containers/Array.h"
|
|
#include "Containers/Set.h"
|
|
#include "Containers/UnrealString.h"
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
|
|
namespace DatasmithSketchUp
|
|
{
|
|
class FDatasmithInstantiatedMesh
|
|
{
|
|
public:
|
|
TSharedPtr<IDatasmithMeshElement> DatasmithMesh;
|
|
TMap<FEntityIDType, int32> SlotIdForMaterialID;
|
|
bool bIsUsingInheritedMaterial; // Whether mesh has faces without material assigned(so override/inherited material will apply)
|
|
};
|
|
}
|
|
|
|
|