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 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 |
//============================================================================= // ReachSpec. // // A Reachspec describes the reachability requirements between two NavigationPoints // //============================================================================= class ReachSpec extends Object native; /* enum EReachSpecFlags { R_WALK = 1, //walking required R_FLY = 2, //flying required R_SWIM = 4, //swimming required R_JUMP = 8, // jumping required R_DOOR = 16, R_SPECIAL = 32, R_LADDER = 64, R_PROSCRIBED = 128, R_FORCED = 256, R_PLAYERONLY = 512 }; */ var int Distance; var const NavigationPoint Start; // navigationpoint at start of this path var const NavigationPoint End; // navigationpoint at endpoint of this path (next waypoint or goal) var int CollisionRadius; var int CollisionHeight; var int reachFlags; // see EReachSpecFlags definition in UnPath.h var int MaxLandingVelocity; var byte bPruned; var bool bForced; defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |