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 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 00157 00158 00159 00160 00161 00162 00163 00164 00165 00166 00167 00168 00169 00170 00171 00172 00173 00174 00175 00176 00177 00178 00179 00180 00181 00182 00183 00184 00185 00186 00187 00188 00189 00190 00191 00192 00193 00194 00195 00196 00197 00198 00199 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 |
class InterpTrackMove extends InterpTrack native(Interpolation); /** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. * * Track containing data for moving an actor around over time. * There is no UpdateTrack function. In the game, its the PHYS_Interpolating physics mode which * updates the position based on the interp track. */ // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) /** Actual position keyframe data. */ var InterpCurveVector PosTrack; /** Actual rotation keyframe data, stored as Euler angles in degrees, for easy editing on curve. */ var InterpCurveVector EulerTrack; /** * Array of group names to retrieve position and rotation data from instead of using the datastored in the keyframe. * A value of NAME_None means to use the PosTrack and EulerTrack data for the keyframe. * There needs to be the same amount of elements in this array as there are keyframes. */ struct native InterpLookupPoint { var name GroupName; var float Time; }; struct native InterpLookupTrack { structcpptext { /** Add a new keypoint to the LookupTrack. Returns the index of the new key.*/ INT AddPoint( const FLOAT InTime, FName &InGroupName ) { INT PointIdx=0; for( PointIdx=0; PointIdx<Points.Num() && Points(PointIdx).Time < InTime; PointIdx++); Points.Insert(PointIdx); Points(PointIdx).Time = InTime; Points(PointIdx).GroupName = InGroupName; return PointIdx; } /** Move a keypoint to a new In value. This may change the index of the keypoint, so the new key index is returned. */ INT MovePoint( INT PointIndex, FLOAT NewTime ) { if( PointIndex < 0 || PointIndex >= Points.Num() ) { return PointIndex; } FName GroupName = Points(PointIndex).GroupName; Points.Remove(PointIndex); const INT NewPointIndex = AddPoint( NewTime, GroupName ); return NewPointIndex; } } var array<InterpLookupPoint> Points; }; var InterpLookupTrack LookupTrack; /** When using IMR_LookAtGroup, specifies the Group which this track should always point its actor at. */ var() name LookAtGroupName; /** Controls the tightness of the curve for the translation path. */ var() float LinCurveTension; /** Controls the tightness of the curve for the rotation path. */ var() float AngCurveTension; /** * Use a Quaternion linear interpolation between keys. * This is robust and will find the 'shortest' distance between keys, but does not support ease in/out. */ var() bool bUseQuatInterpolation; /** In the editor, show a small arrow at each keyframe indicating the rotation at that key. */ var() bool bShowArrowAtKeys; /** Disable previewing of this track - will always position Actor at Time=0.0. Useful when keyframing an object relative to this group. */ var() bool bDisableMovement; /** If false, when this track is displayed on the Curve Editor in Matinee, do not show the Translation tracks. */ var() bool bShowTranslationOnCurveEd; /** If false, when this track is displayed on the Curve Editor in Matinee, do not show the Rotation tracks. */ var() bool bShowRotationOnCurveEd; /** If true, 3D representation of this track in the 3D viewport is disabled. */ var() bool bHide3DTrack; enum EInterpTrackMoveFrame { /** Track should be fixed relative to the world. */ IMF_World, /** Track should move relative to the initial position of the actor when the interp sequence was started. */ IMF_RelativeToInitial }; /** Indicates what the movement track should be relative to. */ var() editconst EInterpTrackMoveFrame MoveFrame; enum EInterpTrackMoveRotMode { /** Should take orientation from the . */ IMR_Keyframed, /** Point the X-Axis of the controlled Actor at the group specified by LookAtGroupName. */ IMR_LookAtGroup /** Should look along the direction of the translation path, with Z always up. */ // IMR_LookAlongPath // TODO! }; var() EInterpTrackMoveRotMode RotMode; defaultproperties { bShowTranslationOnCurveEd=True TrackInstClass=Class'Engine.InterpTrackInstMove' TrackTitle="Movement" bOnePerGroup=True Name="Default__InterpTrackMove" ObjectArchetype=InterpTrack'Engine.Default__InterpTrack' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |