1
+ UObject . prototype . Modify = UObject . prototype . ModifyObject ;
1
2
UObject . prototype . ClearTimerbyFunctionName = UObject . prototype . K2_ClearTimer ;
2
3
UObject . prototype . GetTimerElapsedTimebyFunctionName = UObject . prototype . K2_GetTimerElapsedTime ;
3
4
UObject . prototype . GetTimerRemainingTimebyFunctionName = UObject . prototype . K2_GetTimerRemainingTime ;
@@ -14,6 +15,13 @@ UObject.prototype.GetClass = UObject.prototype.GetObjectClass;
14
15
Class . prototype . GetDisplayName = Class . prototype . GetClassDisplayName ;
15
16
Class . prototype . Equal = Class . prototype . EqualEqual_ClassClass ;
16
17
Class . prototype . NotEqual = Class . prototype . NotEqual_ClassClass ;
18
+ Widget . prototype . HasAnyUserFocusedDescendants = Widget . prototype . HasFocusedDescendants ;
19
+ WidgetBlueprintLibrary . prototype . DrawText = WidgetBlueprintLibrary . prototype . DrawTextFormatted ;
20
+ WidgetBlueprintLibrary . DrawText = WidgetBlueprintLibrary . DrawTextFormatted ;
21
+ WidgetBlueprintLibrary . prototype . DrawString = WidgetBlueprintLibrary . prototype . DrawText ;
22
+ WidgetBlueprintLibrary . DrawString = WidgetBlueprintLibrary . DrawText ;
23
+ WidgetBlueprintLibrary . prototype . CreateWidget = WidgetBlueprintLibrary . prototype . Create ;
24
+ WidgetBlueprintLibrary . CreateWidget = WidgetBlueprintLibrary . Create ;
17
25
ActorComponent . prototype . Tick = ActorComponent . prototype . ReceiveTick ;
18
26
ActorComponent . prototype . EndPlay = ActorComponent . prototype . ReceiveEndPlay ;
19
27
ActorComponent . prototype . BeginPlay = ActorComponent . prototype . ReceiveBeginPlay ;
@@ -123,17 +131,11 @@ AnimInstance.prototype.TimeRemaining = AnimInstance.prototype.GetInstanceAssetPl
123
131
AnimInstance . prototype . CurrentTime = AnimInstance . prototype . GetInstanceAssetPlayerTimeFraction ;
124
132
AnimInstance . prototype . CurrentTime = AnimInstance . prototype . GetInstanceAssetPlayerTime ;
125
133
AnimInstance . prototype . Length = AnimInstance . prototype . GetInstanceAssetPlayerLength ;
126
- Widget . prototype . HasAnyUserFocusedDescendants = Widget . prototype . HasFocusedDescendants ;
127
- WidgetBlueprintLibrary . prototype . DrawText = WidgetBlueprintLibrary . prototype . DrawTextFormatted ;
128
- WidgetBlueprintLibrary . DrawText = WidgetBlueprintLibrary . DrawTextFormatted ;
129
- WidgetBlueprintLibrary . prototype . DrawString = WidgetBlueprintLibrary . prototype . DrawText ;
130
- WidgetBlueprintLibrary . DrawString = WidgetBlueprintLibrary . DrawText ;
131
- WidgetBlueprintLibrary . prototype . CreateWidget = WidgetBlueprintLibrary . prototype . Create ;
132
- WidgetBlueprintLibrary . CreateWidget = WidgetBlueprintLibrary . Create ;
133
134
GameInstance . prototype . Shutdown = GameInstance . prototype . ReceiveShutdown ;
134
135
GameInstance . prototype . Init = GameInstance . prototype . ReceiveInit ;
135
136
GameInstance . prototype . TravelError = GameInstance . prototype . HandleTravelError ;
136
137
GameInstance . prototype . NetworkError = GameInstance . prototype . HandleNetworkError ;
138
+ World . prototype . Modify = World . prototype . InvalidateModelGeometry ;
137
139
World . prototype . LogBoxShape = World . prototype . LogBox ;
138
140
World . prototype . BoxOverlapActors = World . prototype . BoxOverlapActors_NEW ;
139
141
World . prototype . BoxOverlapComponents = World . prototype . BoxOverlapComponents_NEW ;
@@ -180,6 +182,7 @@ World.prototype.SingleSphereTraceByObjectDeprecated = World.prototype.SphereTrac
180
182
World . prototype . SphereTraceForObjects = World . prototype . SphereTraceSingleForObjects ;
181
183
World . prototype . SuggestProjectileVelocity = World . prototype . BlueprintSuggestProjectileVelocity ;
182
184
World . prototype . CreateWidget = World . prototype . Create ;
185
+ Level . prototype . Modify = Level . prototype . UpdateModelComponents ;
183
186
PlayerController . prototype . ConvertWorldLocationToScreenLocation = PlayerController . prototype . ProjectWorldLocationToScreen ;
184
187
PlayerController . prototype . ConvertScreenLocationToWorldSpace = PlayerController . prototype . DeprojectScreenPositionToWorld ;
185
188
PlayerController . prototype . ConvertMouseLocationToWorldSpace = PlayerController . prototype . DeprojectMousePositionToWorld ;
@@ -740,3 +743,100 @@ InAppPurchaseQueryCallbackProxy.prototype.ReadInAppPurchaseInformation = InAppPu
740
743
InAppPurchaseQueryCallbackProxy . ReadInAppPurchaseInformation = InAppPurchaseQueryCallbackProxy . CreateProxyObjectForInAppPurchaseQuery ;
741
744
LeaderboardQueryCallbackProxy . prototype . ReadLeaderboardInteger = LeaderboardQueryCallbackProxy . prototype . CreateProxyObjectForIntQuery ;
742
745
LeaderboardQueryCallbackProxy . ReadLeaderboardInteger = LeaderboardQueryCallbackProxy . CreateProxyObjectForIntQuery ;
746
+ JavascriptEditorLibrary . prototype . Modify = JavascriptEditorLibrary . prototype . UpdateModelComponents ;
747
+ JavascriptEditorLibrary . Modify = JavascriptEditorLibrary . UpdateModelComponents ;
748
+ JavascriptEditorLibrary . prototype . Modify = JavascriptEditorLibrary . prototype . ModifyObject ;
749
+ JavascriptEditorLibrary . Modify = JavascriptEditorLibrary . ModifyObject ;
750
+ JavascriptEditorLibrary . prototype . Modify = JavascriptEditorLibrary . prototype . InvalidateModelGeometry ;
751
+ JavascriptEditorLibrary . Modify = JavascriptEditorLibrary . InvalidateModelGeometry ;
752
+ Guid . prototype . ToString = Guid . prototype . Conv_GuidToString ;
753
+ Guid . prototype . Equal = Guid . prototype . EqualEqual_GuidGuid ;
754
+ Guid . prototype . IsValid = Guid . prototype . IsValid_Guid ;
755
+ Guid . prototype . NotEqual = Guid . prototype . NotEqual_GuidGuid ;
756
+ Vector . prototype . ToString = Vector . prototype . Conv_VectorToString ;
757
+ Vector . prototype . ToLinearColor = Vector . prototype . Conv_VectorToLinearColor ;
758
+ Vector . prototype . RotationFromXVector = Vector . prototype . Conv_VectorToRotator ;
759
+ Vector . prototype . ToTransform = Vector . prototype . Conv_VectorToTransform ;
760
+ Vector . prototype . ToVector2D = Vector . prototype . Conv_VectorToVector2D ;
761
+ Vector . prototype . CrossProduct = Vector . prototype . Cross_VectorVector ;
762
+ Vector . prototype . DotProduct = Vector . prototype . Dot_VectorVector ;
763
+ Vector . prototype . Equal = Vector . prototype . EqualEqual_VectorVector ;
764
+ Vector . prototype . RotateVector = Vector . prototype . GreaterGreater_VectorRotator ;
765
+ Vector . prototype . UnrotateVector = Vector . prototype . LessLess_VectorRotator ;
766
+ Vector . prototype . LinePlaneIntersection = Vector . prototype . LinePlaneIntersection_OriginNormal ;
767
+ Vector . prototype . Normalize = Vector . prototype . Normal ;
768
+ Vector . prototype . NotEqual = Vector . prototype . NotEqual_VectorVector ;
769
+ Vector . prototype . RotateVectorAroundAxis = Vector . prototype . RotateAngleAxis ;
770
+ Vector . prototype . Ease = Vector . prototype . VEase ;
771
+ Vector . prototype . Lerp = Vector . prototype . VLerp ;
772
+ Vector . prototype . VectorLength = Vector . prototype . VSize ;
773
+ Vector . prototype . VectorLengthSquared = Vector . prototype . VSizeSquared ;
774
+ Vector2D . prototype . ToString = Vector2D . prototype . Conv_Vector2dToString ;
775
+ Vector2D . prototype . ToVector = Vector2D . prototype . Conv_Vector2DToVector ;
776
+ Vector2D . prototype . CrossProduct = Vector2D . prototype . CrossProduct2D ;
777
+ Vector2D . prototype . DotProduct = Vector2D . prototype . DotProduct2D ;
778
+ Vector2D . prototype . Normalize2D = Vector2D . prototype . Normal2D ;
779
+ Vector2D . prototype . Vector2dLength = Vector2D . prototype . VSize2D ;
780
+ Vector2D . prototype . Vector2dLengthSquared = Vector2D . prototype . VSize2DSquared ;
781
+ Rotator . prototype . ToString = Rotator . prototype . Conv_RotatorToString ;
782
+ Rotator . prototype . CombineRotators = Rotator . prototype . ComposeRotators ;
783
+ Rotator . prototype . GetRotationXVector = Rotator . prototype . Conv_RotatorToVector ;
784
+ Rotator . prototype . Equal = Rotator . prototype . EqualEqual_RotatorRotator ;
785
+ Rotator . prototype . ScaleRotator = Rotator . prototype . Multiply_RotatorFloat ;
786
+ Rotator . prototype . ScaleRotator = Rotator . prototype . Multiply_RotatorInt ;
787
+ Rotator . prototype . InvertRotator = Rotator . prototype . NegateRotator ;
788
+ Rotator . prototype . Delta = Rotator . prototype . NormalizedDeltaRotator ;
789
+ Rotator . prototype . NotEqual = Rotator . prototype . NotEqual_RotatorRotator ;
790
+ Rotator . prototype . Ease = Rotator . prototype . REase ;
791
+ Rotator . prototype . Lerp = Rotator . prototype . RLerp ;
792
+ Color . prototype . ToLinearColor = Color . prototype . Conv_ColorToLinearColor ;
793
+ LinearColor . prototype . ToString = LinearColor . prototype . Conv_ColorToString ;
794
+ LinearColor . prototype . ToColor = LinearColor . prototype . Conv_LinearColorToColor ;
795
+ LinearColor . prototype . ToVector = LinearColor . prototype . Conv_LinearColorToVector ;
796
+ LinearColor . prototype . HSVtoRGB = LinearColor . prototype . HSVToRGB_Vector ;
797
+ LinearColor . prototype . Lerp = LinearColor . prototype . LinearColorLerp ;
798
+ LinearColor . prototype . LerpUsingHSV = LinearColor . prototype . LinearColorLerpUsingHSV ;
799
+ LinearColor . prototype . RGBtoHSV = LinearColor . prototype . RGBToHSV_Vector ;
800
+ Transform . prototype . ToString = Transform . prototype . Conv_TransformToString ;
801
+ Transform . prototype . EqualTransform = Transform . prototype . EqualEqual_TransformTransform ;
802
+ Transform . prototype . NearlyEqual = Transform . prototype . NearlyEqual_TransformTransform ;
803
+ Transform . prototype . Ease = Transform . prototype . TEase ;
804
+ Transform . prototype . Lerp = Transform . prototype . TLerp ;
805
+ DateTime . prototype . AsDate = DateTime . prototype . AsDate_DateTime ;
806
+ DateTime . prototype . AsDateTime = DateTime . prototype . AsDateTime_DateTime ;
807
+ DateTime . prototype . AsTime = DateTime . prototype . AsTime_DateTime ;
808
+ DateTime . prototype . Equal = DateTime . prototype . EqualEqual_DateTimeDateTime ;
809
+ DateTime . prototype . NotEqual = DateTime . prototype . NotEqual_DateTimeDateTime ;
810
+ Timespan . prototype . AsTimespan = Timespan . prototype . AsTimespan_Timespan ;
811
+ Timespan . prototype . Equal = Timespan . prototype . EqualEqual_TimespanTimespan ;
812
+ Timespan . prototype . NotEqual = Timespan . prototype . NotEqual_TimespanTimespan ;
813
+ InputEvent . prototype . IsAltDown = InputEvent . prototype . InputEvent_IsAltDown ;
814
+ InputEvent . prototype . IsCommandDown = InputEvent . prototype . InputEvent_IsCommandDown ;
815
+ InputEvent . prototype . IsControlDown = InputEvent . prototype . InputEvent_IsControlDown ;
816
+ InputEvent . prototype . IsLeftAltDown = InputEvent . prototype . InputEvent_IsLeftAltDown ;
817
+ InputEvent . prototype . IsLeftCommandDown = InputEvent . prototype . InputEvent_IsLeftCommandDown ;
818
+ InputEvent . prototype . IsLeftControlDown = InputEvent . prototype . InputEvent_IsLeftControlDown ;
819
+ InputEvent . prototype . IsLeftShiftDown = InputEvent . prototype . InputEvent_IsLeftShiftDown ;
820
+ InputEvent . prototype . IsRepeat = InputEvent . prototype . InputEvent_IsRepeat ;
821
+ InputEvent . prototype . IsRightAltDown = InputEvent . prototype . InputEvent_IsRightAltDown ;
822
+ InputEvent . prototype . IsRightCommandDown = InputEvent . prototype . InputEvent_IsRightCommandDown ;
823
+ InputEvent . prototype . IsRightControlDown = InputEvent . prototype . InputEvent_IsRightControlDown ;
824
+ InputEvent . prototype . IsRightShiftDown = InputEvent . prototype . InputEvent_IsRightShiftDown ;
825
+ InputEvent . prototype . IsShiftDown = InputEvent . prototype . InputEvent_IsShiftDown ;
826
+ UPointerEvent . prototype . GetCursorDelta = UPointerEvent . prototype . PointerEvent_GetCursorDelta ;
827
+ UPointerEvent . prototype . GetEffectingButton = UPointerEvent . prototype . PointerEvent_GetEffectingButton ;
828
+ UPointerEvent . prototype . GetGestureDelta = UPointerEvent . prototype . PointerEvent_GetGestureDelta ;
829
+ UPointerEvent . prototype . GetLastScreenSpacePosition = UPointerEvent . prototype . PointerEvent_GetLastScreenSpacePosition ;
830
+ UPointerEvent . prototype . GetPointerIndex = UPointerEvent . prototype . PointerEvent_GetPointerIndex ;
831
+ UPointerEvent . prototype . GetScreenSpacePosition = UPointerEvent . prototype . PointerEvent_GetScreenSpacePosition ;
832
+ UPointerEvent . prototype . GetTouchpadIndex = UPointerEvent . prototype . PointerEvent_GetTouchpadIndex ;
833
+ UPointerEvent . prototype . GetUserIndex = UPointerEvent . prototype . PointerEvent_GetUserIndex ;
834
+ UPointerEvent . prototype . GetWheelDelta = UPointerEvent . prototype . PointerEvent_GetWheelDelta ;
835
+ UPointerEvent . prototype . IsMouseButtonDown = UPointerEvent . prototype . PointerEvent_IsMouseButtonDown ;
836
+ UPointerEvent . prototype . IsTouchEvent = UPointerEvent . prototype . PointerEvent_IsTouchEvent ;
837
+ Key . prototype . Equal = Key . prototype . EqualEqual_KeyKey ;
838
+ TimerHandle . prototype . Invalidate = TimerHandle . prototype . K2_InvalidateTimerHandle ;
839
+ TimerHandle . prototype . IsValid = TimerHandle . prototype . K2_IsValidTimerHandle ;
840
+ ControllerEvent . prototype . GetEffectingButton = ControllerEvent . prototype . ControllerEvent_GetEffectingButton ;
841
+ PaintContext . prototype . DrawString = PaintContext . prototype . DrawText ;
842
+ PaintContext . prototype . DrawText = PaintContext . prototype . DrawTextFormatted ;
0 commit comments