1
0
KF2-Dev-Scripts/Engine/Classes/StaticMeshComponentFactory.uc

26 lines
560 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class StaticMeshComponentFactory extends MeshComponentFactory
native
hidecategories(Object)
collapsecategories
editinlinenew;
var() StaticMesh StaticMesh;
cpptext
{
virtual UBOOL FactoryIsValid() { return StaticMesh != NULL && Super::FactoryIsValid(); }
virtual UPrimitiveComponent* CreatePrimitiveComponent(UObject* InOuter);
}
defaultproperties
{
CollideActors=True
BlockActors=True
BlockZeroExtent=True
BlockNonZeroExtent=True
BlockRigidBody=True
}