├── .gitignore ├── Config ├── DefaultLGUI.ini └── FilterPlugin.ini ├── Content ├── Blueprints │ └── PresetEventSystemActor.uasset ├── DefaultFont.uasset ├── DefaultProceduralRectData.uasset ├── DefaultSDFFont.uasset ├── LGUIConvertVertexColor.uasset ├── LGUIPreset_Arrow_Sprite.uasset ├── LGUIPreset_Check_Sprite.uasset ├── LGUIPreset_Rect_Sprite.uasset ├── LGUIPreset_WhiteFrame_2px.uasset ├── LGUIPreset_WhiteSolid.uasset ├── LGUIProceduralRect.uasset ├── LGUIRectClip.uasset ├── LGUISDFFont.uasset ├── LGUISwitchClipType.uasset ├── LGUITextureClip.uasset ├── Materials │ ├── CustomClip_Circle │ │ ├── LGUICustomClip_Circle.uasset │ │ ├── LGUICustomClip_Circle_ProceduralRect.uasset │ │ ├── LGUICustomClip_Circle_SDFFont.uasset │ │ └── LGUI_Clip_Circle.uasset │ ├── CustomClip_RoundedRect │ │ ├── LGUICustomClip_RoundedRect.uasset │ │ ├── LGUICustomClip_RoundedRect_ProceduralRect.uasset │ │ ├── LGUICustomClip_RoundedRect_SDFFont.uasset │ │ └── LGUI_Clip_RoundedRect.uasset │ ├── LGUI_Base.uasset │ ├── LGUI_NoClip.uasset │ ├── LGUI_ProceduralRect.uasset │ ├── LGUI_ProceduralRect_NoClip.uasset │ ├── LGUI_ProceduralRect_RectClip.uasset │ ├── LGUI_ProceduralRect_TextureClip.uasset │ ├── LGUI_RectClip.uasset │ ├── LGUI_RenderTargetMaterial.uasset │ ├── LGUI_SDF_Font_NoClip.uasset │ ├── LGUI_SDF_Font_RectClip.uasset │ ├── LGUI_SDF_Font_TextureClip.uasset │ └── LGUI_TextureClip.uasset ├── Prefabs │ ├── Button.uasset │ ├── Dropdown.uasset │ ├── HorizontalRecyclableScrollView.uasset │ ├── HorizontalScrollView.uasset │ ├── HorizontalScrollbar.uasset │ ├── HorizontalSlider.uasset │ ├── ScreenSpaceUI.uasset │ ├── TextInput.uasset │ ├── TextInputMultiline.uasset │ ├── Toggle.uasset │ ├── ToggleGroup.uasset │ ├── UIRenderTarget.uasset │ ├── UIWidget.uasset │ ├── VerticalRecyclableScrollView.uasset │ ├── VerticalScrollView.uasset │ ├── VerticalScrollbar.uasset │ ├── VerticalSlider.uasset │ ├── WorldSpaceUI_LGUIRenderer.uasset │ └── WorldSpaceUI_UERenderer.uasset └── Textures │ ├── LGUIPreset_Arrow.uasset │ ├── LGUIPreset_Check.uasset │ ├── LGUIPreset_Rect.uasset │ └── LGUIPreset_WhiteSolid.uasset ├── LGUI.uplugin ├── README.md ├── Resources ├── Icon128.png └── Icons │ ├── AnchorData_Button_Normal.png │ ├── AnchorData_Dot.png │ ├── AnchorVisSelector.png │ ├── Button_Icon40.png │ ├── CanvasMark_16x.png │ ├── CanvasScaler_16x.png │ ├── CanvasScaler_40x.png │ ├── EventGroup.png │ ├── EventItem.png │ ├── EventSystem_16x.png │ ├── EventSystem_40x.png │ ├── InputModule_16x.png │ ├── InputModule_40x.png │ ├── LGUICanvas_16x.png │ ├── LGUICanvas_40x.png │ ├── LGUILifeCycleBehaviour_16x.png │ ├── LGUILifeCycleBehaviour_40x.png │ ├── PanelLayoutReorderButton_Bottom.png │ ├── PanelLayoutReorderButton_Left.png │ ├── PanelLayoutReorderButton_Right.png │ ├── PanelLayoutReorderButton_Top.png │ ├── PivotVisSelector.png │ ├── PrefabMarkBroken_16x.png │ ├── PrefabMarkWhite_16x.png │ ├── PrefabPlusMarkWhite_16x.png │ ├── PrefabVariantMarkWhite_16x.png │ ├── PrefabVariant_16x.png │ ├── PrefabVariant_40x.png │ ├── Prefab_16x.png │ ├── Prefab_40x.png │ ├── SpriteDataCreate_16x.png │ ├── SpriteDataSetting_16x.png │ ├── Sprite_16x.png │ ├── Sprite_40x.png │ ├── UICanvasGroup_16x.png │ ├── UICanvasGroup_40x.png │ ├── UICustomMesh_16x.png │ ├── UICustomMesh_40x.png │ ├── UIItem_16x.png │ ├── UIItem_40x.png │ ├── UILineChildrenAsPoints_16x.png │ ├── UILineChildrenAsPoints_40x.png │ ├── UILine_16x.png │ ├── UILine_40x.png │ ├── UIPanel_16x.png │ ├── UIPanel_40x.png │ ├── UIPolygonLine_16x.png │ ├── UIPolygonLine_40x.png │ ├── UIPolygon_16x.png │ ├── UIPolygon_40x.png │ ├── UIPostProcess_16x.png │ ├── UIPostProcess_40x.png │ ├── UIProceduralRect_16x.png │ ├── UIProceduralRect_40x.png │ ├── UIRenderTarget_16x.png │ ├── UIRenderTarget_40x.png │ ├── UIRing_16x.png │ ├── UIRing_40x.png │ ├── UISprite_16x.png │ ├── UISprite_40x.png │ ├── UIText_16x.png │ ├── UIText_40x.png │ ├── UITexture_16x.png │ ├── UITexture_40x.png │ ├── UIWidget_16x.png │ ├── UIWidget_40x.png │ ├── WhiteDot_1x.png │ ├── WhiteFrameHorizontal_1x.png │ ├── WhiteFrameHover_1x.png │ ├── WhiteFramePress_1x.png │ ├── WhiteFrameVertical_1x.png │ └── WhiteFrame_1x.png ├── Shaders └── Private │ ├── LGUIHelperLineShader.usf │ ├── LGUIProceduralRect.ush │ ├── LGUIResolveShader.usf │ ├── LGUIShader.usf │ ├── LGUIShaderCommon.ush │ └── PostProcess │ ├── LGUIPostProcessGaussianBlur.usf │ ├── LGUIPostProcessPixelShader.usf │ ├── LGUIPostProcessVertexShader.usf │ ├── LGUIRenderMeshPixelShader.usf │ └── LGUIRenderMeshVertexShader.usf └── Source ├── LGUI ├── LGUI.Build.cs ├── Private │ ├── Core │ │ ├── Actor │ │ │ ├── UIBackgroundBlurActor.cpp │ │ │ ├── UIBackgroundPixeltateActor.cpp │ │ │ ├── UIBaseActor.cpp │ │ │ ├── UIContainerActor.cpp │ │ │ ├── UIFrameCaptureActor.cpp │ │ │ ├── UIProceduralRectActor.cpp │ │ │ ├── UISpriteActor.cpp │ │ │ ├── UITextActor.cpp │ │ │ └── UITextureActor.cpp │ │ ├── ActorComponent │ │ │ ├── LGUICanvas.cpp │ │ │ ├── UIBackgroundBlur.cpp │ │ │ ├── UIBackgroundPixelate.cpp │ │ │ ├── UIBaseRenderable.cpp │ │ │ ├── UIBatchMeshRenderable.cpp │ │ │ ├── UICanvasGroup.cpp │ │ │ ├── UICustomMesh.cpp │ │ │ ├── UIDirectMeshRenderable.cpp │ │ │ ├── UIFrameCapture.cpp │ │ │ ├── UIItem.cpp │ │ │ ├── UIPostProcessRenderable.cpp │ │ │ ├── UIProceduralRect.cpp │ │ │ ├── UISprite.cpp │ │ │ ├── UISpriteBase.cpp │ │ │ ├── UIText.cpp │ │ │ ├── UITexture.cpp │ │ │ └── UITextureBase.cpp │ │ ├── LGUICanvasCustomClip.cpp │ │ ├── LGUICustomMesh.cpp │ │ ├── LGUIDynamicSpriteAtlasData.cpp │ │ ├── LGUIFontData.cpp │ │ ├── LGUIFontData_BaseObject.cpp │ │ ├── LGUIFreeTypeRenderFontData.cpp │ │ ├── LGUILifeCycleBehaviour.cpp │ │ ├── LGUILifeCycleUIBehaviour.cpp │ │ ├── LGUIManager.cpp │ │ ├── LGUIMesh │ │ │ └── LGUIMeshComponent.cpp │ │ ├── LGUIMeshVertex.cpp │ │ ├── LGUIProceduralRectData.cpp │ │ ├── LGUIRender │ │ │ ├── LGUIHelperLineShaders.cpp │ │ │ ├── LGUIPostProcessShaders.cpp │ │ │ ├── LGUIRenderer.cpp │ │ │ ├── LGUIResolveShaders.cpp │ │ │ ├── LGUIShaders.cpp │ │ │ └── LGUIVertex.cpp │ │ ├── LGUIRichTextCustomStyleData.cpp │ │ ├── LGUIRichTextImageData.cpp │ │ ├── LGUIRichTextImageData_BaseObject.cpp │ │ ├── LGUISDFFontData.cpp │ │ ├── LGUISettings.cpp │ │ ├── LGUISpriteData.cpp │ │ ├── LGUIStaticSpriteAtlasData.cpp │ │ ├── TextGeometryCache.cpp │ │ ├── UIDrawcall.cpp │ │ ├── UIGeometry.cpp │ │ └── UIPostProcessRenderProxy.cpp │ ├── Event │ │ ├── InputModule │ │ │ ├── LGUIBaseInputModule.cpp │ │ │ ├── LGUI_PointerInputModule.cpp │ │ │ ├── LGUI_StandaloneInputModule.cpp │ │ │ └── LGUI_TouchInputModule.cpp │ │ ├── LGUIBaseRaycaster.cpp │ │ ├── LGUIEventDelegate.cpp │ │ ├── LGUIEventSystem.cpp │ │ ├── LGUIPointerEventData.cpp │ │ ├── LGUIScreenSpaceRaycaster.cpp │ │ ├── LGUIWorldSpaceRaycaster.cpp │ │ └── RaycasterSource │ │ │ ├── LGUIWorldSpaceRaycasterSource_CenterScreen.cpp │ │ │ ├── LGUIWorldSpaceRaycasterSource_Mouse.cpp │ │ │ └── LGUIWorldSpaceRaycasterSource_World.cpp │ ├── Extensions │ │ ├── 2DLineRenderer │ │ │ ├── UI2DLineChildrenAsPoints.cpp │ │ │ ├── UI2DLineRaw.cpp │ │ │ └── UI2DLineRendererBase.cpp │ │ ├── LGUIImageSequencePlayer.cpp │ │ ├── LGUIRenderTargetGeometrySource.cpp │ │ ├── LGUIRenderTargetInteraction.cpp │ │ ├── UIPolygon.cpp │ │ ├── UIPolygonLine.cpp │ │ ├── UIRenderTarget.cpp │ │ ├── UIRenderableCustomRaycastExtensions.cpp │ │ ├── UIRing.cpp │ │ ├── UISpriteSequencePlayer.cpp │ │ ├── UISpriteSheetTexturePlayer.cpp │ │ ├── UIStaticMesh.cpp │ │ ├── UIWidget.cpp │ │ └── UIWidgetInteraction.cpp │ ├── GeometryModifier │ │ ├── TextAnimation │ │ │ ├── UIEffectTextAnimation_PropertyWithEase.cpp │ │ │ ├── UIEffectTextAnimation_PropertyWithWave.cpp │ │ │ └── UIEffectTextAnimation_Selector.cpp │ │ ├── UIEffectGradientColor.cpp │ │ ├── UIEffectLongShadow.cpp │ │ ├── UIEffectOutline.cpp │ │ ├── UIEffectPositionAsUV.cpp │ │ ├── UIEffectShadow.cpp │ │ ├── UIEffectTextAnimation.cpp │ │ └── UIGeometryModifierBase.cpp │ ├── Interaction │ │ ├── UIButtonComponent.cpp │ │ ├── UIDropdownComponent.cpp │ │ ├── UIEventBlockerComponent.cpp │ │ ├── UIEventTriggerComponent.cpp │ │ ├── UIRecyclableScrollViewComponent.cpp │ │ ├── UIScrollViewComponent.cpp │ │ ├── UIScrollViewWithScrollbarComponent.cpp │ │ ├── UIScrollbarComponent.cpp │ │ ├── UISelectableComponent.cpp │ │ ├── UISelectableTransitionComponent.cpp │ │ ├── UISliderComponent.cpp │ │ ├── UITextInputComponent.cpp │ │ ├── UIToggleComponent.cpp │ │ └── UIToggleGroupComponent.cpp │ ├── LGUI.cpp │ ├── LGUIBPLibrary.cpp │ ├── LGUIComponentReference.cpp │ ├── LGUIUtils.cpp │ ├── Layout │ │ ├── LGUICanvasScaler.cpp │ │ ├── UIFlexibleGridLayout.cpp │ │ ├── UIFlexibleGridLayoutElement.cpp │ │ ├── UIGridLayout.cpp │ │ ├── UIHorizontalLayout.cpp │ │ ├── UILayoutBase.cpp │ │ ├── UILayoutElement.cpp │ │ ├── UILayoutWithAnimation.cpp │ │ ├── UILayoutWithChildren.cpp │ │ ├── UIPanelLayoutBase.cpp │ │ ├── UIPanelLayout_FlexibleGrid.cpp │ │ ├── UIPanelLayout_HorizontalBox.cpp │ │ ├── UIPanelLayout_UniformGrid.cpp │ │ ├── UIPanelLayout_VerticalBox.cpp │ │ ├── UIRoundedLayout.cpp │ │ ├── UISizeControlByAspectRatio.cpp │ │ ├── UISizeControlByChildren.cpp │ │ ├── UISizeControlByOther.cpp │ │ └── UIVerticalLayout.cpp │ ├── PlayTween │ │ ├── LGUIPlayTween.cpp │ │ ├── LGUIPlayTweenComponent.cpp │ │ └── LGUIPlayTweenSequenceComponent.cpp │ ├── PrefabAnimation │ │ ├── LGUIPrefabSequence.cpp │ │ ├── LGUIPrefabSequenceComponent.cpp │ │ ├── LGUIPrefabSequenceObjectReference.cpp │ │ ├── LGUIPrefabSequencePlayer.cpp │ │ ├── MovieSceneLGUIComponentTypes.cpp │ │ ├── MovieSceneLGUIMaterialSystem.cpp │ │ └── MovieSceneLGUIMaterialTrack.cpp │ └── PrefabSystem │ │ ├── 2 │ │ ├── ActorSerializer.cpp │ │ ├── ActorSerializer_DeserializeForConvertToRuntime.cpp │ │ ├── ActorSerializer_DeserializeForDuplicate.cpp │ │ ├── ActorSerializer_DeserializeForEdit.cpp │ │ ├── ActorSerializer_DeserializeForUseInEditor.cpp │ │ ├── ActorSerializer_DeserializeForUseInRuntime.cpp │ │ ├── ActorSerializer_Serialize.cpp │ │ └── BitConverter.h │ │ ├── ActorSerializer3_Deserialize.cpp │ │ ├── ActorSerializer3_Serialize.cpp │ │ ├── ActorSerializer4_Deserialize.cpp │ │ ├── ActorSerializer4_Serialize.cpp │ │ ├── ActorSerializer5_Deserialize.cpp │ │ ├── ActorSerializer5_Serialize.cpp │ │ ├── ActorSerializer6_Deserialize.cpp │ │ ├── ActorSerializer6_Serialize.cpp │ │ ├── ActorSerializer7_Deserialize.cpp │ │ ├── ActorSerializer7_Serialize.cpp │ │ ├── ActorSerializer8_Deserialize.cpp │ │ ├── ActorSerializer8_Serialize.cpp │ │ ├── ActorSerializerBase.cpp │ │ ├── ActorSerializer_Duplicate.cpp │ │ ├── LGUIDuplicateObjectReaderAndWriter.cpp │ │ ├── LGUIDuplicateOverrideParameterObjectReaderAndWriter.cpp │ │ ├── LGUIObjectReaderAndWriter.cpp │ │ ├── LGUIOverrideParameterObjectReaderAndWriter.cpp │ │ ├── LGUIPrefab.cpp │ │ ├── LGUIPrefabHelperObject.cpp │ │ ├── LGUIPrefabLevelManagerActor.cpp │ │ ├── LGUIPrefabManager.cpp │ │ └── LGUIPrefabSettings.cpp └── Public │ ├── Core │ ├── Actor │ │ ├── UIBackgroundBlurActor.h │ │ ├── UIBackgroundPixelateActor.h │ │ ├── UIBaseActor.h │ │ ├── UIContainerActor.h │ │ ├── UICustomMeshActor.h │ │ ├── UIFrameCaptureActor.h │ │ ├── UIProceduralRectActor.h │ │ ├── UISpriteActor.h │ │ ├── UITextActor.h │ │ └── UITextureActor.h │ ├── ActorComponent │ │ ├── LGUICanvas.h │ │ ├── UIBackgroundBlur.h │ │ ├── UIBackgroundPixelate.h │ │ ├── UIBaseRenderable.h │ │ ├── UIBatchMeshRenderable.h │ │ ├── UICanvasGroup.h │ │ ├── UICustomMesh.h │ │ ├── UIDirectMeshRenderable.h │ │ ├── UIFrameCapture.h │ │ ├── UIItem.h │ │ ├── UIPostProcessRenderable.h │ │ ├── UIProceduralRect.h │ │ ├── UISprite.h │ │ ├── UISpriteBase.h │ │ ├── UIText.h │ │ ├── UITexture.h │ │ └── UITextureBase.h │ ├── ILGUICultureChangedInterface.h │ ├── IUISpriteRenderableInterface.h │ ├── LGUICanvasCustomClip.h │ ├── LGUICustomMesh.h │ ├── LGUIDynamicSpriteAtlasData.h │ ├── LGUIFontData.h │ ├── LGUIFontData_BaseObject.h │ ├── LGUIFreeTypeRenderFontData.h │ ├── LGUILifeCycleBehaviour.h │ ├── LGUILifeCycleUIBehaviour.h │ ├── LGUIManager.h │ ├── LGUIMesh │ │ └── LGUIMeshComponent.h │ ├── LGUIMeshIndex.h │ ├── LGUIMeshVertex.h │ ├── LGUIProceduralRectData.h │ ├── LGUIRender │ │ ├── ILGUIRendererPrimitive.h │ │ ├── LGUIHelperLineShaders.h │ │ ├── LGUIPostProcessShaders.h │ │ ├── LGUIRenderer.h │ │ ├── LGUIResolveShaders.h │ │ ├── LGUIShaders.h │ │ └── LGUIVertex.h │ ├── LGUIRichTextCustomStyleData.h │ ├── LGUIRichTextImageData.h │ ├── LGUIRichTextImageData_BaseObject.h │ ├── LGUISDFFontData.h │ ├── LGUISettings.h │ ├── LGUISpriteData.h │ ├── LGUISpriteData_BaseObject.h │ ├── LGUISpriteInfo.h │ ├── LGUIStaticSpriteAtlasData.h │ ├── LGUITextData.h │ ├── RichTextParser.h │ ├── UIAnchorData.h │ ├── UIDrawcall.h │ ├── UIGeometry.h │ ├── UIPostProcessRenderProxy.h │ └── UIQuadTree.h │ ├── Event │ ├── InputModule │ │ ├── LGUIBaseInputModule.h │ │ ├── LGUI_PointerInputModule.h │ │ ├── LGUI_StandaloneInputModule.h │ │ └── LGUI_TouchInputModule.h │ ├── Interface │ │ ├── LGUINavigationInterface.h │ │ ├── LGUIPointerClickInterface.h │ │ ├── LGUIPointerDownUpInterface.h │ │ ├── LGUIPointerDragDropInterface.h │ │ ├── LGUIPointerDragInterface.h │ │ ├── LGUIPointerEnterExitInterface.h │ │ ├── LGUIPointerScrollInterface.h │ │ └── LGUIPointerSelectDeselectInterface.h │ ├── LGUIBaseEventData.h │ ├── LGUIBaseRaycaster.h │ ├── LGUIDelegateDeclaration.h │ ├── LGUIEventDelegate.h │ ├── LGUIEventDelegate_PresetParameter.h │ ├── LGUIEventSystem.h │ ├── LGUIPointerEventData.h │ ├── LGUIScreenSpaceRaycaster.h │ ├── LGUIWorldSpaceRaycaster.h │ └── RaycasterSource │ │ ├── LGUIWorldSpaceRaycasterSource_CenterScreen.h │ │ ├── LGUIWorldSpaceRaycasterSource_Mouse.h │ │ └── LGUIWorldSpaceRaycasterSource_World.h │ ├── Extensions │ ├── 2DLineRenderer │ │ ├── UI2DLineChildrenAsPoints.h │ │ ├── UI2DLineRaw.h │ │ └── UI2DLineRendererBase.h │ ├── LGUIImageSequencePlayer.h │ ├── LGUIRenderTargetGeometrySource.h │ ├── LGUIRenderTargetInteraction.h │ ├── UIPolygon.h │ ├── UIPolygonLine.h │ ├── UIRenderTarget.h │ ├── UIRenderableCustomRaycastExtensions.h │ ├── UIRing.h │ ├── UISpriteSequencePlayer.h │ ├── UISpriteSheetTexturePlayer.h │ ├── UIStaticMesh.h │ ├── UIWidget.h │ └── UIWidgetInteraction.h │ ├── GeometryModifier │ ├── TextAnimation │ │ ├── UIEffectTextAnimation_PropertyWithEase.h │ │ ├── UIEffectTextAnimation_PropertyWithWave.h │ │ └── UIEffectTextAnimation_Selector.h │ ├── UIEffectGradientColor.h │ ├── UIEffectLongShadow.h │ ├── UIEffectOutline.h │ ├── UIEffectPositionAsUV.h │ ├── UIEffectShadow.h │ ├── UIEffectTextAnimation.h │ └── UIGeometryModifierBase.h │ ├── Interaction │ ├── UIButtonComponent.h │ ├── UIDropdownComponent.h │ ├── UIEventBlockerComponent.h │ ├── UIEventTriggerComponent.h │ ├── UIRecyclableScrollViewComponent.h │ ├── UIScrollViewComponent.h │ ├── UIScrollViewWithScrollbarComponent.h │ ├── UIScrollbarComponent.h │ ├── UISelectableComponent.h │ ├── UISelectableTransitionComponent.h │ ├── UISliderComponent.h │ ├── UITextInputComponent.h │ ├── UIToggleComponent.h │ └── UIToggleGroupComponent.h │ ├── LGUI.h │ ├── LGUIBPLibrary.h │ ├── LGUIComponentReference.h │ ├── LGUIDelegateHandleWrapper.h │ ├── LGUIHeaders.h │ ├── Layout │ ├── ILGUILayoutElementInterface.h │ ├── ILGUILayoutInterface.h │ ├── LGUICanvasScaler.h │ ├── UIFlexibleGridLayout.h │ ├── UIFlexibleGridLayoutElement.h │ ├── UIGridLayout.h │ ├── UIHorizontalLayout.h │ ├── UILayoutBase.h │ ├── UILayoutElement.h │ ├── UILayoutWithAnimation.h │ ├── UILayoutWithChildren.h │ ├── UIPanelLayoutBase.h │ ├── UIPanelLayout_FlexibleGrid.h │ ├── UIPanelLayout_HorizontalBox.h │ ├── UIPanelLayout_UniformGrid.h │ ├── UIPanelLayout_VerticalBox.h │ ├── UIRoundedLayout.h │ ├── UISizeControlByAspectRatio.h │ ├── UISizeControlByChildren.h │ ├── UISizeControlByOther.h │ └── UIVerticalLayout.h │ ├── PlayTween │ ├── LGUIPlayTween.h │ ├── LGUIPlayTweenComponent.h │ ├── LGUIPlayTweenSequenceComponent.h │ └── LGUIPlayTween_Params.h │ ├── PrefabAnimation │ ├── LGUIPrefabSequence.h │ ├── LGUIPrefabSequenceComponent.h │ ├── LGUIPrefabSequenceObjectReference.h │ ├── LGUIPrefabSequencePlayer.h │ ├── MovieSceneLGUIComponentTypes.h │ ├── MovieSceneLGUIMaterialSystem.h │ └── MovieSceneLGUIMaterialTrack.h │ ├── PrefabSystem │ ├── 2 │ │ └── ActorSerializer.h │ ├── ActorSerializer3.h │ ├── ActorSerializer4.h │ ├── ActorSerializer5.h │ ├── ActorSerializer6.h │ ├── ActorSerializer7.h │ ├── ActorSerializer8.h │ ├── ActorSerializerBase.h │ ├── ILGUIPrefabInterface.h │ ├── LGUIObjectReaderAndWriter.h │ ├── LGUIPrefab.h │ ├── LGUIPrefabHelperObject.h │ ├── LGUIPrefabLevelManagerActor.h │ ├── LGUIPrefabManager.h │ └── LGUIPrefabSettings.h │ └── Utils │ ├── LGUIUtils.h │ ├── MaxRectsBinPack │ ├── MaxRectsBinPack.cpp │ └── MaxRectsBinPack.h │ └── sdf │ ├── LICENSE.txt │ ├── README.md │ └── sdf.h ├── LGUIComponentVisualizer ├── LGUIComponentVisualizer.Build.cs ├── Private │ ├── ComponentVisualizer │ │ ├── UIFlexibleGridLayoutComponentVisualizer.cpp │ │ ├── UIFlexibleGridLayoutComponentVisualizer.h │ │ ├── UIItemComponentVisualizer.cpp │ │ ├── UIItemComponentVisualizer.h │ │ ├── UIPanelLayoutFlexibleGridComponentVisualizer.cpp │ │ └── UIPanelLayoutFlexibleGridComponentVisualizer.h │ └── LGUIComponentVisualizerModule.cpp └── Public │ └── LGUIComponentVisualizerModule.h ├── LGUIEditor ├── LGUIEditor.Build.cs ├── Private │ ├── AssetTypeActions │ │ ├── AssetTypeActions_LGUIFontData.cpp │ │ ├── AssetTypeActions_LGUIFontData.h │ │ ├── AssetTypeActions_LGUIPrefab.cpp │ │ ├── AssetTypeActions_LGUIPrefab.h │ │ ├── AssetTypeActions_LGUIPrefabForUI.cpp │ │ ├── AssetTypeActions_LGUIPrefabForUI.h │ │ ├── AssetTypeActions_LGUIRichTextCustomStyleData.cpp │ │ ├── AssetTypeActions_LGUIRichTextCustomStyleData.h │ │ ├── AssetTypeActions_LGUIRichTextImageData.cpp │ │ ├── AssetTypeActions_LGUIRichTextImageData.h │ │ ├── AssetTypeActions_LGUISDFFontData.cpp │ │ ├── AssetTypeActions_LGUISDFFontData.h │ │ ├── AssetTypeActions_LGUISpriteData.cpp │ │ ├── AssetTypeActions_LGUISpriteData.h │ │ ├── AssetTypeActions_LGUIStaticMeshCache.cpp │ │ ├── AssetTypeActions_LGUIStaticMeshCache.h │ │ ├── AssetTypeActions_LGUIStaticSpriteAtlasData.cpp │ │ └── AssetTypeActions_LGUIStaticSpriteAtlasData.h │ ├── ContentBrowserExtensions │ │ ├── LGUIContentBrowserExtensions.cpp │ │ └── LGUIContentBrowserExtensions.h │ ├── DataFactory │ │ ├── LGUIFontFactory.cpp │ │ ├── LGUIFontFactory.h │ │ ├── LGUIPrefabActorFactory.cpp │ │ ├── LGUIPrefabActorFactory.h │ │ ├── LGUIPrefabFactory.cpp │ │ ├── LGUIPrefabFactory.h │ │ ├── LGUIPrefabFactoryForUI.cpp │ │ ├── LGUIPrefabFactoryForUI.h │ │ ├── LGUIRichTextCustomStyleDataFactory.cpp │ │ ├── LGUIRichTextCustomStyleDataFactory.h │ │ ├── LGUIRichTextImageDataFactory.cpp │ │ ├── LGUIRichTextImageDataFactory.h │ │ ├── LGUISDFFontDataFactory.cpp │ │ ├── LGUISDFFontDataFactory.h │ │ ├── LGUISpriteDataFactory.cpp │ │ ├── LGUISpriteDataFactory.h │ │ ├── LGUIStaticMeshCacheFactory.cpp │ │ ├── LGUIStaticMeshCacheFactory.h │ │ ├── LGUIStaticSpriteAtalsDataFactory.cpp │ │ └── LGUIStaticSpriteAtalsDataFactory.h │ ├── DetailCustomization │ │ ├── LGUICanvasCustomClip_RoundedRect_Customization.cpp │ │ ├── LGUICanvasCustomClip_RoundedRect_Customization.h │ │ ├── LGUICanvasCustomization.cpp │ │ ├── LGUICanvasCustomization.h │ │ ├── LGUIComponentReferenceCustomization.cpp │ │ ├── LGUIComponentReferenceCustomization.h │ │ ├── LGUIEditableTextPropertyHandle.h │ │ ├── LGUIEventDelegateCustomization.cpp │ │ ├── LGUIEventDelegateCustomization.h │ │ ├── LGUIEventDelegatePresetParamCustomization.h │ │ ├── LGUIFreeTypeRenderFontDataCustomization.cpp │ │ ├── LGUIFreeTypeRenderFontDataCustomization.h │ │ ├── LGUIPrefabCustomization.cpp │ │ ├── LGUIPrefabCustomization.h │ │ ├── LGUISpriteDataCustomization.cpp │ │ ├── LGUISpriteDataCustomization.h │ │ ├── LGUIStaticSpriteAtlasDataCustomization.cpp │ │ ├── LGUIStaticSpriteAtlasDataCustomization.h │ │ ├── PanelLayout │ │ │ ├── HorizontalAlignmentCustomization.cpp │ │ │ ├── HorizontalAlignmentCustomization.h │ │ │ ├── SlateChildSizeCustomization.cpp │ │ │ ├── SlateChildSizeCustomization.h │ │ │ ├── VerticalAlignmentCustomization.cpp │ │ │ └── VerticalAlignmentCustomization.h │ │ ├── UIBaseRenderableCustomization.cpp │ │ ├── UIBaseRenderableCustomization.h │ │ ├── UIBatchMeshRenderableCustomization.cpp │ │ ├── UIBatchMeshRenderableCustomization.h │ │ ├── UICanvasScalerCustomization.cpp │ │ ├── UICanvasScalerCustomization.h │ │ ├── UIEffectTextAnimationCustomization.cpp │ │ ├── UIEffectTextAnimationCustomization.h │ │ ├── UIFlexibleGridLayoutCustomization.cpp │ │ ├── UIFlexibleGridLayoutCustomization.h │ │ ├── UIGridLayoutCustomization.cpp │ │ ├── UIGridLayoutCustomization.h │ │ ├── UIHorizontalLayoutCustomization.cpp │ │ ├── UIHorizontalLayoutCustomization.h │ │ ├── UIItemCustomization.cpp │ │ ├── UIItemCustomization.h │ │ ├── UILayoutBaseCustomization.cpp │ │ ├── UILayoutBaseCustomization.h │ │ ├── UILayoutElementCustomization.cpp │ │ ├── UILayoutElementCustomization.h │ │ ├── UIPanelLayoutFlexibleGridSlotCustomization.cpp │ │ ├── UIPanelLayoutFlexibleGridSlotCustomization.h │ │ ├── UIPanelLayoutHorizontalBoxSlotCustomization.cpp │ │ ├── UIPanelLayoutHorizontalBoxSlotCustomization.h │ │ ├── UIPanelLayoutUniformGridSlotCustomization.cpp │ │ ├── UIPanelLayoutUniformGridSlotCustomization.h │ │ ├── UIPanelLayoutVerticalBoxSlotCustomization.cpp │ │ ├── UIPanelLayoutVerticalBoxSlotCustomization.h │ │ ├── UIPostProcessRenderableCustomization.cpp │ │ ├── UIPostProcessRenderableCustomization.h │ │ ├── UIProceduralRectCustomization.cpp │ │ ├── UIProceduralRectCustomization.h │ │ ├── UIScrollViewWithScrollBarCustomization.cpp │ │ ├── UIScrollViewWithScrollBarCustomization.h │ │ ├── UISelectableCustomization.cpp │ │ ├── UISelectableCustomization.h │ │ ├── UISpriteBaseCustomization.cpp │ │ ├── UISpriteBaseCustomization.h │ │ ├── UISpriteCustomization.cpp │ │ ├── UISpriteCustomization.h │ │ ├── UISpriteSequencePlayerCustomization.cpp │ │ ├── UISpriteSequencePlayerCustomization.h │ │ ├── UISpriteSheetTexturePlayerCustomization.cpp │ │ ├── UISpriteSheetTexturePlayerCustomization.h │ │ ├── UITextCustomization.cpp │ │ ├── UITextCustomization.h │ │ ├── UITextInputCustomization.cpp │ │ ├── UITextInputCustomization.h │ │ ├── UITextureBaseCustomization.cpp │ │ ├── UITextureBaseCustomization.h │ │ ├── UITextureCustomization.cpp │ │ ├── UITextureCustomization.h │ │ ├── UIToggleCustomization.cpp │ │ ├── UIToggleCustomization.h │ │ ├── UIVerticalLayoutCustomization.cpp │ │ └── UIVerticalLayoutCustomization.h │ ├── LGUIEditorModule.cpp │ ├── LGUIEditorStyle.cpp │ ├── LGUIEditorTools.cpp │ ├── LGUIEditorUtils.cpp │ ├── LevelEditorMenuExtensions │ │ ├── LGUILevelEditorExtensions.cpp │ │ └── LGUILevelEditorExtensions.h │ ├── PrefabAnimation │ │ ├── LGUIMaterialTrackEditor.cpp │ │ ├── LGUIMaterialTrackEditor.h │ │ ├── LGUIPrefabSequenceComponentCustomization.cpp │ │ ├── LGUIPrefabSequenceComponentCustomization.h │ │ ├── LGUIPrefabSequenceEditor.cpp │ │ ├── LGUIPrefabSequenceEditor.h │ │ ├── LGUIPrefabSequenceEditorWidget.cpp │ │ ├── LGUIPrefabSequenceEditorWidget.h │ │ ├── LGUIPrefabSequencerSettings.h │ │ ├── MovieSceneSequenceEditor_LGUIPrefabSequence.cpp │ │ └── MovieSceneSequenceEditor_LGUIPrefabSequence.h │ ├── PrefabEditor │ │ ├── LGUIPrefabEditor.cpp │ │ ├── LGUIPrefabEditor.h │ │ ├── LGUIPrefabEditorCommand.cpp │ │ ├── LGUIPrefabEditorCommand.h │ │ ├── LGUIPrefabEditorDetails.cpp │ │ ├── LGUIPrefabEditorDetails.h │ │ ├── LGUIPrefabEditorOutliner.cpp │ │ ├── LGUIPrefabEditorOutliner.h │ │ ├── LGUIPrefabEditorScene.cpp │ │ ├── LGUIPrefabEditorScene.h │ │ ├── LGUIPrefabEditorViewport.cpp │ │ ├── LGUIPrefabEditorViewport.h │ │ ├── LGUIPrefabEditorViewportClient.cpp │ │ ├── LGUIPrefabEditorViewportClient.h │ │ ├── LGUIPrefabEditorViewportToolbar.cpp │ │ ├── LGUIPrefabEditorViewportToolbar.h │ │ ├── LGUIPrefabOverrideDataViewer.cpp │ │ ├── LGUIPrefabOverrideDataViewer.h │ │ ├── LGUIPrefabRawDataViewer.cpp │ │ ├── LGUIPrefabRawDataViewer.h │ │ ├── LGUIPrefabViewportClickHandlers.cpp │ │ ├── LGUIPrefabViewportClickHandlers.h │ │ ├── PrefabScene.cpp │ │ └── PrefabScene.h │ ├── SceneOutliner │ │ ├── LGUINativeSceneOutlinerExtension.cpp │ │ ├── LGUINativeSceneOutlinerExtension.h │ │ ├── LGUISceneOutlinerButton.cpp │ │ ├── LGUISceneOutlinerButton.h │ │ ├── LGUISceneOutlinerInfoColumn.cpp │ │ └── LGUISceneOutlinerInfoColumn.h │ ├── Thumbnail │ │ ├── LGUIPrefabThumbnailRenderer.cpp │ │ ├── LGUIPrefabThumbnailRenderer.h │ │ ├── LGUIPrefabThumbnailScene.cpp │ │ ├── LGUIPrefabThumbnailScene.h │ │ ├── LGUISpriteDataBaseObjectThumbnailRenderer.cpp │ │ ├── LGUISpriteDataBaseObjectThumbnailRenderer.h │ │ ├── LGUISpriteThumbnailRenderer.cpp │ │ └── LGUISpriteThumbnailRenderer.h │ └── Window │ │ ├── LGUIDynamicSpriteAtlasViewer.cpp │ │ └── LGUIDynamicSpriteAtlasViewer.h └── Public │ ├── LGUIEditorCommands.cpp │ ├── LGUIEditorCommands.h │ ├── LGUIEditorModule.h │ ├── LGUIEditorStyle.h │ ├── LGUIEditorTools.h │ ├── LGUIEditorUtils.h │ └── Widget │ ├── AnchorPreviewWidget.h │ ├── ComponentTransformDetails.cpp │ ├── ComponentTransformDetails.h │ ├── LGUIFileBrowser.h │ ├── LGUIVectorInputBox.cpp │ └── LGUIVectorInputBox.h ├── LGUIK2Nodes ├── LGUIK2Nodes.Build.cs ├── Private │ ├── K2Node_LGUICompRef.cpp │ ├── K2Node_LGUICompRef.h │ └── LGUIK2NodesModule.cpp └── Public │ └── LGUIK2NodesModule.h └── LTween ├── LTween.Build.cs ├── Private ├── LTween.cpp ├── LTweenBPLibrary.cpp ├── LTweenManager.cpp ├── LTweener.cpp ├── LTweenerSequence.cpp └── Tweener │ ├── LTweenerColor.h │ ├── LTweenerDouble.h │ ├── LTweenerFloat.h │ ├── LTweenerFrame.h │ ├── LTweenerInteger.h │ ├── LTweenerLinearColor.h │ ├── LTweenerMaterialScalar.h │ ├── LTweenerMaterialVector.h │ ├── LTweenerPosition.h │ ├── LTweenerQuaternion.h │ ├── LTweenerRotationEuler.h │ ├── LTweenerRotationQuat.h │ ├── LTweenerRotator.h │ ├── LTweenerScale.h │ ├── LTweenerUpdate.h │ ├── LTweenerVector.h │ ├── LTweenerVector2D.h │ ├── LTweenerVector4.h │ └── LTweenerVirtual.h └── Public ├── LTween.h ├── LTweenBPLibrary.h ├── LTweenDelegateHandleWrapper.h ├── LTweenHeaders.h ├── LTweenManager.h ├── LTweener.h └── LTweenerSequence.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultLGUI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Config/DefaultLGUI.ini -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/Blueprints/PresetEventSystemActor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Blueprints/PresetEventSystemActor.uasset -------------------------------------------------------------------------------- /Content/DefaultFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/DefaultFont.uasset -------------------------------------------------------------------------------- /Content/DefaultProceduralRectData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/DefaultProceduralRectData.uasset -------------------------------------------------------------------------------- /Content/DefaultSDFFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/DefaultSDFFont.uasset -------------------------------------------------------------------------------- /Content/LGUIConvertVertexColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIConvertVertexColor.uasset -------------------------------------------------------------------------------- /Content/LGUIPreset_Arrow_Sprite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIPreset_Arrow_Sprite.uasset -------------------------------------------------------------------------------- /Content/LGUIPreset_Check_Sprite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIPreset_Check_Sprite.uasset -------------------------------------------------------------------------------- /Content/LGUIPreset_Rect_Sprite.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIPreset_Rect_Sprite.uasset -------------------------------------------------------------------------------- /Content/LGUIPreset_WhiteFrame_2px.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIPreset_WhiteFrame_2px.uasset -------------------------------------------------------------------------------- /Content/LGUIPreset_WhiteSolid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIPreset_WhiteSolid.uasset -------------------------------------------------------------------------------- /Content/LGUIProceduralRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIProceduralRect.uasset -------------------------------------------------------------------------------- /Content/LGUIRectClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUIRectClip.uasset -------------------------------------------------------------------------------- /Content/LGUISDFFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUISDFFont.uasset -------------------------------------------------------------------------------- /Content/LGUISwitchClipType.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUISwitchClipType.uasset -------------------------------------------------------------------------------- /Content/LGUITextureClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/LGUITextureClip.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_Circle/LGUICustomClip_Circle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_Circle/LGUICustomClip_Circle.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_Circle/LGUICustomClip_Circle_ProceduralRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_Circle/LGUICustomClip_Circle_ProceduralRect.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_Circle/LGUICustomClip_Circle_SDFFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_Circle/LGUICustomClip_Circle_SDFFont.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_Circle/LGUI_Clip_Circle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_Circle/LGUI_Clip_Circle.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect_ProceduralRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect_ProceduralRect.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect_SDFFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_RoundedRect/LGUICustomClip_RoundedRect_SDFFont.uasset -------------------------------------------------------------------------------- /Content/Materials/CustomClip_RoundedRect/LGUI_Clip_RoundedRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/CustomClip_RoundedRect/LGUI_Clip_RoundedRect.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_Base.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_Base.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_NoClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_NoClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_ProceduralRect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_ProceduralRect.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_ProceduralRect_NoClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_ProceduralRect_NoClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_ProceduralRect_RectClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_ProceduralRect_RectClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_ProceduralRect_TextureClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_ProceduralRect_TextureClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_RectClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_RectClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_RenderTargetMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_RenderTargetMaterial.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_SDF_Font_NoClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_SDF_Font_NoClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_SDF_Font_RectClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_SDF_Font_RectClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_SDF_Font_TextureClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_SDF_Font_TextureClip.uasset -------------------------------------------------------------------------------- /Content/Materials/LGUI_TextureClip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Materials/LGUI_TextureClip.uasset -------------------------------------------------------------------------------- /Content/Prefabs/Button.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/Button.uasset -------------------------------------------------------------------------------- /Content/Prefabs/Dropdown.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/Dropdown.uasset -------------------------------------------------------------------------------- /Content/Prefabs/HorizontalRecyclableScrollView.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/HorizontalRecyclableScrollView.uasset -------------------------------------------------------------------------------- /Content/Prefabs/HorizontalScrollView.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/HorizontalScrollView.uasset -------------------------------------------------------------------------------- /Content/Prefabs/HorizontalScrollbar.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/HorizontalScrollbar.uasset -------------------------------------------------------------------------------- /Content/Prefabs/HorizontalSlider.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/HorizontalSlider.uasset -------------------------------------------------------------------------------- /Content/Prefabs/ScreenSpaceUI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/ScreenSpaceUI.uasset -------------------------------------------------------------------------------- /Content/Prefabs/TextInput.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/TextInput.uasset -------------------------------------------------------------------------------- /Content/Prefabs/TextInputMultiline.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/TextInputMultiline.uasset -------------------------------------------------------------------------------- /Content/Prefabs/Toggle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/Toggle.uasset -------------------------------------------------------------------------------- /Content/Prefabs/ToggleGroup.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/ToggleGroup.uasset -------------------------------------------------------------------------------- /Content/Prefabs/UIRenderTarget.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/UIRenderTarget.uasset -------------------------------------------------------------------------------- /Content/Prefabs/UIWidget.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/UIWidget.uasset -------------------------------------------------------------------------------- /Content/Prefabs/VerticalRecyclableScrollView.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/VerticalRecyclableScrollView.uasset -------------------------------------------------------------------------------- /Content/Prefabs/VerticalScrollView.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/VerticalScrollView.uasset -------------------------------------------------------------------------------- /Content/Prefabs/VerticalScrollbar.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/VerticalScrollbar.uasset -------------------------------------------------------------------------------- /Content/Prefabs/VerticalSlider.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/VerticalSlider.uasset -------------------------------------------------------------------------------- /Content/Prefabs/WorldSpaceUI_LGUIRenderer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/WorldSpaceUI_LGUIRenderer.uasset -------------------------------------------------------------------------------- /Content/Prefabs/WorldSpaceUI_UERenderer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Prefabs/WorldSpaceUI_UERenderer.uasset -------------------------------------------------------------------------------- /Content/Textures/LGUIPreset_Arrow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Textures/LGUIPreset_Arrow.uasset -------------------------------------------------------------------------------- /Content/Textures/LGUIPreset_Check.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Textures/LGUIPreset_Check.uasset -------------------------------------------------------------------------------- /Content/Textures/LGUIPreset_Rect.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Textures/LGUIPreset_Rect.uasset -------------------------------------------------------------------------------- /Content/Textures/LGUIPreset_WhiteSolid.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Content/Textures/LGUIPreset_WhiteSolid.uasset -------------------------------------------------------------------------------- /LGUI.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/LGUI.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Icons/AnchorData_Button_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/AnchorData_Button_Normal.png -------------------------------------------------------------------------------- /Resources/Icons/AnchorData_Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/AnchorData_Dot.png -------------------------------------------------------------------------------- /Resources/Icons/AnchorVisSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/AnchorVisSelector.png -------------------------------------------------------------------------------- /Resources/Icons/Button_Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/Button_Icon40.png -------------------------------------------------------------------------------- /Resources/Icons/CanvasMark_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/CanvasMark_16x.png -------------------------------------------------------------------------------- /Resources/Icons/CanvasScaler_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/CanvasScaler_16x.png -------------------------------------------------------------------------------- /Resources/Icons/CanvasScaler_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/CanvasScaler_40x.png -------------------------------------------------------------------------------- /Resources/Icons/EventGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/EventGroup.png -------------------------------------------------------------------------------- /Resources/Icons/EventItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/EventItem.png -------------------------------------------------------------------------------- /Resources/Icons/EventSystem_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/EventSystem_16x.png -------------------------------------------------------------------------------- /Resources/Icons/EventSystem_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/EventSystem_40x.png -------------------------------------------------------------------------------- /Resources/Icons/InputModule_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/InputModule_16x.png -------------------------------------------------------------------------------- /Resources/Icons/InputModule_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/InputModule_40x.png -------------------------------------------------------------------------------- /Resources/Icons/LGUICanvas_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/LGUICanvas_16x.png -------------------------------------------------------------------------------- /Resources/Icons/LGUICanvas_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/LGUICanvas_40x.png -------------------------------------------------------------------------------- /Resources/Icons/LGUILifeCycleBehaviour_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/LGUILifeCycleBehaviour_16x.png -------------------------------------------------------------------------------- /Resources/Icons/LGUILifeCycleBehaviour_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/LGUILifeCycleBehaviour_40x.png -------------------------------------------------------------------------------- /Resources/Icons/PanelLayoutReorderButton_Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PanelLayoutReorderButton_Bottom.png -------------------------------------------------------------------------------- /Resources/Icons/PanelLayoutReorderButton_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PanelLayoutReorderButton_Left.png -------------------------------------------------------------------------------- /Resources/Icons/PanelLayoutReorderButton_Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PanelLayoutReorderButton_Right.png -------------------------------------------------------------------------------- /Resources/Icons/PanelLayoutReorderButton_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PanelLayoutReorderButton_Top.png -------------------------------------------------------------------------------- /Resources/Icons/PivotVisSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PivotVisSelector.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabMarkBroken_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabMarkBroken_16x.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabMarkWhite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabMarkWhite_16x.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabPlusMarkWhite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabPlusMarkWhite_16x.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabVariantMarkWhite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabVariantMarkWhite_16x.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabVariant_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabVariant_16x.png -------------------------------------------------------------------------------- /Resources/Icons/PrefabVariant_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/PrefabVariant_40x.png -------------------------------------------------------------------------------- /Resources/Icons/Prefab_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/Prefab_16x.png -------------------------------------------------------------------------------- /Resources/Icons/Prefab_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/Prefab_40x.png -------------------------------------------------------------------------------- /Resources/Icons/SpriteDataCreate_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/SpriteDataCreate_16x.png -------------------------------------------------------------------------------- /Resources/Icons/SpriteDataSetting_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/SpriteDataSetting_16x.png -------------------------------------------------------------------------------- /Resources/Icons/Sprite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/Sprite_16x.png -------------------------------------------------------------------------------- /Resources/Icons/Sprite_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/Sprite_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UICanvasGroup_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UICanvasGroup_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UICanvasGroup_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UICanvasGroup_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UICustomMesh_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UICustomMesh_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UICustomMesh_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UICustomMesh_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIItem_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIItem_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIItem_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIItem_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UILineChildrenAsPoints_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UILineChildrenAsPoints_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UILineChildrenAsPoints_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UILineChildrenAsPoints_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UILine_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UILine_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UILine_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UILine_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPanel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPanel_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPanel_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPanel_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPolygonLine_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPolygonLine_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPolygonLine_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPolygonLine_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPolygon_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPolygon_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPolygon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPolygon_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPostProcess_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPostProcess_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIPostProcess_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIPostProcess_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIProceduralRect_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIProceduralRect_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIProceduralRect_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIProceduralRect_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIRenderTarget_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIRenderTarget_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIRenderTarget_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIRenderTarget_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIRing_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIRing_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIRing_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIRing_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UISprite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UISprite_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UISprite_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UISprite_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIText_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIText_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIText_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIText_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UITexture_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UITexture_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UITexture_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UITexture_40x.png -------------------------------------------------------------------------------- /Resources/Icons/UIWidget_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIWidget_16x.png -------------------------------------------------------------------------------- /Resources/Icons/UIWidget_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/UIWidget_40x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteDot_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteDot_1x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteFrameHorizontal_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteFrameHorizontal_1x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteFrameHover_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteFrameHover_1x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteFramePress_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteFramePress_1x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteFrameVertical_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteFrameVertical_1x.png -------------------------------------------------------------------------------- /Resources/Icons/WhiteFrame_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Resources/Icons/WhiteFrame_1x.png -------------------------------------------------------------------------------- /Shaders/Private/LGUIHelperLineShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/LGUIHelperLineShader.usf -------------------------------------------------------------------------------- /Shaders/Private/LGUIProceduralRect.ush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/LGUIProceduralRect.ush -------------------------------------------------------------------------------- /Shaders/Private/LGUIResolveShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/LGUIResolveShader.usf -------------------------------------------------------------------------------- /Shaders/Private/LGUIShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/LGUIShader.usf -------------------------------------------------------------------------------- /Shaders/Private/LGUIShaderCommon.ush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/LGUIShaderCommon.ush -------------------------------------------------------------------------------- /Shaders/Private/PostProcess/LGUIPostProcessGaussianBlur.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/PostProcess/LGUIPostProcessGaussianBlur.usf -------------------------------------------------------------------------------- /Shaders/Private/PostProcess/LGUIPostProcessPixelShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/PostProcess/LGUIPostProcessPixelShader.usf -------------------------------------------------------------------------------- /Shaders/Private/PostProcess/LGUIPostProcessVertexShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/PostProcess/LGUIPostProcessVertexShader.usf -------------------------------------------------------------------------------- /Shaders/Private/PostProcess/LGUIRenderMeshPixelShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/PostProcess/LGUIRenderMeshPixelShader.usf -------------------------------------------------------------------------------- /Shaders/Private/PostProcess/LGUIRenderMeshVertexShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Shaders/Private/PostProcess/LGUIRenderMeshVertexShader.usf -------------------------------------------------------------------------------- /Source/LGUI/LGUI.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/LGUI.Build.cs -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIBackgroundBlurActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIBackgroundBlurActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIBackgroundPixeltateActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIBackgroundPixeltateActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIBaseActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIBaseActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIContainerActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIContainerActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIFrameCaptureActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIFrameCaptureActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UIProceduralRectActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UIProceduralRectActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UISpriteActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UISpriteActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UITextActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UITextActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/Actor/UITextureActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/Actor/UITextureActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/LGUICanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/LGUICanvas.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIBackgroundBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIBackgroundBlur.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIBackgroundPixelate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIBackgroundPixelate.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIBaseRenderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIBaseRenderable.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIBatchMeshRenderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIBatchMeshRenderable.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UICanvasGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UICanvasGroup.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UICustomMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UICustomMesh.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIDirectMeshRenderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIDirectMeshRenderable.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIFrameCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIFrameCapture.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIItem.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIPostProcessRenderable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIPostProcessRenderable.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIProceduralRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIProceduralRect.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UISprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UISprite.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UISpriteBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UISpriteBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UIText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UIText.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UITexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UITexture.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/ActorComponent/UITextureBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/ActorComponent/UITextureBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUICanvasCustomClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUICanvasCustomClip.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUICustomMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUICustomMesh.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIDynamicSpriteAtlasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIDynamicSpriteAtlasData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIFontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIFontData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIFontData_BaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIFontData_BaseObject.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIFreeTypeRenderFontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIFreeTypeRenderFontData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUILifeCycleBehaviour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUILifeCycleBehaviour.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUILifeCycleUIBehaviour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUILifeCycleUIBehaviour.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIManager.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIMesh/LGUIMeshComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIMesh/LGUIMeshComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIMeshVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIMeshVertex.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIProceduralRectData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIProceduralRectData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIHelperLineShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIHelperLineShaders.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIPostProcessShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIPostProcessShaders.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIRenderer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIResolveShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIResolveShaders.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIShaders.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRender/LGUIVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRender/LGUIVertex.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRichTextCustomStyleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRichTextCustomStyleData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRichTextImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRichTextImageData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIRichTextImageData_BaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIRichTextImageData_BaseObject.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUISDFFontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUISDFFontData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUISettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUISettings.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUISpriteData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUISpriteData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/LGUIStaticSpriteAtlasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/LGUIStaticSpriteAtlasData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/TextGeometryCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/TextGeometryCache.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/UIDrawcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/UIDrawcall.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/UIGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/UIGeometry.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Core/UIPostProcessRenderProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Core/UIPostProcessRenderProxy.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/InputModule/LGUIBaseInputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/InputModule/LGUIBaseInputModule.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/InputModule/LGUI_PointerInputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/InputModule/LGUI_PointerInputModule.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/InputModule/LGUI_StandaloneInputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/InputModule/LGUI_StandaloneInputModule.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/InputModule/LGUI_TouchInputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/InputModule/LGUI_TouchInputModule.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIBaseRaycaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIBaseRaycaster.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIEventDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIEventDelegate.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIEventSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIEventSystem.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIPointerEventData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIPointerEventData.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIScreenSpaceRaycaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIScreenSpaceRaycaster.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/LGUIWorldSpaceRaycaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/LGUIWorldSpaceRaycaster.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_CenterScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_CenterScreen.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_Mouse.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_World.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineChildrenAsPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineChildrenAsPoints.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineRaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineRaw.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineRendererBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/2DLineRenderer/UI2DLineRendererBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/LGUIImageSequencePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/LGUIImageSequencePlayer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/LGUIRenderTargetGeometrySource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/LGUIRenderTargetGeometrySource.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/LGUIRenderTargetInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/LGUIRenderTargetInteraction.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIPolygon.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIPolygonLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIPolygonLine.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIRenderTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIRenderTarget.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIRenderableCustomRaycastExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIRenderableCustomRaycastExtensions.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIRing.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UISpriteSequencePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UISpriteSequencePlayer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UISpriteSheetTexturePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UISpriteSheetTexturePlayer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIStaticMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIStaticMesh.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIWidget.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Extensions/UIWidgetInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Extensions/UIWidgetInteraction.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithEase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithEase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithWave.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/TextAnimation/UIEffectTextAnimation_Selector.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectGradientColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectGradientColor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectLongShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectLongShadow.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectOutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectOutline.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectPositionAsUV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectPositionAsUV.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectShadow.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIEffectTextAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIEffectTextAnimation.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/GeometryModifier/UIGeometryModifierBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/GeometryModifier/UIGeometryModifierBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIButtonComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIButtonComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIDropdownComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIDropdownComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIEventBlockerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIEventBlockerComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIEventTriggerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIEventTriggerComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIRecyclableScrollViewComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIRecyclableScrollViewComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIScrollViewComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIScrollViewComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIScrollViewWithScrollbarComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIScrollViewWithScrollbarComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIScrollbarComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIScrollbarComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UISelectableComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UISelectableComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UISelectableTransitionComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UISelectableTransitionComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UISliderComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UISliderComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UITextInputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UITextInputComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIToggleComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIToggleComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Interaction/UIToggleGroupComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Interaction/UIToggleGroupComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/LGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/LGUI.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/LGUIBPLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/LGUIBPLibrary.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/LGUIComponentReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/LGUIComponentReference.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/LGUIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/LGUIUtils.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/LGUICanvasScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/LGUICanvasScaler.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIFlexibleGridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIFlexibleGridLayout.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIFlexibleGridLayoutElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIFlexibleGridLayoutElement.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIGridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIGridLayout.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIHorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIHorizontalLayout.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UILayoutBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UILayoutBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UILayoutElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UILayoutElement.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UILayoutWithAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UILayoutWithAnimation.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UILayoutWithChildren.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UILayoutWithChildren.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIPanelLayoutBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIPanelLayoutBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIPanelLayout_FlexibleGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIPanelLayout_FlexibleGrid.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIPanelLayout_HorizontalBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIPanelLayout_HorizontalBox.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIPanelLayout_UniformGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIPanelLayout_UniformGrid.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIPanelLayout_VerticalBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIPanelLayout_VerticalBox.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIRoundedLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIRoundedLayout.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UISizeControlByAspectRatio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UISizeControlByAspectRatio.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UISizeControlByChildren.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UISizeControlByChildren.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UISizeControlByOther.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UISizeControlByOther.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/Layout/UIVerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/Layout/UIVerticalLayout.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PlayTween/LGUIPlayTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PlayTween/LGUIPlayTween.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PlayTween/LGUIPlayTweenComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PlayTween/LGUIPlayTweenComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PlayTween/LGUIPlayTweenSequenceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PlayTween/LGUIPlayTweenSequenceComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequence.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequenceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequenceComponent.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequenceObjectReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequenceObjectReference.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequencePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/LGUIPrefabSequencePlayer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIComponentTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIComponentTypes.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIMaterialSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIMaterialSystem.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIMaterialTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabAnimation/MovieSceneLGUIMaterialTrack.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForConvertToRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForConvertToRuntime.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForDuplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForDuplicate.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForEdit.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForUseInEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForUseInEditor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForUseInRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_DeserializeForUseInRuntime.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/ActorSerializer_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/ActorSerializer_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/2/BitConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/2/BitConverter.h -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer3_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer3_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer3_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer3_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer4_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer4_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer4_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer4_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer5_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer5_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer5_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer5_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer6_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer6_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer6_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer6_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer7_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer7_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer7_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer7_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer8_Deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer8_Deserialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer8_Serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer8_Serialize.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializerBase.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/ActorSerializer_Duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/ActorSerializer_Duplicate.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIDuplicateObjectReaderAndWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIDuplicateObjectReaderAndWriter.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIDuplicateOverrideParameterObjectReaderAndWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIDuplicateOverrideParameterObjectReaderAndWriter.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIObjectReaderAndWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIObjectReaderAndWriter.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIOverrideParameterObjectReaderAndWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIOverrideParameterObjectReaderAndWriter.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIPrefab.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIPrefabHelperObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIPrefabHelperObject.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIPrefabLevelManagerActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIPrefabLevelManagerActor.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIPrefabManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIPrefabManager.cpp -------------------------------------------------------------------------------- /Source/LGUI/Private/PrefabSystem/LGUIPrefabSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Private/PrefabSystem/LGUIPrefabSettings.cpp -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIBackgroundBlurActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIBackgroundBlurActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIBackgroundPixelateActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIBackgroundPixelateActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIBaseActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIBaseActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIContainerActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIContainerActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UICustomMeshActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UICustomMeshActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIFrameCaptureActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIFrameCaptureActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UIProceduralRectActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UIProceduralRectActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UISpriteActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UISpriteActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UITextActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UITextActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/Actor/UITextureActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/Actor/UITextureActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/LGUICanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/LGUICanvas.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIBackgroundBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIBackgroundBlur.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIBackgroundPixelate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIBackgroundPixelate.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIBaseRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIBaseRenderable.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIBatchMeshRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIBatchMeshRenderable.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UICanvasGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UICanvasGroup.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UICustomMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UICustomMesh.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIDirectMeshRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIDirectMeshRenderable.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIFrameCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIFrameCapture.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIItem.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIPostProcessRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIPostProcessRenderable.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIProceduralRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIProceduralRect.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UISprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UISprite.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UISpriteBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UISpriteBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UIText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UIText.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UITexture.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ActorComponent/UITextureBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ActorComponent/UITextureBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/ILGUICultureChangedInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/ILGUICultureChangedInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/IUISpriteRenderableInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/IUISpriteRenderableInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUICanvasCustomClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUICanvasCustomClip.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUICustomMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUICustomMesh.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIDynamicSpriteAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIDynamicSpriteAtlasData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIFontData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIFontData_BaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIFontData_BaseObject.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIFreeTypeRenderFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIFreeTypeRenderFontData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUILifeCycleBehaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUILifeCycleBehaviour.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUILifeCycleUIBehaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUILifeCycleUIBehaviour.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIManager.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIMesh/LGUIMeshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIMesh/LGUIMeshComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIMeshIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIMeshIndex.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIMeshVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIMeshVertex.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIProceduralRectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIProceduralRectData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/ILGUIRendererPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/ILGUIRendererPrimitive.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIHelperLineShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIHelperLineShaders.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIPostProcessShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIPostProcessShaders.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIRenderer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIResolveShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIResolveShaders.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIShaders.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRender/LGUIVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRender/LGUIVertex.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRichTextCustomStyleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRichTextCustomStyleData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRichTextImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRichTextImageData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIRichTextImageData_BaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIRichTextImageData_BaseObject.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUISDFFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUISDFFontData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUISettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUISettings.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUISpriteData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUISpriteData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUISpriteData_BaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUISpriteData_BaseObject.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUISpriteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUISpriteInfo.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUIStaticSpriteAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUIStaticSpriteAtlasData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/LGUITextData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/LGUITextData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/RichTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/RichTextParser.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/UIAnchorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/UIAnchorData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/UIDrawcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/UIDrawcall.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/UIGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/UIGeometry.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/UIPostProcessRenderProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/UIPostProcessRenderProxy.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Core/UIQuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Core/UIQuadTree.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/InputModule/LGUIBaseInputModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/InputModule/LGUIBaseInputModule.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/InputModule/LGUI_PointerInputModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/InputModule/LGUI_PointerInputModule.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/InputModule/LGUI_StandaloneInputModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/InputModule/LGUI_StandaloneInputModule.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/InputModule/LGUI_TouchInputModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/InputModule/LGUI_TouchInputModule.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUINavigationInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUINavigationInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerClickInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerClickInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerDownUpInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerDownUpInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerDragDropInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerDragDropInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerDragInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerDragInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerEnterExitInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerEnterExitInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerScrollInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerScrollInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/Interface/LGUIPointerSelectDeselectInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/Interface/LGUIPointerSelectDeselectInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIBaseEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIBaseEventData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIBaseRaycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIBaseRaycaster.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIDelegateDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIDelegateDeclaration.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIEventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIEventDelegate.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIEventDelegate_PresetParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIEventDelegate_PresetParameter.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIEventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIEventSystem.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIPointerEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIPointerEventData.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIScreenSpaceRaycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIScreenSpaceRaycaster.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/LGUIWorldSpaceRaycaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/LGUIWorldSpaceRaycaster.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_CenterScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_CenterScreen.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_Mouse.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Event/RaycasterSource/LGUIWorldSpaceRaycasterSource_World.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineChildrenAsPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineChildrenAsPoints.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineRaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineRaw.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineRendererBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/2DLineRenderer/UI2DLineRendererBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/LGUIImageSequencePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/LGUIImageSequencePlayer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/LGUIRenderTargetGeometrySource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/LGUIRenderTargetGeometrySource.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/LGUIRenderTargetInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/LGUIRenderTargetInteraction.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIPolygon.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIPolygonLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIPolygonLine.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIRenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIRenderTarget.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIRenderableCustomRaycastExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIRenderableCustomRaycastExtensions.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIRing.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UISpriteSequencePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UISpriteSequencePlayer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UISpriteSheetTexturePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UISpriteSheetTexturePlayer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIStaticMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIStaticMesh.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIWidget.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Extensions/UIWidgetInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Extensions/UIWidgetInteraction.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithEase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_PropertyWithWave.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_Selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/TextAnimation/UIEffectTextAnimation_Selector.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectGradientColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectGradientColor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectLongShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectLongShadow.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectOutline.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectPositionAsUV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectPositionAsUV.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectShadow.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIEffectTextAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIEffectTextAnimation.h -------------------------------------------------------------------------------- /Source/LGUI/Public/GeometryModifier/UIGeometryModifierBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/GeometryModifier/UIGeometryModifierBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIButtonComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIButtonComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIDropdownComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIDropdownComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIEventBlockerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIEventBlockerComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIEventTriggerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIEventTriggerComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIRecyclableScrollViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIRecyclableScrollViewComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIScrollViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIScrollViewComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIScrollViewWithScrollbarComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIScrollViewWithScrollbarComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIScrollbarComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIScrollbarComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UISelectableComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UISelectableComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UISelectableTransitionComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UISelectableTransitionComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UISliderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UISliderComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UITextInputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UITextInputComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIToggleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIToggleComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Interaction/UIToggleGroupComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Interaction/UIToggleGroupComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/LGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/LGUI.h -------------------------------------------------------------------------------- /Source/LGUI/Public/LGUIBPLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/LGUIBPLibrary.h -------------------------------------------------------------------------------- /Source/LGUI/Public/LGUIComponentReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/LGUIComponentReference.h -------------------------------------------------------------------------------- /Source/LGUI/Public/LGUIDelegateHandleWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/LGUIDelegateHandleWrapper.h -------------------------------------------------------------------------------- /Source/LGUI/Public/LGUIHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/LGUIHeaders.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/ILGUILayoutElementInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/ILGUILayoutElementInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/ILGUILayoutInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/ILGUILayoutInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/LGUICanvasScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/LGUICanvasScaler.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIFlexibleGridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIFlexibleGridLayout.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIFlexibleGridLayoutElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIFlexibleGridLayoutElement.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIGridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIGridLayout.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIHorizontalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIHorizontalLayout.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UILayoutBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UILayoutBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UILayoutElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UILayoutElement.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UILayoutWithAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UILayoutWithAnimation.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UILayoutWithChildren.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UILayoutWithChildren.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIPanelLayoutBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIPanelLayoutBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIPanelLayout_FlexibleGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIPanelLayout_FlexibleGrid.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIPanelLayout_HorizontalBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIPanelLayout_HorizontalBox.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIPanelLayout_UniformGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIPanelLayout_UniformGrid.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIPanelLayout_VerticalBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIPanelLayout_VerticalBox.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIRoundedLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIRoundedLayout.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UISizeControlByAspectRatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UISizeControlByAspectRatio.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UISizeControlByChildren.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UISizeControlByChildren.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UISizeControlByOther.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UISizeControlByOther.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Layout/UIVerticalLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Layout/UIVerticalLayout.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PlayTween/LGUIPlayTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PlayTween/LGUIPlayTween.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PlayTween/LGUIPlayTweenComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PlayTween/LGUIPlayTweenComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PlayTween/LGUIPlayTweenSequenceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PlayTween/LGUIPlayTweenSequenceComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PlayTween/LGUIPlayTween_Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PlayTween/LGUIPlayTween_Params.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequence.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequenceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequenceComponent.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequenceObjectReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequenceObjectReference.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequencePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/LGUIPrefabSequencePlayer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIComponentTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIComponentTypes.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIMaterialSystem.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIMaterialTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabAnimation/MovieSceneLGUIMaterialTrack.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/2/ActorSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/2/ActorSerializer.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer3.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer4.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer5.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer6.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer7.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializer8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializer8.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ActorSerializerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ActorSerializerBase.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/ILGUIPrefabInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/ILGUIPrefabInterface.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIObjectReaderAndWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIObjectReaderAndWriter.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIPrefab.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIPrefabHelperObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIPrefabHelperObject.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIPrefabLevelManagerActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIPrefabLevelManagerActor.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIPrefabManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIPrefabManager.h -------------------------------------------------------------------------------- /Source/LGUI/Public/PrefabSystem/LGUIPrefabSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/PrefabSystem/LGUIPrefabSettings.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/LGUIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/LGUIUtils.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/MaxRectsBinPack/MaxRectsBinPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/MaxRectsBinPack/MaxRectsBinPack.cpp -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/MaxRectsBinPack/MaxRectsBinPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/MaxRectsBinPack/MaxRectsBinPack.h -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/sdf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/sdf/LICENSE.txt -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/sdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/sdf/README.md -------------------------------------------------------------------------------- /Source/LGUI/Public/Utils/sdf/sdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUI/Public/Utils/sdf/sdf.h -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/LGUIComponentVisualizer.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/LGUIComponentVisualizer.Build.cs -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIFlexibleGridLayoutComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIFlexibleGridLayoutComponentVisualizer.cpp -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIFlexibleGridLayoutComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIFlexibleGridLayoutComponentVisualizer.h -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIItemComponentVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIItemComponentVisualizer.cpp -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIItemComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIItemComponentVisualizer.h -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIPanelLayoutFlexibleGridComponentVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/ComponentVisualizer/UIPanelLayoutFlexibleGridComponentVisualizer.h -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Private/LGUIComponentVisualizerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Private/LGUIComponentVisualizerModule.cpp -------------------------------------------------------------------------------- /Source/LGUIComponentVisualizer/Public/LGUIComponentVisualizerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIComponentVisualizer/Public/LGUIComponentVisualizerModule.h -------------------------------------------------------------------------------- /Source/LGUIEditor/LGUIEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/LGUIEditor.Build.cs -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIFontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIFontData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIFontData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefab.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefab.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefabForUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefabForUI.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefabForUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIPrefabForUI.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextCustomStyleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextCustomStyleData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextCustomStyleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextCustomStyleData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextImageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextImageData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIRichTextImageData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISDFFontData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISDFFontData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISDFFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISDFFontData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISpriteData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISpriteData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISpriteData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUISpriteData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticMeshCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticMeshCache.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticMeshCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticMeshCache.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticSpriteAtlasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticSpriteAtlasData.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticSpriteAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/AssetTypeActions/AssetTypeActions_LGUIStaticSpriteAtlasData.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/ContentBrowserExtensions/LGUIContentBrowserExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/ContentBrowserExtensions/LGUIContentBrowserExtensions.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/ContentBrowserExtensions/LGUIContentBrowserExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/ContentBrowserExtensions/LGUIContentBrowserExtensions.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIFontFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIFontFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIFontFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIFontFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabActorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabActorFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabActorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabActorFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactoryForUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactoryForUI.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactoryForUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIPrefabFactoryForUI.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIRichTextCustomStyleDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIRichTextCustomStyleDataFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIRichTextCustomStyleDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIRichTextCustomStyleDataFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIRichTextImageDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIRichTextImageDataFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIRichTextImageDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIRichTextImageDataFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUISDFFontDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUISDFFontDataFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUISDFFontDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUISDFFontDataFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUISpriteDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUISpriteDataFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUISpriteDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUISpriteDataFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIStaticMeshCacheFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIStaticMeshCacheFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIStaticMeshCacheFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIStaticMeshCacheFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIStaticSpriteAtalsDataFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIStaticSpriteAtalsDataFactory.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DataFactory/LGUIStaticSpriteAtalsDataFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DataFactory/LGUIStaticSpriteAtalsDataFactory.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomClip_RoundedRect_Customization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomClip_RoundedRect_Customization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomClip_RoundedRect_Customization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomClip_RoundedRect_Customization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUICanvasCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIComponentReferenceCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIComponentReferenceCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIComponentReferenceCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIComponentReferenceCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIEditableTextPropertyHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIEditableTextPropertyHandle.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegateCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegateCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegateCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegateCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegatePresetParamCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIEventDelegatePresetParamCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIFreeTypeRenderFontDataCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIFreeTypeRenderFontDataCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIFreeTypeRenderFontDataCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIFreeTypeRenderFontDataCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIPrefabCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIPrefabCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIPrefabCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIPrefabCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUISpriteDataCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUISpriteDataCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUISpriteDataCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUISpriteDataCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIStaticSpriteAtlasDataCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIStaticSpriteAtlasDataCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/LGUIStaticSpriteAtlasDataCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/LGUIStaticSpriteAtlasDataCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/HorizontalAlignmentCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/HorizontalAlignmentCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/HorizontalAlignmentCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/HorizontalAlignmentCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/SlateChildSizeCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/SlateChildSizeCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/SlateChildSizeCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/SlateChildSizeCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/VerticalAlignmentCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/VerticalAlignmentCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/PanelLayout/VerticalAlignmentCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/PanelLayout/VerticalAlignmentCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIBaseRenderableCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIBaseRenderableCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIBaseRenderableCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIBaseRenderableCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIBatchMeshRenderableCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIBatchMeshRenderableCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIBatchMeshRenderableCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIBatchMeshRenderableCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UICanvasScalerCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UICanvasScalerCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UICanvasScalerCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UICanvasScalerCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIEffectTextAnimationCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIEffectTextAnimationCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIEffectTextAnimationCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIEffectTextAnimationCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIFlexibleGridLayoutCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIFlexibleGridLayoutCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIFlexibleGridLayoutCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIFlexibleGridLayoutCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIGridLayoutCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIGridLayoutCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIGridLayoutCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIGridLayoutCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIHorizontalLayoutCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIHorizontalLayoutCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIHorizontalLayoutCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIHorizontalLayoutCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIItemCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIItemCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIItemCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIItemCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UILayoutBaseCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UILayoutBaseCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UILayoutBaseCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UILayoutBaseCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UILayoutElementCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UILayoutElementCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UILayoutElementCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UILayoutElementCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutFlexibleGridSlotCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutFlexibleGridSlotCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutFlexibleGridSlotCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutFlexibleGridSlotCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutHorizontalBoxSlotCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutHorizontalBoxSlotCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutHorizontalBoxSlotCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutHorizontalBoxSlotCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutUniformGridSlotCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutUniformGridSlotCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutUniformGridSlotCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutUniformGridSlotCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutVerticalBoxSlotCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutVerticalBoxSlotCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutVerticalBoxSlotCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPanelLayoutVerticalBoxSlotCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPostProcessRenderableCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPostProcessRenderableCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIPostProcessRenderableCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIPostProcessRenderableCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIProceduralRectCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIProceduralRectCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIProceduralRectCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIProceduralRectCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIScrollViewWithScrollBarCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIScrollViewWithScrollBarCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIScrollViewWithScrollBarCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIScrollViewWithScrollBarCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISelectableCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISelectableCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISelectableCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISelectableCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteBaseCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteBaseCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteBaseCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteBaseCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteSequencePlayerCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteSequencePlayerCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteSequencePlayerCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteSequencePlayerCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteSheetTexturePlayerCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteSheetTexturePlayerCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UISpriteSheetTexturePlayerCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UISpriteSheetTexturePlayerCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextInputCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextInputCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextInputCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextInputCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextureBaseCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextureBaseCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextureBaseCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextureBaseCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextureCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextureCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UITextureCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UITextureCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIToggleCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIToggleCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIToggleCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIToggleCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIVerticalLayoutCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIVerticalLayoutCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/DetailCustomization/UIVerticalLayoutCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/DetailCustomization/UIVerticalLayoutCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LGUIEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LGUIEditorModule.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LGUIEditorStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LGUIEditorStyle.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LGUIEditorTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LGUIEditorTools.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LGUIEditorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LGUIEditorUtils.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LevelEditorMenuExtensions/LGUILevelEditorExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LevelEditorMenuExtensions/LGUILevelEditorExtensions.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/LevelEditorMenuExtensions/LGUILevelEditorExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/LevelEditorMenuExtensions/LGUILevelEditorExtensions.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIMaterialTrackEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIMaterialTrackEditor.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIMaterialTrackEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIMaterialTrackEditor.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceComponentCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceComponentCustomization.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceComponentCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceComponentCustomization.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditor.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditor.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditorWidget.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequenceEditorWidget.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequencerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/LGUIPrefabSequencerSettings.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/MovieSceneSequenceEditor_LGUIPrefabSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/MovieSceneSequenceEditor_LGUIPrefabSequence.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabAnimation/MovieSceneSequenceEditor_LGUIPrefabSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabAnimation/MovieSceneSequenceEditor_LGUIPrefabSequence.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditor.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditor.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorCommand.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorCommand.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorDetails.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorDetails.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorOutliner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorOutliner.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorOutliner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorOutliner.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorScene.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorScene.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewport.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewport.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportClient.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportClient.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportToolbar.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabEditorViewportToolbar.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabOverrideDataViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabOverrideDataViewer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabOverrideDataViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabOverrideDataViewer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabRawDataViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabRawDataViewer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabRawDataViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabRawDataViewer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabViewportClickHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabViewportClickHandlers.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabViewportClickHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/LGUIPrefabViewportClickHandlers.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/PrefabScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/PrefabScene.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/PrefabEditor/PrefabScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/PrefabEditor/PrefabScene.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUINativeSceneOutlinerExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUINativeSceneOutlinerExtension.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUINativeSceneOutlinerExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUINativeSceneOutlinerExtension.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerButton.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerButton.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerInfoColumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerInfoColumn.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerInfoColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/SceneOutliner/LGUISceneOutlinerInfoColumn.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailScene.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUIPrefabThumbnailScene.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUISpriteDataBaseObjectThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUISpriteDataBaseObjectThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUISpriteDataBaseObjectThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUISpriteDataBaseObjectThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUISpriteThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUISpriteThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Thumbnail/LGUISpriteThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Thumbnail/LGUISpriteThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Window/LGUIDynamicSpriteAtlasViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Window/LGUIDynamicSpriteAtlasViewer.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Private/Window/LGUIDynamicSpriteAtlasViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Private/Window/LGUIDynamicSpriteAtlasViewer.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorCommands.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorCommands.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorModule.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorStyle.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorTools.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/LGUIEditorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/LGUIEditorUtils.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/AnchorPreviewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/AnchorPreviewWidget.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/ComponentTransformDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/ComponentTransformDetails.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/ComponentTransformDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/ComponentTransformDetails.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/LGUIFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/LGUIFileBrowser.h -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/LGUIVectorInputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/LGUIVectorInputBox.cpp -------------------------------------------------------------------------------- /Source/LGUIEditor/Public/Widget/LGUIVectorInputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIEditor/Public/Widget/LGUIVectorInputBox.h -------------------------------------------------------------------------------- /Source/LGUIK2Nodes/LGUIK2Nodes.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIK2Nodes/LGUIK2Nodes.Build.cs -------------------------------------------------------------------------------- /Source/LGUIK2Nodes/Private/K2Node_LGUICompRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIK2Nodes/Private/K2Node_LGUICompRef.cpp -------------------------------------------------------------------------------- /Source/LGUIK2Nodes/Private/K2Node_LGUICompRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIK2Nodes/Private/K2Node_LGUICompRef.h -------------------------------------------------------------------------------- /Source/LGUIK2Nodes/Private/LGUIK2NodesModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIK2Nodes/Private/LGUIK2NodesModule.cpp -------------------------------------------------------------------------------- /Source/LGUIK2Nodes/Public/LGUIK2NodesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LGUIK2Nodes/Public/LGUIK2NodesModule.h -------------------------------------------------------------------------------- /Source/LTween/LTween.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/LTween.Build.cs -------------------------------------------------------------------------------- /Source/LTween/Private/LTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/LTween.cpp -------------------------------------------------------------------------------- /Source/LTween/Private/LTweenBPLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/LTweenBPLibrary.cpp -------------------------------------------------------------------------------- /Source/LTween/Private/LTweenManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/LTweenManager.cpp -------------------------------------------------------------------------------- /Source/LTween/Private/LTweener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/LTweener.cpp -------------------------------------------------------------------------------- /Source/LTween/Private/LTweenerSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/LTweenerSequence.cpp -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerColor.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerDouble.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerFloat.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerFrame.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerInteger.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerLinearColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerLinearColor.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerMaterialScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerMaterialScalar.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerMaterialVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerMaterialVector.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerPosition.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerQuaternion.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerRotationEuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerRotationEuler.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerRotationQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerRotationQuat.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerRotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerRotator.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerScale.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerUpdate.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerVector.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerVector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerVector2D.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerVector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerVector4.h -------------------------------------------------------------------------------- /Source/LTween/Private/Tweener/LTweenerVirtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Private/Tweener/LTweenerVirtual.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTween.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweenBPLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweenBPLibrary.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweenDelegateHandleWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweenDelegateHandleWrapper.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweenHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweenHeaders.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweenManager.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweener.h -------------------------------------------------------------------------------- /Source/LTween/Public/LTweenerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufei2008/LGUI/HEAD/Source/LTween/Public/LTweenerSequence.h --------------------------------------------------------------------------------