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

26 lines
520 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class DrawBoxComponent extends PrimitiveComponent
native
noexport
collapsecategories
hidecategories(Object)
editinlinenew;
var() color BoxColor;
var() material BoxMaterial;
var() vector BoxExtent;
var() bool bDrawWireBox;
var() bool bDrawLitBox;
var() bool bDrawOnlyIfSelected;
defaultproperties
{
BoxColor=(R=255,G=0,B=0,A=255)
BoxExtent=(X=200.0, Y=200.0, Z=200.0)
bDrawWireBox=true
HiddenGame=True
}