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

28 lines
568 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class LevelGridVolumeRenderingComponent extends PrimitiveComponent
native
hidecategories(Object)
editinlinenew;
cpptext
{
/**
* Creates a new scene proxy for the path rendering component.
* @return Pointer to the FPathRenderingSceneProxy
*/
virtual FPrimitiveSceneProxy* CreateSceneProxy();
/** Sets the bounds of this primitive */
virtual void UpdateBounds();
};
defaultproperties
{
HiddenGame=true
AlwaysLoadOnClient=false
AlwaysLoadOnServer=false
}