You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb rinat.abdrashitov #preflight 6262fd04f606b184f0a24e03 [CL 19870471 by Jimmy Andrews in ue5-main branch]
22 lines
671 B
C++
22 lines
671 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Physics/PhysicsDataCollection.h"
|
|
#include "Drawing/PreviewGeometryActor.h"
|
|
|
|
namespace UE
|
|
{
|
|
namespace PhysicsTools
|
|
{
|
|
/**
|
|
* Create line sets in a UPreviewGeometry for all the elements in a Physics Data Collection.
|
|
* Spheres and Capsules are drawn as 3-axis wireframes. Convexes are added as wireframes.
|
|
*/
|
|
void MESHMODELINGTOOLSEXP_API InitializePreviewGeometryLines(const FPhysicsDataCollection& PhysicsData, UPreviewGeometry* PreviewGeom,
|
|
const FColor& LineColor, float LineThickness, float DepthBias = 0.0, int32 CircleStepResolution = 16, bool bRandomColors = true );
|
|
}
|
|
}
|
|
|
|
|