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

24 lines
500 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class LandscapeGizmoRenderComponent extends PrimitiveComponent
native(Terrain)
hidecategories(Object);
cpptext
{
/**
* Creates a new scene proxy for the path rendering component.
* @return Pointer to the FLandscapeGizmoSceneProxy
*/
virtual FPrimitiveSceneProxy* CreateSceneProxy();
};
defaultproperties
{
HiddenGame=true
AlwaysLoadOnClient=false
AlwaysLoadOnServer=false
bSelectable=false
}