├── .gitattributes ├── .gitignore ├── Binaries └── ThirdParty │ └── SvgBoogaLibrary │ ├── Linux │ └── x86_64-unknown-linux-gnu │ │ └── liblunasvg.a │ ├── MacOS │ └── liblunasvg.a │ └── Win64 │ └── lunasvg.lib ├── README.md ├── Resources └── Icon128.png ├── Source ├── SvgBooga │ ├── Private │ │ ├── MaterialExpressionSvgTextureObject.cpp │ │ ├── SvgBooga.cpp │ │ └── SvgTexture2D.cpp │ ├── Public │ │ ├── MaterialExpressionSvgTextureObject.h │ │ ├── SvgBooga.h │ │ └── SvgTexture2D.h │ └── SvgBooga.Build.cs ├── SvgBoogaEditor │ ├── Private │ │ ├── AssetTypeActions_SvgTexture.h │ │ ├── SvgBoogaEditor.cpp │ │ ├── SvgTexture2DThumbnailRenderer.cpp │ │ └── SvgTextureFactory.cpp │ ├── Public │ │ ├── AssetTypeActions_SvgTexture.cpp │ │ ├── SvgBoogaEditor.h │ │ ├── SvgImportOptions.h │ │ ├── SvgTexture2DThumbnailRenderer.h │ │ └── SvgTextureFactory.h │ └── SvgBoogaEditor.Build.cs └── ThirdParty │ └── LunaSvg │ ├── LunaSvg.Build.cs │ ├── LunaSvg.cpp │ ├── LunaSvg.tps │ ├── Mac │ └── Release │ │ └── liblunasvg.a │ ├── Public │ └── LunaSvg │ │ └── lunasvg.h │ └── x64 │ └── Release │ └── lunasvg.lib └── SvgBooga.uplugin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/ThirdParty/SvgBoogaLibrary/Linux/x86_64-unknown-linux-gnu/liblunasvg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Binaries/ThirdParty/SvgBoogaLibrary/Linux/x86_64-unknown-linux-gnu/liblunasvg.a -------------------------------------------------------------------------------- /Binaries/ThirdParty/SvgBoogaLibrary/MacOS/liblunasvg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Binaries/ThirdParty/SvgBoogaLibrary/MacOS/liblunasvg.a -------------------------------------------------------------------------------- /Binaries/ThirdParty/SvgBoogaLibrary/Win64/lunasvg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Binaries/ThirdParty/SvgBoogaLibrary/Win64/lunasvg.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/SvgBooga/Private/MaterialExpressionSvgTextureObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Private/MaterialExpressionSvgTextureObject.cpp -------------------------------------------------------------------------------- /Source/SvgBooga/Private/SvgBooga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Private/SvgBooga.cpp -------------------------------------------------------------------------------- /Source/SvgBooga/Private/SvgTexture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Private/SvgTexture2D.cpp -------------------------------------------------------------------------------- /Source/SvgBooga/Public/MaterialExpressionSvgTextureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Public/MaterialExpressionSvgTextureObject.h -------------------------------------------------------------------------------- /Source/SvgBooga/Public/SvgBooga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Public/SvgBooga.h -------------------------------------------------------------------------------- /Source/SvgBooga/Public/SvgTexture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/Public/SvgTexture2D.h -------------------------------------------------------------------------------- /Source/SvgBooga/SvgBooga.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBooga/SvgBooga.Build.cs -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Private/AssetTypeActions_SvgTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Private/AssetTypeActions_SvgTexture.h -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Private/SvgBoogaEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Private/SvgBoogaEditor.cpp -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Private/SvgTexture2DThumbnailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Private/SvgTexture2DThumbnailRenderer.cpp -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Private/SvgTextureFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Private/SvgTextureFactory.cpp -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Public/AssetTypeActions_SvgTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Public/AssetTypeActions_SvgTexture.cpp -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Public/SvgBoogaEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Public/SvgBoogaEditor.h -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Public/SvgImportOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Public/SvgImportOptions.h -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Public/SvgTexture2DThumbnailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Public/SvgTexture2DThumbnailRenderer.h -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/Public/SvgTextureFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/Public/SvgTextureFactory.h -------------------------------------------------------------------------------- /Source/SvgBoogaEditor/SvgBoogaEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/SvgBoogaEditor/SvgBoogaEditor.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/LunaSvg.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/LunaSvg.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/LunaSvg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/LunaSvg.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/LunaSvg.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/LunaSvg.tps -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/Mac/Release/liblunasvg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/Mac/Release/liblunasvg.a -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/Public/LunaSvg/lunasvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/Public/LunaSvg/lunasvg.h -------------------------------------------------------------------------------- /Source/ThirdParty/LunaSvg/x64/Release/lunasvg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/Source/ThirdParty/LunaSvg/x64/Release/lunasvg.lib -------------------------------------------------------------------------------- /SvgBooga.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etodanik/SvgBooga/HEAD/SvgBooga.uplugin --------------------------------------------------------------------------------