Overview | Package | Class | Source | Class tree | Glossary | Deus Ex 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 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 |
//============================================================================= // The brush class. // This is a built-in Unreal class and it shouldn't be modified. //============================================================================= class Brush extends Actor native; //----------------------------------------------------------------------------- // Variables. // CSG operation performed in editor. var() enum ECsgOper { CSG_Active, // Active brush. CSG_Add, // Add to world. CSG_Subtract, // Subtract from world. CSG_Intersect, // Form from intersection with world. CSG_Deintersect, // Form from negative intersection with world. } CsgOper; // Outdated. var const object UnusedLightMesh; var vector PostPivot; // Scaling. var() scale MainScale; var() scale PostScale; var scale TempScale; // Information. var() color BrushColor; var() int PolyFlags; var() bool bColored; defaultproperties { MainScale=(Scale=(X=1.000000,Y=1.000000,Z=1.000000)) PostScale=(Scale=(X=1.000000,Y=1.000000,Z=1.000000)) TempScale=(Scale=(X=1.000000,Y=1.000000,Z=1.000000)) bStatic=True bNoDelete=True bEdShouldSnap=True DrawType=DT_Brush bFixedRotationDir=True } |
Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |