├── .gitattributes ├── .gitignore ├── Content └── ImpostorBaker │ ├── MaterialFunctions │ ├── FrameBlendWeights.uasset │ ├── FrameBlendWeights_TextureObject.uasset │ ├── HemiOctahedronToUnitVector.uasset │ ├── ImposterSpriteProjection.uasset │ ├── ImpostorGridToVector.uasset │ ├── ImpostorInfo.uasset │ ├── Impostor_ThreeFrameBlend.uasset │ ├── MF_ImpostorFrameTransform.uasset │ ├── MF_SampleFrame_Dilation.uasset │ ├── POM_Impostor.uasset │ ├── TriangleInterpolator.uasset │ ├── UnitVectorToHemiOctahedra.uasset │ └── VirtualPlaneCoordinates_Imposter.uasset │ └── Materials │ ├── Generation │ ├── MI_SampleFrame_DistanceField.uasset │ ├── MI_Sample_Frame.uasset │ ├── M_AddAlpha.uasset │ ├── M_AddAlphaFromFinalColor.uasset │ ├── M_BaseColor_CustomLighting.uasset │ ├── M_CombineNormalsDepth.uasset │ ├── M_Resample_RT.uasset │ └── M_Sample_Frame.uasset │ ├── MI_Billboard_No_POM.uasset │ ├── MI_Billboard_POM.uasset │ ├── MI_Impostor_Hemisphere.uasset │ ├── MI_Impostor_Sphere.uasset │ ├── M_Billboard.uasset │ ├── M_Billboard_TwoSided.uasset │ ├── M_Impostor.uasset │ └── PostProcess │ └── M_ObjectDepth.uasset ├── ImpostorBaker.uplugin ├── README.md ├── Resources └── Icon128.png └── Source └── ImpostorBakerEditor ├── ImpostorBakerEditor.Build.cs ├── Private ├── AssetTypeActions_ImpostorSettings.cpp ├── AssetTypeActions_ImpostorSettings.h ├── Customizations │ ├── ImpostorBakerManagerCustomization.cpp │ ├── ImpostorBakerManagerCustomization.h │ ├── ImpostorDataCustomization.cpp │ └── ImpostorDataCustomization.h ├── ImpostorBakerEditorModule.cpp ├── ImpostorBakerEditorToolkit.cpp ├── ImpostorBakerEditorToolkit.h ├── ImpostorBakerSettings.h ├── ImpostorBakerUtilities.cpp ├── ImpostorBakerUtilities.h ├── ImpostorData.cpp ├── ImpostorData.h ├── ImpostorDataThumbnailRenderer.cpp ├── ImpostorDataThumbnailRenderer.h ├── Managers │ ├── ImpostorBakerManager.cpp │ ├── ImpostorBakerManager.h │ ├── ImpostorBaseManager.cpp │ ├── ImpostorBaseManager.h │ ├── ImpostorComponentsManager.cpp │ ├── ImpostorComponentsManager.h │ ├── ImpostorLightingManager.cpp │ ├── ImpostorLightingManager.h │ ├── ImpostorMaterialsManager.cpp │ ├── ImpostorMaterialsManager.h │ ├── ImpostorProceduralMeshManager.cpp │ ├── ImpostorProceduralMeshManager.h │ ├── ImpostorRenderTargetsManager.cpp │ └── ImpostorRenderTargetsManager.h └── Scene │ ├── ImpostorBakerViewportClient.cpp │ ├── ImpostorBakerViewportClient.h │ ├── SImpostorBakerViewport.cpp │ ├── SImpostorBakerViewport.h │ ├── SImpostorBakerViewportToolBar.cpp │ └── SImpostorBakerViewportToolBar.h └── Public └── ImpostorBakerEditorModule.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/FrameBlendWeights.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/FrameBlendWeights.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/FrameBlendWeights_TextureObject.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/FrameBlendWeights_TextureObject.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/HemiOctahedronToUnitVector.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/HemiOctahedronToUnitVector.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/ImposterSpriteProjection.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/ImposterSpriteProjection.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/ImpostorGridToVector.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/ImpostorGridToVector.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/ImpostorInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/ImpostorInfo.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/Impostor_ThreeFrameBlend.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/Impostor_ThreeFrameBlend.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/MF_ImpostorFrameTransform.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/MF_ImpostorFrameTransform.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/MF_SampleFrame_Dilation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/MF_SampleFrame_Dilation.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/POM_Impostor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/POM_Impostor.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/TriangleInterpolator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/TriangleInterpolator.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/UnitVectorToHemiOctahedra.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/UnitVectorToHemiOctahedra.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/MaterialFunctions/VirtualPlaneCoordinates_Imposter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/MaterialFunctions/VirtualPlaneCoordinates_Imposter.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/MI_SampleFrame_DistanceField.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/MI_SampleFrame_DistanceField.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/MI_Sample_Frame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/MI_Sample_Frame.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_AddAlpha.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_AddAlpha.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_AddAlphaFromFinalColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_AddAlphaFromFinalColor.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_BaseColor_CustomLighting.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_BaseColor_CustomLighting.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_CombineNormalsDepth.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_CombineNormalsDepth.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_Resample_RT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_Resample_RT.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/Generation/M_Sample_Frame.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/Generation/M_Sample_Frame.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/MI_Billboard_No_POM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/MI_Billboard_No_POM.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/MI_Billboard_POM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/MI_Billboard_POM.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/MI_Impostor_Hemisphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/MI_Impostor_Hemisphere.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/MI_Impostor_Sphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/MI_Impostor_Sphere.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/M_Billboard.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/M_Billboard.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/M_Billboard_TwoSided.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/M_Billboard_TwoSided.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/M_Impostor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/M_Impostor.uasset -------------------------------------------------------------------------------- /Content/ImpostorBaker/Materials/PostProcess/M_ObjectDepth.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Content/ImpostorBaker/Materials/PostProcess/M_ObjectDepth.uasset -------------------------------------------------------------------------------- /ImpostorBaker.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/ImpostorBaker.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/ImpostorBakerEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/ImpostorBakerEditor.Build.cs -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/AssetTypeActions_ImpostorSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/AssetTypeActions_ImpostorSettings.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/AssetTypeActions_ImpostorSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/AssetTypeActions_ImpostorSettings.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Customizations/ImpostorBakerManagerCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Customizations/ImpostorBakerManagerCustomization.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Customizations/ImpostorBakerManagerCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Customizations/ImpostorBakerManagerCustomization.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Customizations/ImpostorDataCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Customizations/ImpostorDataCustomization.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Customizations/ImpostorDataCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Customizations/ImpostorDataCustomization.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerEditorModule.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerEditorToolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerEditorToolkit.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerEditorToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerEditorToolkit.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerSettings.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerUtilities.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorBakerUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorBakerUtilities.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorData.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorData.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorDataThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorDataThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/ImpostorDataThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/ImpostorDataThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorBakerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorBakerManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorBakerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorBakerManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorBaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorBaseManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorBaseManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorComponentsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorComponentsManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorComponentsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorComponentsManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorLightingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorLightingManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorLightingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorLightingManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorMaterialsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorMaterialsManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorMaterialsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorMaterialsManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorProceduralMeshManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorProceduralMeshManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorProceduralMeshManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorProceduralMeshManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorRenderTargetsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorRenderTargetsManager.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Managers/ImpostorRenderTargetsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Managers/ImpostorRenderTargetsManager.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/ImpostorBakerViewportClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/ImpostorBakerViewportClient.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/ImpostorBakerViewportClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/ImpostorBakerViewportClient.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewport.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewport.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewportToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewportToolBar.cpp -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewportToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Private/Scene/SImpostorBakerViewportToolBar.h -------------------------------------------------------------------------------- /Source/ImpostorBakerEditor/Public/ImpostorBakerEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erlandys/ImpostorBaker/HEAD/Source/ImpostorBakerEditor/Public/ImpostorBakerEditorModule.h --------------------------------------------------------------------------------