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

25 lines
652 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// DefaultPhysicsVolume: the default physics volume for areas of the level with
// no physics volume specified
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
//=============================================================================
class DefaultPhysicsVolume extends PhysicsVolume
native
notplaceable
transient;
event Destroyed()
{
`log(self$" destroyed!");
assert(false);
}
defaultproperties
{
// Visual things should be ticked in parallel with physics
TickGroup=TG_DuringAsyncWork
bStatic=false
bNoDelete=false
}