Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 |
/* epic =============================================== * class EdCoordSystem * * A custom coordinate system used by the editor. * * Copyright 1998-2011 Epic Games, Inc. All Rights Reserved. */ class EdCoordSystem extends Object hidecategories(Object) editinlinenew native; /** The matrix that defines this coordinate system. */ var() matrix M; /* A human readable description for use in the editor UI. */ var() string Desc; defaultproperties { Desc="Coord System" M=(XPlane=(X=1,Y=0,Z=0,W=0),YPlane=(X=0,Y=1,Z=0,W=0),ZPlane=(X=0,Y=0,Z=1,W=0),WPlane=(X=0,Y=0,Z=0,W=1)) } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |