Gah - a solution with more questions. – EntropicLqd

UE3:PhysicalMaterialPropertyBase (UDK)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UDK Object >> PhysicalMaterialPropertyBase
Package: 
Engine
Direct subclass:
UTPhysicalMaterialProperty
This class in other games:
UT3

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.