Worst-case scenario: the UEd Goblin wipes the map and burns down your house.
UE3:PhysicalMaterialPropertyBase (UDK)
Object >> PhysicalMaterialPropertyBase |
- Package:
- Engine
- Direct subclass:
- UTPhysicalMaterialProperty
- This class in other games:
- UT3
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
This is the PhysicalMaterialPropertyBase which the PhysicalMaterial has. Individual games should derive their own MyGamPhysicalMaterialProperty.
Then inside that object you can either have a bunch of properties or have it point to your game specific objects.
(e.g. You have have impact sounds and impact effects for all of the weapons in your game. So you have an .uc object which contains the data needed per material type and then you have your MyGamePhysicalMaterialProperty point to that. )
class MyGamePhysicalMaterialProperty extends PhysicalMaterialPropertyBase
editinlinenew;
var() editinline MyGameSpecificImpactEffects ImpactEffects; var() editinline MyGameSpecificImpactSounds ImpactSounds;
Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.