I love the smell of UnrealEd crashing in the morning. – tarquin

UE3:PhysicalMaterialPropertyBase (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 10:11, 17 May 2008 by Wormbo (Talk | contribs) (Auto-generated page)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
UT3 Object >> PhysicalMaterialPropertyBase
Package: 
Engine
Direct subclass:
UTPhysicalMaterialProperty
This class in other games:
UDK

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.