1
0
KF2-Dev-Scripts/Engine/Classes/RB_ConstraintDrawComponent.uc
2020-12-13 18:01:13 +03:00

30 lines
625 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class RB_ConstraintDrawComponent extends PrimitiveComponent
native(Physics);
cpptext
{
// Primitive Component interface
virtual FPrimitiveSceneProxy* CreateSceneProxy();
/**
* Update the bounds of the component.
*/
virtual void UpdateBounds();
/**
* Retrieves the materials used in this component
*
* @param OutMaterials The list of used materials.
*/
virtual void GetUsedMaterials( TArray<UMaterialInterface*>& OutMaterials ) const;
}
var() MaterialInterface LimitMaterial;
defaultproperties
{
}