├── .gitignore ├── LICENSE ├── ReadMe.md ├── Resources └── Icon128.png ├── Shaders └── Private │ ├── Live2DMaskBatchedElements.usf │ ├── Live2DMaskedBatchedElements.usf │ └── Live2DNormalBatchedElements.usf ├── Source ├── Live2D │ ├── Live2D.Build.cs │ ├── Private │ │ ├── Live2D.cpp │ │ ├── Live2DLogCategory.cpp │ │ ├── Live2DMocModel.cpp │ │ ├── Live2DStructs.cpp │ │ ├── Motion │ │ │ ├── Live2DModelMotion.cpp │ │ │ ├── Live2DModelMotionCurve.cpp │ │ │ └── Live2DModelMotionSegment.cpp │ │ ├── Physics │ │ │ └── Live2DModelPhysics.cpp │ │ ├── Rendering │ │ │ └── Live2DBatchedElements.cpp │ │ └── UI │ │ │ └── Live2DUIUitls.cpp │ └── Public │ │ ├── Live2D.h │ │ ├── Live2DLogCategory.h │ │ ├── Live2DMocModel.h │ │ ├── Live2DStructs.h │ │ ├── Motion │ │ ├── Live2DModelMotion.h │ │ ├── Live2DModelMotionCurve.h │ │ └── Live2DModelMotionSegment.h │ │ ├── Physics │ │ └── Live2DModelPhysics.h │ │ ├── Rendering │ │ └── Live2DBatchedElements.h │ │ └── UI │ │ └── Live2DUIUitls.h ├── Live2DEditor │ ├── Live2DEditor.Build.cs │ ├── Private │ │ ├── Live2DEditor.cpp │ │ ├── Live2DEditorLogCategory.cpp │ │ ├── Moc3ImportFactory.cpp │ │ ├── Model3JsonImportFactory.cpp │ │ └── Motion3JsonImportFactory.cpp │ └── Public │ │ ├── Live2DEditor.h │ │ ├── Live2DEditorLogCategory.h │ │ ├── Live2DEditorUtils.cpp │ │ ├── Live2DEditorUtils.h │ │ ├── Moc3ImportFactory.h │ │ ├── Model3JsonImportFactory.h │ │ └── Motion3JsonImportFactory.h ├── Live2DModelEditor │ ├── Live2DModelEditor.Build.cs │ ├── Private │ │ ├── AssetTypeActions_Live2DMocModel.cpp │ │ ├── AssetTypeActions_Live2DMocModel.h │ │ ├── Live2DModelEditor.cpp │ │ ├── Live2DModelEditor.h │ │ └── Live2DModelEditorModule.cpp │ └── Public │ │ ├── ILive2DModelEditor.h │ │ └── Live2DModelEditorModule.h ├── Live2DMotionEditor │ ├── Live2DMotionEditor.Build.cs │ ├── Private │ │ ├── AssetTypeActions_Live2DModelMotion.cpp │ │ ├── AssetTypeActions_Live2DModelMotion.h │ │ ├── Live2DMotionEditor.cpp │ │ ├── Live2DMotionEditor.h │ │ └── Live2DMotionEditorModule.cpp │ └── Public │ │ ├── ILive2DMotionEditor.h │ │ └── Live2DMotionEditorModule.h └── ThirdParty │ └── Live2DLibrary │ ├── Core │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ └── RedistributableFiles.txt │ ├── ExampleLibrary.sln │ ├── ExampleLibrary.vcxproj │ ├── ExampleLibrary.vcxproj.filters │ └── Live2DLibrary.Build.cs └── UELive2D.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Shaders/Private/Live2DMaskBatchedElements.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Shaders/Private/Live2DMaskBatchedElements.usf -------------------------------------------------------------------------------- /Shaders/Private/Live2DMaskedBatchedElements.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Shaders/Private/Live2DMaskedBatchedElements.usf -------------------------------------------------------------------------------- /Shaders/Private/Live2DNormalBatchedElements.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Shaders/Private/Live2DNormalBatchedElements.usf -------------------------------------------------------------------------------- /Source/Live2D/Live2D.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Live2D.Build.cs -------------------------------------------------------------------------------- /Source/Live2D/Private/Live2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Live2D.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Live2DLogCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Live2DLogCategory.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Live2DMocModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Live2DMocModel.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Live2DStructs.cpp: -------------------------------------------------------------------------------- 1 | #include "Live2DStructs.h" 2 | -------------------------------------------------------------------------------- /Source/Live2D/Private/Motion/Live2DModelMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Motion/Live2DModelMotion.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Motion/Live2DModelMotionCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Motion/Live2DModelMotionCurve.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Motion/Live2DModelMotionSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Motion/Live2DModelMotionSegment.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Physics/Live2DModelPhysics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Physics/Live2DModelPhysics.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/Rendering/Live2DBatchedElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/Rendering/Live2DBatchedElements.cpp -------------------------------------------------------------------------------- /Source/Live2D/Private/UI/Live2DUIUitls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Private/UI/Live2DUIUitls.cpp -------------------------------------------------------------------------------- /Source/Live2D/Public/Live2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Live2D.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Live2DLogCategory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "CoreMinimal.h" 4 | 5 | DECLARE_LOG_CATEGORY_EXTERN(LogLive2D, Log, All); -------------------------------------------------------------------------------- /Source/Live2D/Public/Live2DMocModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Live2DMocModel.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Live2DStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Live2DStructs.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Motion/Live2DModelMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Motion/Live2DModelMotion.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Motion/Live2DModelMotionCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Motion/Live2DModelMotionCurve.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Motion/Live2DModelMotionSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Motion/Live2DModelMotionSegment.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Physics/Live2DModelPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Physics/Live2DModelPhysics.h -------------------------------------------------------------------------------- /Source/Live2D/Public/Rendering/Live2DBatchedElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/Rendering/Live2DBatchedElements.h -------------------------------------------------------------------------------- /Source/Live2D/Public/UI/Live2DUIUitls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2D/Public/UI/Live2DUIUitls.h -------------------------------------------------------------------------------- /Source/Live2DEditor/Live2DEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Live2DEditor.Build.cs -------------------------------------------------------------------------------- /Source/Live2DEditor/Private/Live2DEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Private/Live2DEditor.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Private/Live2DEditorLogCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Private/Live2DEditorLogCategory.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Private/Moc3ImportFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Private/Moc3ImportFactory.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Private/Model3JsonImportFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Private/Model3JsonImportFactory.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Private/Motion3JsonImportFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Private/Motion3JsonImportFactory.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Live2DEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Live2DEditor.h -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Live2DEditorLogCategory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "CoreMinimal.h" 4 | 5 | DECLARE_LOG_CATEGORY_EXTERN(LogLive2DEditor, Log, All); -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Live2DEditorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Live2DEditorUtils.cpp -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Live2DEditorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Live2DEditorUtils.h -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Moc3ImportFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Moc3ImportFactory.h -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Model3JsonImportFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Model3JsonImportFactory.h -------------------------------------------------------------------------------- /Source/Live2DEditor/Public/Motion3JsonImportFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DEditor/Public/Motion3JsonImportFactory.h -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Live2DModelEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Live2DModelEditor.Build.cs -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Private/AssetTypeActions_Live2DMocModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Private/AssetTypeActions_Live2DMocModel.cpp -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Private/AssetTypeActions_Live2DMocModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Private/AssetTypeActions_Live2DMocModel.h -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Private/Live2DModelEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Private/Live2DModelEditor.cpp -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Private/Live2DModelEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Private/Live2DModelEditor.h -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Private/Live2DModelEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Private/Live2DModelEditorModule.cpp -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Public/ILive2DModelEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Public/ILive2DModelEditor.h -------------------------------------------------------------------------------- /Source/Live2DModelEditor/Public/Live2DModelEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DModelEditor/Public/Live2DModelEditorModule.h -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Live2DMotionEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Live2DMotionEditor.Build.cs -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Private/AssetTypeActions_Live2DModelMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Private/AssetTypeActions_Live2DModelMotion.cpp -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Private/AssetTypeActions_Live2DModelMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Private/AssetTypeActions_Live2DModelMotion.h -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Private/Live2DMotionEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Private/Live2DMotionEditor.cpp -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Private/Live2DMotionEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Private/Live2DMotionEditor.h -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Private/Live2DMotionEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Private/Live2DMotionEditorModule.cpp -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Public/ILive2DMotionEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Public/ILive2DMotionEditor.h -------------------------------------------------------------------------------- /Source/Live2DMotionEditor/Public/Live2DMotionEditorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/Live2DMotionEditor/Public/Live2DMotionEditorModule.h -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/Core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/Core/CHANGELOG.md -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/Core/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/Core/LICENSE.md -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/Core/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/Core/RedistributableFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/Core/RedistributableFiles.txt -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/ExampleLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/ExampleLibrary.sln -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/ExampleLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/ExampleLibrary.vcxproj -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/ExampleLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/ExampleLibrary.vcxproj.filters -------------------------------------------------------------------------------- /Source/ThirdParty/Live2DLibrary/Live2DLibrary.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/Source/ThirdParty/Live2DLibrary/Live2DLibrary.Build.cs -------------------------------------------------------------------------------- /UELive2D.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stkrwork/UE-Live2D/HEAD/UELive2D.uplugin --------------------------------------------------------------------------------