28 lines
568 B
Ucode
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
|
|
}
|