diff --git a/Projects/Android/Dora/app/CMakeLists.txt b/Projects/Android/Dora/app/CMakeLists.txt index a31a5a9ca..2ef38d570 100644 --- a/Projects/Android/Dora/app/CMakeLists.txt +++ b/Projects/Android/Dora/app/CMakeLists.txt @@ -196,12 +196,14 @@ add_library(main SHARED src/main/cpp/3rdParty/spine/Log.cpp src/main/cpp/3rdParty/spine/VertexAttachment.cpp src/main/cpp/3rdParty/spine/TextureLoader.cpp + src/main/cpp/3rdParty/spine/PhysicsConstraintData.cpp src/main/cpp/3rdParty/spine/SkeletonData.cpp src/main/cpp/3rdParty/spine/TransformConstraintTimeline.cpp src/main/cpp/3rdParty/spine/ConstraintData.cpp src/main/cpp/3rdParty/spine/IkConstraint.cpp src/main/cpp/3rdParty/spine/CurveTimeline.cpp src/main/cpp/3rdParty/spine/AnimationStateData.cpp + src/main/cpp/3rdParty/spine/InheritTimeline.cpp src/main/cpp/3rdParty/spine/BoundingBoxAttachment.cpp src/main/cpp/3rdParty/spine/PathAttachment.cpp src/main/cpp/3rdParty/spine/MeshAttachment.cpp @@ -209,6 +211,7 @@ add_library(main SHARED src/main/cpp/3rdParty/spine/Skin.cpp src/main/cpp/3rdParty/spine/RTTI.cpp src/main/cpp/3rdParty/spine/MathUtil.cpp + src/main/cpp/3rdParty/spine/SequenceTimeline.cpp src/main/cpp/3rdParty/spine/IkConstraintData.cpp src/main/cpp/3rdParty/spine/Atlas.cpp src/main/cpp/3rdParty/spine/ClippingAttachment.cpp @@ -216,14 +219,14 @@ add_library(main SHARED src/main/cpp/3rdParty/spine/Timeline.cpp src/main/cpp/3rdParty/spine/SkeletonBinary.cpp src/main/cpp/3rdParty/spine/ScaleTimeline.cpp - src/main/cpp/3rdParty/spine/Sequence.cpp - src/main/cpp/3rdParty/spine/SequenceTimeline.cpp src/main/cpp/3rdParty/spine/LinkedMesh.cpp src/main/cpp/3rdParty/spine/PointAttachment.cpp + src/main/cpp/3rdParty/spine/Sequence.cpp src/main/cpp/3rdParty/spine/RegionAttachment.cpp src/main/cpp/3rdParty/spine/DeformTimeline.cpp src/main/cpp/3rdParty/spine/Animation.cpp src/main/cpp/3rdParty/spine/AttachmentLoader.cpp + src/main/cpp/3rdParty/spine/PhysicsConstraint.cpp src/main/cpp/3rdParty/spine/DrawOrderTimeline.cpp src/main/cpp/3rdParty/spine/AttachmentTimeline.cpp src/main/cpp/3rdParty/spine/EventData.cpp @@ -241,6 +244,7 @@ add_library(main SHARED src/main/cpp/3rdParty/spine/RotateTimeline.cpp src/main/cpp/3rdParty/spine/PathConstraintMixTimeline.cpp src/main/cpp/3rdParty/spine/Triangulator.cpp + src/main/cpp/3rdParty/spine/PhysicsConstraintTimeline.cpp src/main/cpp/3rdParty/spine/Json.cpp src/main/cpp/3rdParty/spine/SkeletonBounds.cpp src/main/cpp/3rdParty/spine/SlotData.cpp diff --git a/Projects/Linux/CMakeLists.txt b/Projects/Linux/CMakeLists.txt index a7f588dcb..25cfed8ee 100644 --- a/Projects/Linux/CMakeLists.txt +++ b/Projects/Linux/CMakeLists.txt @@ -188,12 +188,14 @@ add_executable(dora-ssr ../../Source/3rdParty/spine/Log.cpp ../../Source/3rdParty/spine/VertexAttachment.cpp ../../Source/3rdParty/spine/TextureLoader.cpp + ../../Source/3rdParty/spine/PhysicsConstraintData.cpp ../../Source/3rdParty/spine/SkeletonData.cpp ../../Source/3rdParty/spine/TransformConstraintTimeline.cpp ../../Source/3rdParty/spine/ConstraintData.cpp ../../Source/3rdParty/spine/IkConstraint.cpp ../../Source/3rdParty/spine/CurveTimeline.cpp ../../Source/3rdParty/spine/AnimationStateData.cpp + ../../Source/3rdParty/spine/InheritTimeline.cpp ../../Source/3rdParty/spine/BoundingBoxAttachment.cpp ../../Source/3rdParty/spine/PathAttachment.cpp ../../Source/3rdParty/spine/MeshAttachment.cpp @@ -201,6 +203,7 @@ add_executable(dora-ssr ../../Source/3rdParty/spine/Skin.cpp ../../Source/3rdParty/spine/RTTI.cpp ../../Source/3rdParty/spine/MathUtil.cpp + ../../Source/3rdParty/spine/SequenceTimeline.cpp ../../Source/3rdParty/spine/IkConstraintData.cpp ../../Source/3rdParty/spine/Atlas.cpp ../../Source/3rdParty/spine/ClippingAttachment.cpp @@ -208,14 +211,14 @@ add_executable(dora-ssr ../../Source/3rdParty/spine/Timeline.cpp ../../Source/3rdParty/spine/SkeletonBinary.cpp ../../Source/3rdParty/spine/ScaleTimeline.cpp - ../../Source/3rdParty/spine/Sequence.cpp - ../../Source/3rdParty/spine/SequenceTimeline.cpp ../../Source/3rdParty/spine/LinkedMesh.cpp ../../Source/3rdParty/spine/PointAttachment.cpp + ../../Source/3rdParty/spine/Sequence.cpp ../../Source/3rdParty/spine/RegionAttachment.cpp ../../Source/3rdParty/spine/DeformTimeline.cpp ../../Source/3rdParty/spine/Animation.cpp ../../Source/3rdParty/spine/AttachmentLoader.cpp + ../../Source/3rdParty/spine/PhysicsConstraint.cpp ../../Source/3rdParty/spine/DrawOrderTimeline.cpp ../../Source/3rdParty/spine/AttachmentTimeline.cpp ../../Source/3rdParty/spine/EventData.cpp @@ -233,6 +236,7 @@ add_executable(dora-ssr ../../Source/3rdParty/spine/RotateTimeline.cpp ../../Source/3rdParty/spine/PathConstraintMixTimeline.cpp ../../Source/3rdParty/spine/Triangulator.cpp + ../../Source/3rdParty/spine/PhysicsConstraintTimeline.cpp ../../Source/3rdParty/spine/Json.cpp ../../Source/3rdParty/spine/SkeletonBounds.cpp ../../Source/3rdParty/spine/SlotData.cpp diff --git a/Projects/Windows/Dora/Dora.vcxproj b/Projects/Windows/Dora/Dora.vcxproj index d03bc0850..0e1b06196 100644 --- a/Projects/Windows/Dora/Dora.vcxproj +++ b/Projects/Windows/Dora/Dora.vcxproj @@ -1134,52 +1134,52 @@ NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing NotUsing @@ -1229,6 +1229,10 @@ NotUsing NotUsing + + NotUsing + NotUsing + NotUsing NotUsing @@ -1273,6 +1277,18 @@ NotUsing NotUsing + + NotUsing + NotUsing + + + NotUsing + NotUsing + + + NotUsing + NotUsing + NotUsing NotUsing @@ -1294,12 +1310,12 @@ NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing NotUsing @@ -1322,64 +1338,64 @@ NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing - NotUsing NotUsing + NotUsing NotUsing @@ -2256,6 +2272,8 @@ + + @@ -2269,6 +2287,10 @@ + + + + @@ -2300,7 +2322,6 @@ - diff --git a/Projects/Windows/Dora/Dora.vcxproj.filters b/Projects/Windows/Dora/Dora.vcxproj.filters index ec3295262..accc30d28 100644 --- a/Projects/Windows/Dora/Dora.vcxproj.filters +++ b/Projects/Windows/Dora/Dora.vcxproj.filters @@ -786,186 +786,6 @@ Node - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - Lua @@ -1290,12 +1110,6 @@ Wasm - - 3rdParty\spine - - - 3rdParty\spine - Cache @@ -1878,76 +1692,274 @@ Node - - - - 3rdParty\silly - - - Basic - - - Basic - - - Basic - - - Basic - - - Basic - - - Common - - - Common - - - Common - - - Common - - - Common - - - Const - - - Event - - - Event - - - Event - - - Event - - - Lua - - - Lua - - - Lua - - - Basic - - - Common - - - Common - - - Lua\ToLua + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + 3rdParty\spine + + + + + 3rdParty\silly + + + Basic + + + Basic + + + Basic + + + Basic + + + Basic + + + Common + + + Common + + + Common + + + Common + + + Common + + + Const + + + Event + + + Event + + + Event + + + Event + + + Lua + + + Lua + + + Lua + + + Basic + + + Common + + + Common + + + Lua\ToLua Lua\ToLua @@ -2430,247 +2442,7 @@ Cache - Node - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine - - - 3rdParty\spine + Node Basic @@ -2999,1164 +2771,1419 @@ 3rdParty\wasm3\extra - - Wasm + + Wasm + + + Cache + + + Test + + + GUI + + + 3rdParty\soloud + + + Http + + + Lua\Xml + + + Lua\Yarn + + + 3rdParty\playrho\d2\part + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 + + + 3rdParty\playrho\d2 - - 3rdParty\spine + + 3rdParty\playrho\d2 - - 3rdParty\spine + + 3rdParty\playrho\d2 - - 3rdParty\spine + + 3rdParty\playrho\d2 - - 3rdParty\spine + + 3rdParty\playrho\d2 - - Cache + + 3rdParty\playrho\d2 - - Test + + 3rdParty\playrho\d2 - - GUI + + 3rdParty\playrho\d2 - - 3rdParty\soloud + + 3rdParty\playrho\d2 - - Http + + 3rdParty\playrho\d2 - - Lua\Xml + + 3rdParty\playrho\d2 - - Lua\Yarn + + 3rdParty\playrho\d2 - - 3rdParty\playrho\d2\part + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\d2 - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\detail - - 3rdParty\playrho + + 3rdParty\playrho\pmr - - 3rdParty\playrho + + 3rdParty\playrho\pmr - - 3rdParty\playrho + + 3rdParty\playrho\pmr - - 3rdParty\playrho + + 3rdParty\playrho\pmr - - 3rdParty\playrho + + Input - - 3rdParty\playrho\d2 + + Lua\Xml - - 3rdParty\playrho\d2 + + Lua\Xml - + + 3rdParty\playrho\d2 - + 3rdParty\playrho\d2 - - 3rdParty\playrho\d2 + + 3rdParty\playrho - - 3rdParty\playrho\d2 + + 3rdParty\playrho - - 3rdParty\playrho\d2 + + 3rdParty\playrho - - 3rdParty\playrho\d2 + + 3rdParty\playrho - - 3rdParty\playrho\d2 + + 3rdParty\playrho - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\zlib - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\algorithm - - 3rdParty\playrho\d2 + + 3rdParty\yoga\config - - 3rdParty\playrho\d2 + + 3rdParty\yoga\debug - - 3rdParty\playrho\d2 + + 3rdParty\yoga\debug - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\enums - - 3rdParty\playrho\d2 + + 3rdParty\yoga\event - - 3rdParty\playrho\d2 + + 3rdParty\yoga\style - - 3rdParty\playrho\d2 + + 3rdParty\yoga\style - - 3rdParty\playrho\d2 + + 3rdParty\yoga\style - - 3rdParty\playrho\d2 + + 3rdParty\yoga\style - - 3rdParty\playrho\detail + + 3rdParty\yoga\style - - 3rdParty\playrho\detail + + 3rdParty\yoga\numeric - - 3rdParty\playrho\detail + + 3rdParty\yoga\numeric - - 3rdParty\playrho\detail + + 3rdParty\yoga\node - - 3rdParty\playrho\detail + + 3rdParty\yoga\node - - 3rdParty\playrho\detail + + 3rdParty\yoga\node - - 3rdParty\playrho\detail + + Node - - 3rdParty\playrho\detail + + 3rdParty\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\detail + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\pmr + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\pmr + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\pmr + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\pmr + + 3rdParty\Effekseer\Effekseer - - Input + + 3rdParty\Effekseer\Effekseer - - Lua\Xml + + 3rdParty\Effekseer\Effekseer - - Lua\Xml + + 3rdParty\Effekseer\Effekseer - - - 3rdParty\playrho\d2 + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho\d2 + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho + + 3rdParty\Effekseer\Effekseer - - 3rdParty\playrho + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\zlib + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Backend - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\ForceField - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Geometry - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\IO - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Material - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Material - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Material - - 3rdParty\yoga\algorithm + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\config + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\debug + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\debug + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Model - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network\data - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Network\data - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Noise - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Noise - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\enums + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\event + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\style + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\style + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\style + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\style + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\style + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\numeric + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\numeric + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\node + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\node + + 3rdParty\Effekseer\Effekseer\Parameter - - 3rdParty\yoga\node + + 3rdParty\Effekseer\Effekseer\Parameter - - Node + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Renderer - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\SIMD - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Sound - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\Utils - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\VectorField - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\Effekseer\VectorField - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Backend + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\ForceField + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Geometry + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\IO + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Material + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Material + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Material + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\EffekseerRendererCommon - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\EffekseerRendererCommon\Shader - - 3rdParty\Effekseer\Effekseer\Model + + 3rdParty\Effekseer\3rdParty\stb_effekseer - - 3rdParty\Effekseer\Effekseer\Network + + Node - - 3rdParty\Effekseer\Effekseer\Network + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network\data + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Network\data + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Noise + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Noise + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Parameter + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Renderer + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\SIMD + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Sound + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\Utils + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\VectorField + + 3rdParty\spine - - 3rdParty\Effekseer\Effekseer\VectorField + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon + + 3rdParty\spine - - 3rdParty\Effekseer\EffekseerRendererCommon\Shader + + 3rdParty\spine - - 3rdParty\Effekseer\3rdParty\stb_effekseer + + 3rdParty\spine - - Node + + 3rdParty\spine diff --git a/Projects/iOS/Dora.xcodeproj/project.pbxproj b/Projects/iOS/Dora.xcodeproj/project.pbxproj index 2c3dea152..5d51d320a 100644 --- a/Projects/iOS/Dora.xcodeproj/project.pbxproj +++ b/Projects/iOS/Dora.xcodeproj/project.pbxproj @@ -302,6 +302,138 @@ 3C41D61021490CFB003FDDFE /* nanovg_bgfx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C41D60E21490CFB003FDDFE /* nanovg_bgfx.cpp */; }; 3C47CF1428A38C910011F3E1 /* Cache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C47CF1228A38C910011F3E1 /* Cache.cpp */; }; 3C47CF1528A38C910011F3E1 /* Cache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C47CF1228A38C910011F3E1 /* Cache.cpp */; }; + 3C4B3D592C06DDE000D778FC /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC02C06DDD800D778FC /* Log.cpp */; }; + 3C4B3D5A2C06DDE000D778FC /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC02C06DDD800D778FC /* Log.cpp */; }; + 3C4B3D5B2C06DDE000D778FC /* Slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC22C06DDD800D778FC /* Slot.cpp */; }; + 3C4B3D5C2C06DDE000D778FC /* Slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC22C06DDD800D778FC /* Slot.cpp */; }; + 3C4B3D5D2C06DDE000D778FC /* AttachmentTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC52C06DDD800D778FC /* AttachmentTimeline.cpp */; }; + 3C4B3D5E2C06DDE000D778FC /* AttachmentTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC52C06DDD800D778FC /* AttachmentTimeline.cpp */; }; + 3C4B3D5F2C06DDE000D778FC /* SkeletonClipping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC72C06DDD800D778FC /* SkeletonClipping.cpp */; }; + 3C4B3D602C06DDE000D778FC /* SkeletonClipping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC72C06DDD800D778FC /* SkeletonClipping.cpp */; }; + 3C4B3D612C06DDE000D778FC /* DeformTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC82C06DDD900D778FC /* DeformTimeline.cpp */; }; + 3C4B3D622C06DDE000D778FC /* DeformTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC82C06DDD900D778FC /* DeformTimeline.cpp */; }; + 3C4B3D632C06DDE000D778FC /* IkConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC92C06DDD900D778FC /* IkConstraint.cpp */; }; + 3C4B3D642C06DDE000D778FC /* IkConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CC92C06DDD900D778FC /* IkConstraint.cpp */; }; + 3C4B3D652C06DDE000D778FC /* RTTI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCC2C06DDD900D778FC /* RTTI.cpp */; }; + 3C4B3D662C06DDE000D778FC /* RTTI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCC2C06DDD900D778FC /* RTTI.cpp */; }; + 3C4B3D672C06DDE000D778FC /* Atlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCD2C06DDD900D778FC /* Atlas.cpp */; }; + 3C4B3D682C06DDE000D778FC /* Atlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCD2C06DDD900D778FC /* Atlas.cpp */; }; + 3C4B3D692C06DDE000D778FC /* ScaleTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCE2C06DDD900D778FC /* ScaleTimeline.cpp */; }; + 3C4B3D6A2C06DDE000D778FC /* ScaleTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCE2C06DDD900D778FC /* ScaleTimeline.cpp */; }; + 3C4B3D6B2C06DDE000D778FC /* ShearTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCF2C06DDD900D778FC /* ShearTimeline.cpp */; }; + 3C4B3D6C2C06DDE000D778FC /* ShearTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CCF2C06DDD900D778FC /* ShearTimeline.cpp */; }; + 3C4B3D6D2C06DDE000D778FC /* Skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD12C06DDD900D778FC /* Skin.cpp */; }; + 3C4B3D6E2C06DDE000D778FC /* Skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD12C06DDD900D778FC /* Skin.cpp */; }; + 3C4B3D6F2C06DDE000D778FC /* TransformConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD52C06DDD900D778FC /* TransformConstraintData.cpp */; }; + 3C4B3D702C06DDE000D778FC /* TransformConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD52C06DDD900D778FC /* TransformConstraintData.cpp */; }; + 3C4B3D712C06DDE000D778FC /* TranslateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD62C06DDD900D778FC /* TranslateTimeline.cpp */; }; + 3C4B3D722C06DDE000D778FC /* TranslateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD62C06DDD900D778FC /* TranslateTimeline.cpp */; }; + 3C4B3D732C06DDE000D778FC /* EventData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD72C06DDD900D778FC /* EventData.cpp */; }; + 3C4B3D742C06DDE000D778FC /* EventData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD72C06DDD900D778FC /* EventData.cpp */; }; + 3C4B3D752C06DDE000D778FC /* Skeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD82C06DDD900D778FC /* Skeleton.cpp */; }; + 3C4B3D762C06DDE000D778FC /* Skeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD82C06DDD900D778FC /* Skeleton.cpp */; }; + 3C4B3D772C06DDE000D778FC /* TransformConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD92C06DDD900D778FC /* TransformConstraint.cpp */; }; + 3C4B3D782C06DDE000D778FC /* TransformConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CD92C06DDD900D778FC /* TransformConstraint.cpp */; }; + 3C4B3D792C06DDE000D778FC /* IkConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDA2C06DDD900D778FC /* IkConstraintTimeline.cpp */; }; + 3C4B3D7A2C06DDE000D778FC /* IkConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDA2C06DDD900D778FC /* IkConstraintTimeline.cpp */; }; + 3C4B3D7B2C06DDE000D778FC /* Bone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDB2C06DDD900D778FC /* Bone.cpp */; }; + 3C4B3D7C2C06DDE000D778FC /* Bone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDB2C06DDD900D778FC /* Bone.cpp */; }; + 3C4B3D7D2C06DDE000D778FC /* PathAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDD2C06DDDA00D778FC /* PathAttachment.cpp */; }; + 3C4B3D7E2C06DDE000D778FC /* PathAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CDD2C06DDDA00D778FC /* PathAttachment.cpp */; }; + 3C4B3D7F2C06DDE000D778FC /* EventTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE02C06DDDA00D778FC /* EventTimeline.cpp */; }; + 3C4B3D802C06DDE000D778FC /* EventTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE02C06DDDA00D778FC /* EventTimeline.cpp */; }; + 3C4B3D812C06DDE000D778FC /* SlotData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE12C06DDDA00D778FC /* SlotData.cpp */; }; + 3C4B3D822C06DDE000D778FC /* SlotData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE12C06DDDA00D778FC /* SlotData.cpp */; }; + 3C4B3D832C06DDE000D778FC /* CurveTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE32C06DDDA00D778FC /* CurveTimeline.cpp */; }; + 3C4B3D842C06DDE000D778FC /* CurveTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE32C06DDDA00D778FC /* CurveTimeline.cpp */; }; + 3C4B3D852C06DDE000D778FC /* AtlasAttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE52C06DDDA00D778FC /* AtlasAttachmentLoader.cpp */; }; + 3C4B3D862C06DDE000D778FC /* AtlasAttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE52C06DDDA00D778FC /* AtlasAttachmentLoader.cpp */; }; + 3C4B3D872C06DDE000D778FC /* AnimationStateData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE62C06DDDA00D778FC /* AnimationStateData.cpp */; }; + 3C4B3D882C06DDE000D778FC /* AnimationStateData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE62C06DDDA00D778FC /* AnimationStateData.cpp */; }; + 3C4B3D892C06DDE000D778FC /* Sequence.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE72C06DDDA00D778FC /* Sequence.cpp */; }; + 3C4B3D8A2C06DDE000D778FC /* Sequence.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE72C06DDDA00D778FC /* Sequence.cpp */; }; + 3C4B3D8B2C06DDE000D778FC /* TextureLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE82C06DDDA00D778FC /* TextureLoader.cpp */; }; + 3C4B3D8C2C06DDE000D778FC /* TextureLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CE82C06DDDA00D778FC /* TextureLoader.cpp */; }; + 3C4B3D8D2C06DDE000D778FC /* Animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEB2C06DDDA00D778FC /* Animation.cpp */; }; + 3C4B3D8E2C06DDE000D778FC /* Animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEB2C06DDDA00D778FC /* Animation.cpp */; }; + 3C4B3D8F2C06DDE000D778FC /* Json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEC2C06DDDA00D778FC /* Json.cpp */; }; + 3C4B3D902C06DDE000D778FC /* Json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEC2C06DDDA00D778FC /* Json.cpp */; }; + 3C4B3D912C06DDE000D778FC /* ColorTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEE2C06DDDA00D778FC /* ColorTimeline.cpp */; }; + 3C4B3D922C06DDE000D778FC /* ColorTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CEE2C06DDDA00D778FC /* ColorTimeline.cpp */; }; + 3C4B3D932C06DDE000D778FC /* SkeletonBinary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF02C06DDDB00D778FC /* SkeletonBinary.cpp */; }; + 3C4B3D942C06DDE000D778FC /* SkeletonBinary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF02C06DDDB00D778FC /* SkeletonBinary.cpp */; }; + 3C4B3D952C06DDE000D778FC /* SequenceTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF12C06DDDB00D778FC /* SequenceTimeline.cpp */; }; + 3C4B3D962C06DDE000D778FC /* SequenceTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF12C06DDDB00D778FC /* SequenceTimeline.cpp */; }; + 3C4B3D972C06DDE000D778FC /* SkeletonBounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF22C06DDDB00D778FC /* SkeletonBounds.cpp */; }; + 3C4B3D982C06DDE000D778FC /* SkeletonBounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF22C06DDDB00D778FC /* SkeletonBounds.cpp */; }; + 3C4B3D992C06DDE000D778FC /* RotateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF52C06DDDB00D778FC /* RotateTimeline.cpp */; }; + 3C4B3D9A2C06DDE000D778FC /* RotateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF52C06DDDB00D778FC /* RotateTimeline.cpp */; }; + 3C4B3D9B2C06DDE000D778FC /* Event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF92C06DDDB00D778FC /* Event.cpp */; }; + 3C4B3D9C2C06DDE000D778FC /* Event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CF92C06DDDB00D778FC /* Event.cpp */; }; + 3C4B3D9D2C06DDE000D778FC /* PhysicsConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CFC2C06DDDB00D778FC /* PhysicsConstraint.cpp */; }; + 3C4B3D9E2C06DDE000D778FC /* PhysicsConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3CFC2C06DDDB00D778FC /* PhysicsConstraint.cpp */; }; + 3C4B3D9F2C06DDE000D778FC /* DrawOrderTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D012C06DDDB00D778FC /* DrawOrderTimeline.cpp */; }; + 3C4B3DA02C06DDE000D778FC /* DrawOrderTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D012C06DDDB00D778FC /* DrawOrderTimeline.cpp */; }; + 3C4B3DA12C06DDE000D778FC /* PointAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D022C06DDDB00D778FC /* PointAttachment.cpp */; }; + 3C4B3DA22C06DDE000D778FC /* PointAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D022C06DDDB00D778FC /* PointAttachment.cpp */; }; + 3C4B3DA32C06DDE000D778FC /* AttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D032C06DDDB00D778FC /* AttachmentLoader.cpp */; }; + 3C4B3DA42C06DDE000D778FC /* AttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D032C06DDDB00D778FC /* AttachmentLoader.cpp */; }; + 3C4B3DA72C06DDE000D778FC /* PathConstraintSpacingTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D0A2C06DDDC00D778FC /* PathConstraintSpacingTimeline.cpp */; }; + 3C4B3DA82C06DDE000D778FC /* PathConstraintSpacingTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D0A2C06DDDC00D778FC /* PathConstraintSpacingTimeline.cpp */; }; + 3C4B3DA92C06DDE000D778FC /* Timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D102C06DDDC00D778FC /* Timeline.cpp */; }; + 3C4B3DAA2C06DDE000D778FC /* Timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D102C06DDDC00D778FC /* Timeline.cpp */; }; + 3C4B3DAB2C06DDE000D778FC /* PathConstraintMixTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D112C06DDDC00D778FC /* PathConstraintMixTimeline.cpp */; }; + 3C4B3DAC2C06DDE000D778FC /* PathConstraintMixTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D112C06DDDC00D778FC /* PathConstraintMixTimeline.cpp */; }; + 3C4B3DAD2C06DDE000D778FC /* SpineObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D122C06DDDC00D778FC /* SpineObject.cpp */; }; + 3C4B3DAE2C06DDE000D778FC /* SpineObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D122C06DDDC00D778FC /* SpineObject.cpp */; }; + 3C4B3DAF2C06DDE000D778FC /* Extension.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D152C06DDDC00D778FC /* Extension.cpp */; }; + 3C4B3DB02C06DDE000D778FC /* Extension.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D152C06DDDC00D778FC /* Extension.cpp */; }; + 3C4B3DB12C06DDE000D778FC /* TransformConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D182C06DDDD00D778FC /* TransformConstraintTimeline.cpp */; }; + 3C4B3DB22C06DDE000D778FC /* TransformConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D182C06DDDD00D778FC /* TransformConstraintTimeline.cpp */; }; + 3C4B3DB32C06DDE000D778FC /* Triangulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D192C06DDDD00D778FC /* Triangulator.cpp */; }; + 3C4B3DB42C06DDE000D778FC /* Triangulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D192C06DDDD00D778FC /* Triangulator.cpp */; }; + 3C4B3DB52C06DDE000D778FC /* BoneData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D1D2C06DDDD00D778FC /* BoneData.cpp */; }; + 3C4B3DB62C06DDE000D778FC /* BoneData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D1D2C06DDDD00D778FC /* BoneData.cpp */; }; + 3C4B3DB72C06DDE000D778FC /* BoundingBoxAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D232C06DDDD00D778FC /* BoundingBoxAttachment.cpp */; }; + 3C4B3DB82C06DDE000D778FC /* BoundingBoxAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D232C06DDDD00D778FC /* BoundingBoxAttachment.cpp */; }; + 3C4B3DB92C06DDE000D778FC /* PathConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D242C06DDDD00D778FC /* PathConstraint.cpp */; }; + 3C4B3DBA2C06DDE000D778FC /* PathConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D242C06DDDD00D778FC /* PathConstraint.cpp */; }; + 3C4B3DBB2C06DDE000D778FC /* SkeletonJson.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D252C06DDDD00D778FC /* SkeletonJson.cpp */; }; + 3C4B3DBC2C06DDE000D778FC /* SkeletonJson.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D252C06DDDD00D778FC /* SkeletonJson.cpp */; }; + 3C4B3DBD2C06DDE000D778FC /* LinkedMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D262C06DDDD00D778FC /* LinkedMesh.cpp */; }; + 3C4B3DBE2C06DDE000D778FC /* LinkedMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D262C06DDDD00D778FC /* LinkedMesh.cpp */; }; + 3C4B3DBF2C06DDE000D778FC /* ClippingAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D282C06DDDD00D778FC /* ClippingAttachment.cpp */; }; + 3C4B3DC02C06DDE000D778FC /* ClippingAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D282C06DDDD00D778FC /* ClippingAttachment.cpp */; }; + 3C4B3DC12C06DDE000D778FC /* IkConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2A2C06DDDD00D778FC /* IkConstraintData.cpp */; }; + 3C4B3DC22C06DDE000D778FC /* IkConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2A2C06DDDD00D778FC /* IkConstraintData.cpp */; }; + 3C4B3DC32C06DDE000D778FC /* PathConstraintPositionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2C2C06DDDD00D778FC /* PathConstraintPositionTimeline.cpp */; }; + 3C4B3DC42C06DDE000D778FC /* PathConstraintPositionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2C2C06DDDD00D778FC /* PathConstraintPositionTimeline.cpp */; }; + 3C4B3DC52C06DDE000D778FC /* Attachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2D2C06DDDE00D778FC /* Attachment.cpp */; }; + 3C4B3DC62C06DDE000D778FC /* Attachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2D2C06DDDE00D778FC /* Attachment.cpp */; }; + 3C4B3DC72C06DDE000D778FC /* SkeletonData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2E2C06DDDE00D778FC /* SkeletonData.cpp */; }; + 3C4B3DC82C06DDE000D778FC /* SkeletonData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D2E2C06DDDE00D778FC /* SkeletonData.cpp */; }; + 3C4B3DC92C06DDE000D778FC /* MathUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D312C06DDDE00D778FC /* MathUtil.cpp */; }; + 3C4B3DCA2C06DDE000D778FC /* MathUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D312C06DDDE00D778FC /* MathUtil.cpp */; }; + 3C4B3DCB2C06DDE000D778FC /* VertexAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D322C06DDDE00D778FC /* VertexAttachment.cpp */; }; + 3C4B3DCC2C06DDE000D778FC /* VertexAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D322C06DDDE00D778FC /* VertexAttachment.cpp */; }; + 3C4B3DCD2C06DDE000D778FC /* PhysicsConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D332C06DDDE00D778FC /* PhysicsConstraintData.cpp */; }; + 3C4B3DCE2C06DDE000D778FC /* PhysicsConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D332C06DDDE00D778FC /* PhysicsConstraintData.cpp */; }; + 3C4B3DCF2C06DDE000D778FC /* RegionAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D352C06DDDE00D778FC /* RegionAttachment.cpp */; }; + 3C4B3DD02C06DDE000D778FC /* RegionAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D352C06DDDE00D778FC /* RegionAttachment.cpp */; }; + 3C4B3DD12C06DDE000D778FC /* AnimationState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D382C06DDDE00D778FC /* AnimationState.cpp */; }; + 3C4B3DD22C06DDE000D778FC /* AnimationState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D382C06DDDE00D778FC /* AnimationState.cpp */; }; + 3C4B3DD32C06DDE000D778FC /* Updatable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D3E2C06DDDE00D778FC /* Updatable.cpp */; }; + 3C4B3DD42C06DDE000D778FC /* Updatable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D3E2C06DDDE00D778FC /* Updatable.cpp */; }; + 3C4B3DD52C06DDE000D778FC /* PhysicsConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D462C06DDDF00D778FC /* PhysicsConstraintTimeline.cpp */; }; + 3C4B3DD62C06DDE000D778FC /* PhysicsConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D462C06DDDF00D778FC /* PhysicsConstraintTimeline.cpp */; }; + 3C4B3DD72C06DDE000D778FC /* ConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D482C06DDDF00D778FC /* ConstraintData.cpp */; }; + 3C4B3DD82C06DDE000D778FC /* ConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D482C06DDDF00D778FC /* ConstraintData.cpp */; }; + 3C4B3DD92C06DDE000D778FC /* PathConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D4C2C06DDDF00D778FC /* PathConstraintData.cpp */; }; + 3C4B3DDA2C06DDE000D778FC /* PathConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D4C2C06DDDF00D778FC /* PathConstraintData.cpp */; }; + 3C4B3DDB2C06DDE000D778FC /* MeshAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D542C06DDDF00D778FC /* MeshAttachment.cpp */; }; + 3C4B3DDC2C06DDE000D778FC /* MeshAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D542C06DDDF00D778FC /* MeshAttachment.cpp */; }; + 3C4B3DDD2C06DDE000D778FC /* InheritTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D562C06DDE000D778FC /* InheritTimeline.cpp */; }; + 3C4B3DDE2C06DDE000D778FC /* InheritTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4B3D562C06DDE000D778FC /* InheritTimeline.cpp */; }; 3C4BC6571E17F17100292200 /* Geometry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BC6551E17F17100292200 /* Geometry.cpp */; }; 3C4BC6641E17F1B500292200 /* tolua_event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BC65B1E17F1B500292200 /* tolua_event.cpp */; }; 3C4BC6651E17F1B500292200 /* tolua_fix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BC65D1E17F1B500292200 /* tolua_fix.cpp */; }; @@ -890,130 +1022,6 @@ 3CE9946B2AFB26820073A973 /* gamecontrollerdb.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3CE994692AFB26820073A973 /* gamecontrollerdb.txt */; }; 3CEDF7811E83BADB008839A3 /* ParticleCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CEDF77F1E83BADB008839A3 /* ParticleCache.cpp */; }; 3CF00E39258B475A00898F4B /* SVGCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF00E37258B475A00898F4B /* SVGCache.cpp */; }; - 3CF10F962874C81C00940268 /* PathConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F042874C81700940268 /* PathConstraint.cpp */; }; - 3CF10F972874C81C00940268 /* PathConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F042874C81700940268 /* PathConstraint.cpp */; }; - 3CF10F982874C81C00940268 /* MeshAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F052874C81700940268 /* MeshAttachment.cpp */; }; - 3CF10F992874C81C00940268 /* MeshAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F052874C81700940268 /* MeshAttachment.cpp */; }; - 3CF10F9A2874C81C00940268 /* SequenceTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F082874C81700940268 /* SequenceTimeline.cpp */; }; - 3CF10F9B2874C81C00940268 /* SequenceTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F082874C81700940268 /* SequenceTimeline.cpp */; }; - 3CF10F9C2874C81C00940268 /* ClippingAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0C2874C81800940268 /* ClippingAttachment.cpp */; }; - 3CF10F9D2874C81C00940268 /* ClippingAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0C2874C81800940268 /* ClippingAttachment.cpp */; }; - 3CF10F9E2874C81C00940268 /* TransformConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0D2874C81800940268 /* TransformConstraintTimeline.cpp */; }; - 3CF10F9F2874C81C00940268 /* TransformConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0D2874C81800940268 /* TransformConstraintTimeline.cpp */; }; - 3CF10FA02874C81C00940268 /* PathConstraintSpacingTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0E2874C81800940268 /* PathConstraintSpacingTimeline.cpp */; }; - 3CF10FA12874C81C00940268 /* PathConstraintSpacingTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F0E2874C81800940268 /* PathConstraintSpacingTimeline.cpp */; }; - 3CF10FA22874C81C00940268 /* TranslateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F102874C81800940268 /* TranslateTimeline.cpp */; }; - 3CF10FA32874C81C00940268 /* TranslateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F102874C81800940268 /* TranslateTimeline.cpp */; }; - 3CF10FA42874C81C00940268 /* Triangulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F122874C81800940268 /* Triangulator.cpp */; }; - 3CF10FA52874C81C00940268 /* Triangulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F122874C81800940268 /* Triangulator.cpp */; }; - 3CF10FA62874C81C00940268 /* RTTI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F152874C81800940268 /* RTTI.cpp */; }; - 3CF10FA72874C81C00940268 /* RTTI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F152874C81800940268 /* RTTI.cpp */; }; - 3CF10FA82874C81C00940268 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F182874C81800940268 /* Log.cpp */; }; - 3CF10FA92874C81C00940268 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F182874C81800940268 /* Log.cpp */; }; - 3CF10FAA2874C81C00940268 /* BoundingBoxAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1C2874C81800940268 /* BoundingBoxAttachment.cpp */; }; - 3CF10FAB2874C81C00940268 /* BoundingBoxAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1C2874C81800940268 /* BoundingBoxAttachment.cpp */; }; - 3CF10FAC2874C81C00940268 /* EventData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1D2874C81800940268 /* EventData.cpp */; }; - 3CF10FAD2874C81C00940268 /* EventData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1D2874C81800940268 /* EventData.cpp */; }; - 3CF10FAE2874C81C00940268 /* AttachmentTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1F2874C81800940268 /* AttachmentTimeline.cpp */; }; - 3CF10FAF2874C81C00940268 /* AttachmentTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F1F2874C81800940268 /* AttachmentTimeline.cpp */; }; - 3CF10FB02874C81C00940268 /* Updatable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F202874C81800940268 /* Updatable.cpp */; }; - 3CF10FB12874C81C00940268 /* Updatable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F202874C81800940268 /* Updatable.cpp */; }; - 3CF10FB22874C81C00940268 /* LinkedMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F212874C81800940268 /* LinkedMesh.cpp */; }; - 3CF10FB32874C81C00940268 /* LinkedMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F212874C81800940268 /* LinkedMesh.cpp */; }; - 3CF10FB42874C81C00940268 /* Sequence.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F232874C81800940268 /* Sequence.cpp */; }; - 3CF10FB52874C81C00940268 /* Sequence.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F232874C81800940268 /* Sequence.cpp */; }; - 3CF10FB62874C81C00940268 /* EventTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F242874C81800940268 /* EventTimeline.cpp */; }; - 3CF10FB72874C81C00940268 /* EventTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F242874C81800940268 /* EventTimeline.cpp */; }; - 3CF10FB82874C81C00940268 /* MathUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F292874C81900940268 /* MathUtil.cpp */; }; - 3CF10FB92874C81C00940268 /* MathUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F292874C81900940268 /* MathUtil.cpp */; }; - 3CF10FBA2874C81C00940268 /* PointAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F2B2874C81900940268 /* PointAttachment.cpp */; }; - 3CF10FBB2874C81C00940268 /* PointAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F2B2874C81900940268 /* PointAttachment.cpp */; }; - 3CF10FBC2874C81C00940268 /* AttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F302874C81900940268 /* AttachmentLoader.cpp */; }; - 3CF10FBD2874C81C00940268 /* AttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F302874C81900940268 /* AttachmentLoader.cpp */; }; - 3CF10FBE2874C81C00940268 /* SlotData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F312874C81900940268 /* SlotData.cpp */; }; - 3CF10FBF2874C81C00940268 /* SlotData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F312874C81900940268 /* SlotData.cpp */; }; - 3CF10FC02874C81C00940268 /* Skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F332874C81900940268 /* Skin.cpp */; }; - 3CF10FC12874C81C00940268 /* Skin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F332874C81900940268 /* Skin.cpp */; }; - 3CF10FC22874C81C00940268 /* Event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F352874C81900940268 /* Event.cpp */; }; - 3CF10FC32874C81C00940268 /* Event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F352874C81900940268 /* Event.cpp */; }; - 3CF10FC42874C81C00940268 /* IkConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F372874C81900940268 /* IkConstraintTimeline.cpp */; }; - 3CF10FC52874C81C00940268 /* IkConstraintTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F372874C81900940268 /* IkConstraintTimeline.cpp */; }; - 3CF10FC62874C81C00940268 /* PathConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F382874C81900940268 /* PathConstraintData.cpp */; }; - 3CF10FC72874C81C00940268 /* PathConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F382874C81900940268 /* PathConstraintData.cpp */; }; - 3CF10FC82874C81C00940268 /* RegionAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F3B2874C81900940268 /* RegionAttachment.cpp */; }; - 3CF10FC92874C81C00940268 /* RegionAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F3B2874C81900940268 /* RegionAttachment.cpp */; }; - 3CF10FCA2874C81C00940268 /* AnimationStateData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F3E2874C81900940268 /* AnimationStateData.cpp */; }; - 3CF10FCB2874C81C00940268 /* AnimationStateData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F3E2874C81900940268 /* AnimationStateData.cpp */; }; - 3CF10FCC2874C81C00940268 /* CurveTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F492874C81A00940268 /* CurveTimeline.cpp */; }; - 3CF10FCD2874C81C00940268 /* CurveTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F492874C81A00940268 /* CurveTimeline.cpp */; }; - 3CF10FCE2874C81C00940268 /* Attachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F4B2874C81A00940268 /* Attachment.cpp */; }; - 3CF10FCF2874C81C00940268 /* Attachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F4B2874C81A00940268 /* Attachment.cpp */; }; - 3CF10FD02874C81C00940268 /* Slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F542874C81A00940268 /* Slot.cpp */; }; - 3CF10FD12874C81C00940268 /* Slot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F542874C81A00940268 /* Slot.cpp */; }; - 3CF10FD22874C81C00940268 /* Atlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F582874C81A00940268 /* Atlas.cpp */; }; - 3CF10FD32874C81C00940268 /* Atlas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F582874C81A00940268 /* Atlas.cpp */; }; - 3CF10FD42874C81C00940268 /* TransformConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F592874C81A00940268 /* TransformConstraint.cpp */; }; - 3CF10FD52874C81C00940268 /* TransformConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F592874C81A00940268 /* TransformConstraint.cpp */; }; - 3CF10FD62874C81C00940268 /* Bone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F5C2874C81A00940268 /* Bone.cpp */; }; - 3CF10FD72874C81C00940268 /* Bone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F5C2874C81A00940268 /* Bone.cpp */; }; - 3CF10FD82874C81C00940268 /* ShearTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F5F2874C81A00940268 /* ShearTimeline.cpp */; }; - 3CF10FD92874C81C00940268 /* ShearTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F5F2874C81A00940268 /* ShearTimeline.cpp */; }; - 3CF10FDA2874C81C00940268 /* Animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F602874C81A00940268 /* Animation.cpp */; }; - 3CF10FDB2874C81C00940268 /* Animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F602874C81A00940268 /* Animation.cpp */; }; - 3CF10FDC2874C81C00940268 /* ConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F612874C81A00940268 /* ConstraintData.cpp */; }; - 3CF10FDD2874C81C00940268 /* ConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F612874C81A00940268 /* ConstraintData.cpp */; }; - 3CF10FDE2874C81C00940268 /* SkeletonJson.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F622874C81A00940268 /* SkeletonJson.cpp */; }; - 3CF10FDF2874C81C00940268 /* SkeletonJson.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F622874C81A00940268 /* SkeletonJson.cpp */; }; - 3CF10FE02874C81C00940268 /* VertexAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F632874C81A00940268 /* VertexAttachment.cpp */; }; - 3CF10FE12874C81C00940268 /* VertexAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F632874C81A00940268 /* VertexAttachment.cpp */; }; - 3CF10FE22874C81C00940268 /* Timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F652874C81B00940268 /* Timeline.cpp */; }; - 3CF10FE32874C81C00940268 /* Timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F652874C81B00940268 /* Timeline.cpp */; }; - 3CF10FE42874C81C00940268 /* SkeletonData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F692874C81B00940268 /* SkeletonData.cpp */; }; - 3CF10FE52874C81C00940268 /* SkeletonData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F692874C81B00940268 /* SkeletonData.cpp */; }; - 3CF10FE62874C81C00940268 /* ScaleTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6C2874C81B00940268 /* ScaleTimeline.cpp */; }; - 3CF10FE72874C81C00940268 /* ScaleTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6C2874C81B00940268 /* ScaleTimeline.cpp */; }; - 3CF10FE82874C81C00940268 /* SpineObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6D2874C81B00940268 /* SpineObject.cpp */; }; - 3CF10FE92874C81C00940268 /* SpineObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6D2874C81B00940268 /* SpineObject.cpp */; }; - 3CF10FEA2874C81C00940268 /* Extension.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6F2874C81B00940268 /* Extension.cpp */; }; - 3CF10FEB2874C81C00940268 /* Extension.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F6F2874C81B00940268 /* Extension.cpp */; }; - 3CF10FEC2874C81C00940268 /* DrawOrderTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F702874C81B00940268 /* DrawOrderTimeline.cpp */; }; - 3CF10FED2874C81C00940268 /* DrawOrderTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F702874C81B00940268 /* DrawOrderTimeline.cpp */; }; - 3CF10FEE2874C81C00940268 /* IkConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F712874C81B00940268 /* IkConstraint.cpp */; }; - 3CF10FEF2874C81C00940268 /* IkConstraint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F712874C81B00940268 /* IkConstraint.cpp */; }; - 3CF10FF02874C81C00940268 /* SkeletonClipping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F722874C81B00940268 /* SkeletonClipping.cpp */; }; - 3CF10FF12874C81C00940268 /* SkeletonClipping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F722874C81B00940268 /* SkeletonClipping.cpp */; }; - 3CF10FF22874C81C00940268 /* IkConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F732874C81B00940268 /* IkConstraintData.cpp */; }; - 3CF10FF32874C81C00940268 /* IkConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F732874C81B00940268 /* IkConstraintData.cpp */; }; - 3CF10FF42874C81C00940268 /* AtlasAttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F742874C81B00940268 /* AtlasAttachmentLoader.cpp */; }; - 3CF10FF52874C81C00940268 /* AtlasAttachmentLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F742874C81B00940268 /* AtlasAttachmentLoader.cpp */; }; - 3CF10FF62874C81C00940268 /* PathConstraintMixTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F762874C81B00940268 /* PathConstraintMixTimeline.cpp */; }; - 3CF10FF72874C81C00940268 /* PathConstraintMixTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F762874C81B00940268 /* PathConstraintMixTimeline.cpp */; }; - 3CF10FF82874C81C00940268 /* ColorTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F772874C81B00940268 /* ColorTimeline.cpp */; }; - 3CF10FF92874C81C00940268 /* ColorTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F772874C81B00940268 /* ColorTimeline.cpp */; }; - 3CF10FFA2874C81C00940268 /* Json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F782874C81B00940268 /* Json.cpp */; }; - 3CF10FFB2874C81C00940268 /* Json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F782874C81B00940268 /* Json.cpp */; }; - 3CF10FFC2874C81C00940268 /* SkeletonBinary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F7A2874C81B00940268 /* SkeletonBinary.cpp */; }; - 3CF10FFD2874C81C00940268 /* SkeletonBinary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F7A2874C81B00940268 /* SkeletonBinary.cpp */; }; - 3CF10FFE2874C81C00940268 /* RotateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F7B2874C81B00940268 /* RotateTimeline.cpp */; }; - 3CF10FFF2874C81C00940268 /* RotateTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F7B2874C81B00940268 /* RotateTimeline.cpp */; }; - 3CF110002874C81C00940268 /* Skeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F802874C81B00940268 /* Skeleton.cpp */; }; - 3CF110012874C81C00940268 /* Skeleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F802874C81B00940268 /* Skeleton.cpp */; }; - 3CF110022874C81C00940268 /* TransformConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F842874C81C00940268 /* TransformConstraintData.cpp */; }; - 3CF110032874C81C00940268 /* TransformConstraintData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F842874C81C00940268 /* TransformConstraintData.cpp */; }; - 3CF110042874C81C00940268 /* BoneData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F852874C81C00940268 /* BoneData.cpp */; }; - 3CF110052874C81C00940268 /* BoneData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F852874C81C00940268 /* BoneData.cpp */; }; - 3CF110062874C81C00940268 /* PathAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F882874C81C00940268 /* PathAttachment.cpp */; }; - 3CF110072874C81C00940268 /* PathAttachment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F882874C81C00940268 /* PathAttachment.cpp */; }; - 3CF110082874C81C00940268 /* PathConstraintPositionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8C2874C81C00940268 /* PathConstraintPositionTimeline.cpp */; }; - 3CF110092874C81C00940268 /* PathConstraintPositionTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8C2874C81C00940268 /* PathConstraintPositionTimeline.cpp */; }; - 3CF1100A2874C81C00940268 /* AnimationState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8D2874C81C00940268 /* AnimationState.cpp */; }; - 3CF1100B2874C81C00940268 /* AnimationState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8D2874C81C00940268 /* AnimationState.cpp */; }; - 3CF1100C2874C81C00940268 /* DeformTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8F2874C81C00940268 /* DeformTimeline.cpp */; }; - 3CF1100D2874C81C00940268 /* DeformTimeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F8F2874C81C00940268 /* DeformTimeline.cpp */; }; - 3CF1100E2874C81C00940268 /* SkeletonBounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F932874C81C00940268 /* SkeletonBounds.cpp */; }; - 3CF1100F2874C81C00940268 /* SkeletonBounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F932874C81C00940268 /* SkeletonBounds.cpp */; }; - 3CF110102874C81C00940268 /* TextureLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F942874C81C00940268 /* TextureLoader.cpp */; }; - 3CF110112874C81C00940268 /* TextureLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF10F942874C81C00940268 /* TextureLoader.cpp */; }; 3CFEA156285B873B002D106F /* m3_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CFEA12E285B873A002D106F /* m3_compile.c */; }; 3CFEA157285B873B002D106F /* m3_compile.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CFEA12E285B873A002D106F /* m3_compile.c */; }; 3CFEA158285B873B002D106F /* m3_code.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CFEA12F285B873A002D106F /* m3_code.c */; }; @@ -1555,6 +1563,161 @@ 3C41D60E21490CFB003FDDFE /* nanovg_bgfx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = nanovg_bgfx.cpp; path = ../../../Source/3rdParty/nanovg/nanovg_bgfx.cpp; sourceTree = ""; }; 3C47CF1228A38C910011F3E1 /* Cache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Cache.cpp; path = ../../../Source/Cache/Cache.cpp; sourceTree = ""; }; 3C47CF1328A38C910011F3E1 /* Cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Cache.h; path = ../../../Source/Cache/Cache.h; sourceTree = ""; }; + 3C4B3CBD2C06DDD800D778FC /* LinkedMesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LinkedMesh.h; path = ../../../Source/3rdParty/spine/LinkedMesh.h; sourceTree = ""; }; + 3C4B3CBE2C06DDD800D778FC /* ConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConstraintData.h; path = ../../../Source/3rdParty/spine/ConstraintData.h; sourceTree = ""; }; + 3C4B3CBF2C06DDD800D778FC /* ColorTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ColorTimeline.h; path = ../../../Source/3rdParty/spine/ColorTimeline.h; sourceTree = ""; }; + 3C4B3CC02C06DDD800D778FC /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = ../../../Source/3rdParty/spine/Log.cpp; sourceTree = ""; }; + 3C4B3CC12C06DDD800D778FC /* PointAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PointAttachment.h; path = ../../../Source/3rdParty/spine/PointAttachment.h; sourceTree = ""; }; + 3C4B3CC22C06DDD800D778FC /* Slot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Slot.cpp; path = ../../../Source/3rdParty/spine/Slot.cpp; sourceTree = ""; }; + 3C4B3CC32C06DDD800D778FC /* AttachmentTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentTimeline.h; path = ../../../Source/3rdParty/spine/AttachmentTimeline.h; sourceTree = ""; }; + 3C4B3CC42C06DDD800D778FC /* PathConstraintMixTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintMixTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintMixTimeline.h; sourceTree = ""; }; + 3C4B3CC52C06DDD800D778FC /* AttachmentTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AttachmentTimeline.cpp; path = ../../../Source/3rdParty/spine/AttachmentTimeline.cpp; sourceTree = ""; }; + 3C4B3CC62C06DDD800D778FC /* ShearTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ShearTimeline.h; path = ../../../Source/3rdParty/spine/ShearTimeline.h; sourceTree = ""; }; + 3C4B3CC72C06DDD800D778FC /* SkeletonClipping.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonClipping.cpp; path = ../../../Source/3rdParty/spine/SkeletonClipping.cpp; sourceTree = ""; }; + 3C4B3CC82C06DDD900D778FC /* DeformTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DeformTimeline.cpp; path = ../../../Source/3rdParty/spine/DeformTimeline.cpp; sourceTree = ""; }; + 3C4B3CC92C06DDD900D778FC /* IkConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraint.cpp; path = ../../../Source/3rdParty/spine/IkConstraint.cpp; sourceTree = ""; }; + 3C4B3CCA2C06DDD900D778FC /* Sequence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Sequence.h; path = ../../../Source/3rdParty/spine/Sequence.h; sourceTree = ""; }; + 3C4B3CCB2C06DDD900D778FC /* PhysicsConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhysicsConstraintData.h; path = ../../../Source/3rdParty/spine/PhysicsConstraintData.h; sourceTree = ""; }; + 3C4B3CCC2C06DDD900D778FC /* RTTI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RTTI.cpp; path = ../../../Source/3rdParty/spine/RTTI.cpp; sourceTree = ""; }; + 3C4B3CCD2C06DDD900D778FC /* Atlas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Atlas.cpp; path = ../../../Source/3rdParty/spine/Atlas.cpp; sourceTree = ""; }; + 3C4B3CCE2C06DDD900D778FC /* ScaleTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ScaleTimeline.cpp; path = ../../../Source/3rdParty/spine/ScaleTimeline.cpp; sourceTree = ""; }; + 3C4B3CCF2C06DDD900D778FC /* ShearTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ShearTimeline.cpp; path = ../../../Source/3rdParty/spine/ShearTimeline.cpp; sourceTree = ""; }; + 3C4B3CD02C06DDD900D778FC /* SkeletonBinary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonBinary.h; path = ../../../Source/3rdParty/spine/SkeletonBinary.h; sourceTree = ""; }; + 3C4B3CD12C06DDD900D778FC /* Skin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Skin.cpp; path = ../../../Source/3rdParty/spine/Skin.cpp; sourceTree = ""; }; + 3C4B3CD22C06DDD900D778FC /* RegionAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RegionAttachment.h; path = ../../../Source/3rdParty/spine/RegionAttachment.h; sourceTree = ""; }; + 3C4B3CD32C06DDD900D778FC /* TextureLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextureLoader.h; path = ../../../Source/3rdParty/spine/TextureLoader.h; sourceTree = ""; }; + 3C4B3CD42C06DDD900D778FC /* TextureRegion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextureRegion.h; path = ../../../Source/3rdParty/spine/TextureRegion.h; sourceTree = ""; }; + 3C4B3CD52C06DDD900D778FC /* TransformConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraintData.cpp; path = ../../../Source/3rdParty/spine/TransformConstraintData.cpp; sourceTree = ""; }; + 3C4B3CD62C06DDD900D778FC /* TranslateTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TranslateTimeline.cpp; path = ../../../Source/3rdParty/spine/TranslateTimeline.cpp; sourceTree = ""; }; + 3C4B3CD72C06DDD900D778FC /* EventData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventData.cpp; path = ../../../Source/3rdParty/spine/EventData.cpp; sourceTree = ""; }; + 3C4B3CD82C06DDD900D778FC /* Skeleton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Skeleton.cpp; path = ../../../Source/3rdParty/spine/Skeleton.cpp; sourceTree = ""; }; + 3C4B3CD92C06DDD900D778FC /* TransformConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraint.cpp; path = ../../../Source/3rdParty/spine/TransformConstraint.cpp; sourceTree = ""; }; + 3C4B3CDA2C06DDD900D778FC /* IkConstraintTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraintTimeline.cpp; path = ../../../Source/3rdParty/spine/IkConstraintTimeline.cpp; sourceTree = ""; }; + 3C4B3CDB2C06DDD900D778FC /* Bone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Bone.cpp; path = ../../../Source/3rdParty/spine/Bone.cpp; sourceTree = ""; }; + 3C4B3CDC2C06DDDA00D778FC /* ClippingAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ClippingAttachment.h; path = ../../../Source/3rdParty/spine/ClippingAttachment.h; sourceTree = ""; }; + 3C4B3CDD2C06DDDA00D778FC /* PathAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathAttachment.cpp; path = ../../../Source/3rdParty/spine/PathAttachment.cpp; sourceTree = ""; }; + 3C4B3CDE2C06DDDA00D778FC /* ScaleTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScaleTimeline.h; path = ../../../Source/3rdParty/spine/ScaleTimeline.h; sourceTree = ""; }; + 3C4B3CDF2C06DDDA00D778FC /* TransformConstraintTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraintTimeline.h; path = ../../../Source/3rdParty/spine/TransformConstraintTimeline.h; sourceTree = ""; }; + 3C4B3CE02C06DDDA00D778FC /* EventTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventTimeline.cpp; path = ../../../Source/3rdParty/spine/EventTimeline.cpp; sourceTree = ""; }; + 3C4B3CE12C06DDDA00D778FC /* SlotData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SlotData.cpp; path = ../../../Source/3rdParty/spine/SlotData.cpp; sourceTree = ""; }; + 3C4B3CE22C06DDDA00D778FC /* Updatable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Updatable.h; path = ../../../Source/3rdParty/spine/Updatable.h; sourceTree = ""; }; + 3C4B3CE32C06DDDA00D778FC /* CurveTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CurveTimeline.cpp; path = ../../../Source/3rdParty/spine/CurveTimeline.cpp; sourceTree = ""; }; + 3C4B3CE42C06DDDA00D778FC /* ContainerUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContainerUtil.h; path = ../../../Source/3rdParty/spine/ContainerUtil.h; sourceTree = ""; }; + 3C4B3CE52C06DDDA00D778FC /* AtlasAttachmentLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AtlasAttachmentLoader.cpp; path = ../../../Source/3rdParty/spine/AtlasAttachmentLoader.cpp; sourceTree = ""; }; + 3C4B3CE62C06DDDA00D778FC /* AnimationStateData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AnimationStateData.cpp; path = ../../../Source/3rdParty/spine/AnimationStateData.cpp; sourceTree = ""; }; + 3C4B3CE72C06DDDA00D778FC /* Sequence.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Sequence.cpp; path = ../../../Source/3rdParty/spine/Sequence.cpp; sourceTree = ""; }; + 3C4B3CE82C06DDDA00D778FC /* TextureLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TextureLoader.cpp; path = ../../../Source/3rdParty/spine/TextureLoader.cpp; sourceTree = ""; }; + 3C4B3CE92C06DDDA00D778FC /* Inherit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Inherit.h; path = ../../../Source/3rdParty/spine/Inherit.h; sourceTree = ""; }; + 3C4B3CEA2C06DDDA00D778FC /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Event.h; path = ../../../Source/3rdParty/spine/Event.h; sourceTree = ""; }; + 3C4B3CEB2C06DDDA00D778FC /* Animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Animation.cpp; path = ../../../Source/3rdParty/spine/Animation.cpp; sourceTree = ""; }; + 3C4B3CEC2C06DDDA00D778FC /* Json.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Json.cpp; path = ../../../Source/3rdParty/spine/Json.cpp; sourceTree = ""; }; + 3C4B3CED2C06DDDA00D778FC /* AnimationState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AnimationState.h; path = ../../../Source/3rdParty/spine/AnimationState.h; sourceTree = ""; }; + 3C4B3CEE2C06DDDA00D778FC /* ColorTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ColorTimeline.cpp; path = ../../../Source/3rdParty/spine/ColorTimeline.cpp; sourceTree = ""; }; + 3C4B3CEF2C06DDDB00D778FC /* BoneData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoneData.h; path = ../../../Source/3rdParty/spine/BoneData.h; sourceTree = ""; }; + 3C4B3CF02C06DDDB00D778FC /* SkeletonBinary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonBinary.cpp; path = ../../../Source/3rdParty/spine/SkeletonBinary.cpp; sourceTree = ""; }; + 3C4B3CF12C06DDDB00D778FC /* SequenceTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SequenceTimeline.cpp; path = ../../../Source/3rdParty/spine/SequenceTimeline.cpp; sourceTree = ""; }; + 3C4B3CF22C06DDDB00D778FC /* SkeletonBounds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonBounds.cpp; path = ../../../Source/3rdParty/spine/SkeletonBounds.cpp; sourceTree = ""; }; + 3C4B3CF32C06DDDB00D778FC /* Json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Json.h; path = ../../../Source/3rdParty/spine/Json.h; sourceTree = ""; }; + 3C4B3CF42C06DDDB00D778FC /* IkConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraintData.h; path = ../../../Source/3rdParty/spine/IkConstraintData.h; sourceTree = ""; }; + 3C4B3CF52C06DDDB00D778FC /* RotateTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RotateTimeline.cpp; path = ../../../Source/3rdParty/spine/RotateTimeline.cpp; sourceTree = ""; }; + 3C4B3CF62C06DDDB00D778FC /* RTTI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTTI.h; path = ../../../Source/3rdParty/spine/RTTI.h; sourceTree = ""; }; + 3C4B3CF72C06DDDB00D778FC /* SlotData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SlotData.h; path = ../../../Source/3rdParty/spine/SlotData.h; sourceTree = ""; }; + 3C4B3CF82C06DDDB00D778FC /* AttachmentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentType.h; path = ../../../Source/3rdParty/spine/AttachmentType.h; sourceTree = ""; }; + 3C4B3CF92C06DDDB00D778FC /* Event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Event.cpp; path = ../../../Source/3rdParty/spine/Event.cpp; sourceTree = ""; }; + 3C4B3CFA2C06DDDB00D778FC /* AttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentLoader.h; path = ../../../Source/3rdParty/spine/AttachmentLoader.h; sourceTree = ""; }; + 3C4B3CFB2C06DDDB00D778FC /* SkeletonData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonData.h; path = ../../../Source/3rdParty/spine/SkeletonData.h; sourceTree = ""; }; + 3C4B3CFC2C06DDDB00D778FC /* PhysicsConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PhysicsConstraint.cpp; path = ../../../Source/3rdParty/spine/PhysicsConstraint.cpp; sourceTree = ""; }; + 3C4B3CFD2C06DDDB00D778FC /* SpacingMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpacingMode.h; path = ../../../Source/3rdParty/spine/SpacingMode.h; sourceTree = ""; }; + 3C4B3CFE2C06DDDB00D778FC /* PositionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PositionMode.h; path = ../../../Source/3rdParty/spine/PositionMode.h; sourceTree = ""; }; + 3C4B3CFF2C06DDDB00D778FC /* Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Vector.h; path = ../../../Source/3rdParty/spine/Vector.h; sourceTree = ""; }; + 3C4B3D002C06DDDB00D778FC /* Log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Log.h; path = ../../../Source/3rdParty/spine/Log.h; sourceTree = ""; }; + 3C4B3D012C06DDDB00D778FC /* DrawOrderTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DrawOrderTimeline.cpp; path = ../../../Source/3rdParty/spine/DrawOrderTimeline.cpp; sourceTree = ""; }; + 3C4B3D022C06DDDB00D778FC /* PointAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PointAttachment.cpp; path = ../../../Source/3rdParty/spine/PointAttachment.cpp; sourceTree = ""; }; + 3C4B3D032C06DDDB00D778FC /* AttachmentLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AttachmentLoader.cpp; path = ../../../Source/3rdParty/spine/AttachmentLoader.cpp; sourceTree = ""; }; + 3C4B3D042C06DDDC00D778FC /* Physics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Physics.h; path = ../../../Source/3rdParty/spine/Physics.h; sourceTree = ""; }; + 3C4B3D052C06DDDC00D778FC /* CurveTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CurveTimeline.h; path = ../../../Source/3rdParty/spine/CurveTimeline.h; sourceTree = ""; }; + 3C4B3D062C06DDDC00D778FC /* TransformConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraint.h; path = ../../../Source/3rdParty/spine/TransformConstraint.h; sourceTree = ""; }; + 3C4B3D072C06DDDC00D778FC /* PhysicsConstraintTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhysicsConstraintTimeline.h; path = ../../../Source/3rdParty/spine/PhysicsConstraintTimeline.h; sourceTree = ""; }; + 3C4B3D092C06DDDC00D778FC /* Pool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Pool.h; path = ../../../Source/3rdParty/spine/Pool.h; sourceTree = ""; }; + 3C4B3D0A2C06DDDC00D778FC /* PathConstraintSpacingTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintSpacingTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintSpacingTimeline.cpp; sourceTree = ""; }; + 3C4B3D0B2C06DDDC00D778FC /* MeshAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MeshAttachment.h; path = ../../../Source/3rdParty/spine/MeshAttachment.h; sourceTree = ""; }; + 3C4B3D0C2C06DDDC00D778FC /* MixBlend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MixBlend.h; path = ../../../Source/3rdParty/spine/MixBlend.h; sourceTree = ""; }; + 3C4B3D0D2C06DDDC00D778FC /* AnimationStateData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AnimationStateData.h; path = ../../../Source/3rdParty/spine/AnimationStateData.h; sourceTree = ""; }; + 3C4B3D0E2C06DDDC00D778FC /* BoundingBoxAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoundingBoxAttachment.h; path = ../../../Source/3rdParty/spine/BoundingBoxAttachment.h; sourceTree = ""; }; + 3C4B3D0F2C06DDDC00D778FC /* RotateMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RotateMode.h; path = ../../../Source/3rdParty/spine/RotateMode.h; sourceTree = ""; }; + 3C4B3D102C06DDDC00D778FC /* Timeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Timeline.cpp; path = ../../../Source/3rdParty/spine/Timeline.cpp; sourceTree = ""; }; + 3C4B3D112C06DDDC00D778FC /* PathConstraintMixTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintMixTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintMixTimeline.cpp; sourceTree = ""; }; + 3C4B3D122C06DDDC00D778FC /* SpineObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SpineObject.cpp; path = ../../../Source/3rdParty/spine/SpineObject.cpp; sourceTree = ""; }; + 3C4B3D132C06DDDC00D778FC /* PathConstraintPositionTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintPositionTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintPositionTimeline.h; sourceTree = ""; }; + 3C4B3D142C06DDDC00D778FC /* EventTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventTimeline.h; path = ../../../Source/3rdParty/spine/EventTimeline.h; sourceTree = ""; }; + 3C4B3D152C06DDDC00D778FC /* Extension.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Extension.cpp; path = ../../../Source/3rdParty/spine/Extension.cpp; sourceTree = ""; }; + 3C4B3D162C06DDDC00D778FC /* HashMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HashMap.h; path = ../../../Source/3rdParty/spine/HashMap.h; sourceTree = ""; }; + 3C4B3D172C06DDDC00D778FC /* TransformConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraintData.h; path = ../../../Source/3rdParty/spine/TransformConstraintData.h; sourceTree = ""; }; + 3C4B3D182C06DDDD00D778FC /* TransformConstraintTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraintTimeline.cpp; path = ../../../Source/3rdParty/spine/TransformConstraintTimeline.cpp; sourceTree = ""; }; + 3C4B3D192C06DDDD00D778FC /* Triangulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Triangulator.cpp; path = ../../../Source/3rdParty/spine/Triangulator.cpp; sourceTree = ""; }; + 3C4B3D1A2C06DDDD00D778FC /* BlendMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlendMode.h; path = ../../../Source/3rdParty/spine/BlendMode.h; sourceTree = ""; }; + 3C4B3D1B2C06DDDD00D778FC /* Skeleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Skeleton.h; path = ../../../Source/3rdParty/spine/Skeleton.h; sourceTree = ""; }; + 3C4B3D1C2C06DDDD00D778FC /* DrawOrderTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DrawOrderTimeline.h; path = ../../../Source/3rdParty/spine/DrawOrderTimeline.h; sourceTree = ""; }; + 3C4B3D1D2C06DDDD00D778FC /* BoneData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoneData.cpp; path = ../../../Source/3rdParty/spine/BoneData.cpp; sourceTree = ""; }; + 3C4B3D1E2C06DDDD00D778FC /* Bone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Bone.h; path = ../../../Source/3rdParty/spine/Bone.h; sourceTree = ""; }; + 3C4B3D1F2C06DDDD00D778FC /* HasRendererObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HasRendererObject.h; path = ../../../Source/3rdParty/spine/HasRendererObject.h; sourceTree = ""; }; + 3C4B3D202C06DDDD00D778FC /* SkeletonBounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonBounds.h; path = ../../../Source/3rdParty/spine/SkeletonBounds.h; sourceTree = ""; }; + 3C4B3D212C06DDDD00D778FC /* Skin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Skin.h; path = ../../../Source/3rdParty/spine/Skin.h; sourceTree = ""; }; + 3C4B3D222C06DDDD00D778FC /* DeformTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeformTimeline.h; path = ../../../Source/3rdParty/spine/DeformTimeline.h; sourceTree = ""; }; + 3C4B3D232C06DDDD00D778FC /* BoundingBoxAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoundingBoxAttachment.cpp; path = ../../../Source/3rdParty/spine/BoundingBoxAttachment.cpp; sourceTree = ""; }; + 3C4B3D242C06DDDD00D778FC /* PathConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraint.cpp; path = ../../../Source/3rdParty/spine/PathConstraint.cpp; sourceTree = ""; }; + 3C4B3D252C06DDDD00D778FC /* SkeletonJson.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonJson.cpp; path = ../../../Source/3rdParty/spine/SkeletonJson.cpp; sourceTree = ""; }; + 3C4B3D262C06DDDD00D778FC /* LinkedMesh.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LinkedMesh.cpp; path = ../../../Source/3rdParty/spine/LinkedMesh.cpp; sourceTree = ""; }; + 3C4B3D272C06DDDD00D778FC /* RotateTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RotateTimeline.h; path = ../../../Source/3rdParty/spine/RotateTimeline.h; sourceTree = ""; }; + 3C4B3D282C06DDDD00D778FC /* ClippingAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ClippingAttachment.cpp; path = ../../../Source/3rdParty/spine/ClippingAttachment.cpp; sourceTree = ""; }; + 3C4B3D292C06DDDD00D778FC /* IkConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraint.h; path = ../../../Source/3rdParty/spine/IkConstraint.h; sourceTree = ""; }; + 3C4B3D2A2C06DDDD00D778FC /* IkConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraintData.cpp; path = ../../../Source/3rdParty/spine/IkConstraintData.cpp; sourceTree = ""; }; + 3C4B3D2B2C06DDDD00D778FC /* dll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dll.h; path = ../../../Source/3rdParty/spine/dll.h; sourceTree = ""; }; + 3C4B3D2C2C06DDDD00D778FC /* PathConstraintPositionTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintPositionTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintPositionTimeline.cpp; sourceTree = ""; }; + 3C4B3D2D2C06DDDE00D778FC /* Attachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Attachment.cpp; path = ../../../Source/3rdParty/spine/Attachment.cpp; sourceTree = ""; }; + 3C4B3D2E2C06DDDE00D778FC /* SkeletonData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonData.cpp; path = ../../../Source/3rdParty/spine/SkeletonData.cpp; sourceTree = ""; }; + 3C4B3D2F2C06DDDE00D778FC /* spine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spine.h; path = ../../../Source/3rdParty/spine/spine.h; sourceTree = ""; }; + 3C4B3D302C06DDDE00D778FC /* AtlasAttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AtlasAttachmentLoader.h; path = ../../../Source/3rdParty/spine/AtlasAttachmentLoader.h; sourceTree = ""; }; + 3C4B3D312C06DDDE00D778FC /* MathUtil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MathUtil.cpp; path = ../../../Source/3rdParty/spine/MathUtil.cpp; sourceTree = ""; }; + 3C4B3D322C06DDDE00D778FC /* VertexAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = VertexAttachment.cpp; path = ../../../Source/3rdParty/spine/VertexAttachment.cpp; sourceTree = ""; }; + 3C4B3D332C06DDDE00D778FC /* PhysicsConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PhysicsConstraintData.cpp; path = ../../../Source/3rdParty/spine/PhysicsConstraintData.cpp; sourceTree = ""; }; + 3C4B3D342C06DDDE00D778FC /* Slot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Slot.h; path = ../../../Source/3rdParty/spine/Slot.h; sourceTree = ""; }; + 3C4B3D352C06DDDE00D778FC /* RegionAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RegionAttachment.cpp; path = ../../../Source/3rdParty/spine/RegionAttachment.cpp; sourceTree = ""; }; + 3C4B3D362C06DDDE00D778FC /* Attachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Attachment.h; path = ../../../Source/3rdParty/spine/Attachment.h; sourceTree = ""; }; + 3C4B3D372C06DDDE00D778FC /* PathConstraintSpacingTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintSpacingTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintSpacingTimeline.h; sourceTree = ""; }; + 3C4B3D382C06DDDE00D778FC /* AnimationState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AnimationState.cpp; path = ../../../Source/3rdParty/spine/AnimationState.cpp; sourceTree = ""; }; + 3C4B3D392C06DDDE00D778FC /* SequenceTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SequenceTimeline.h; path = ../../../Source/3rdParty/spine/SequenceTimeline.h; sourceTree = ""; }; + 3C4B3D3A2C06DDDE00D778FC /* MixDirection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MixDirection.h; path = ../../../Source/3rdParty/spine/MixDirection.h; sourceTree = ""; }; + 3C4B3D3B2C06DDDE00D778FC /* SpineString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpineString.h; path = ../../../Source/3rdParty/spine/SpineString.h; sourceTree = ""; }; + 3C4B3D3C2C06DDDE00D778FC /* Debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = ../../../Source/3rdParty/spine/Debug.h; sourceTree = ""; }; + 3C4B3D3D2C06DDDE00D778FC /* IkConstraintTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraintTimeline.h; path = ../../../Source/3rdParty/spine/IkConstraintTimeline.h; sourceTree = ""; }; + 3C4B3D3E2C06DDDE00D778FC /* Updatable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Updatable.cpp; path = ../../../Source/3rdParty/spine/Updatable.cpp; sourceTree = ""; }; + 3C4B3D3F2C06DDDE00D778FC /* SkeletonJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonJson.h; path = ../../../Source/3rdParty/spine/SkeletonJson.h; sourceTree = ""; }; + 3C4B3D402C06DDDE00D778FC /* PathConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintData.h; path = ../../../Source/3rdParty/spine/PathConstraintData.h; sourceTree = ""; }; + 3C4B3D412C06DDDF00D778FC /* MathUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MathUtil.h; path = ../../../Source/3rdParty/spine/MathUtil.h; sourceTree = ""; }; + 3C4B3D422C06DDDF00D778FC /* PhysicsConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhysicsConstraint.h; path = ../../../Source/3rdParty/spine/PhysicsConstraint.h; sourceTree = ""; }; + 3C4B3D432C06DDDF00D778FC /* PathConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraint.h; path = ../../../Source/3rdParty/spine/PathConstraint.h; sourceTree = ""; }; + 3C4B3D442C06DDDF00D778FC /* EventData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventData.h; path = ../../../Source/3rdParty/spine/EventData.h; sourceTree = ""; }; + 3C4B3D452C06DDDF00D778FC /* TranslateTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TranslateTimeline.h; path = ../../../Source/3rdParty/spine/TranslateTimeline.h; sourceTree = ""; }; + 3C4B3D462C06DDDF00D778FC /* PhysicsConstraintTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PhysicsConstraintTimeline.cpp; path = ../../../Source/3rdParty/spine/PhysicsConstraintTimeline.cpp; sourceTree = ""; }; + 3C4B3D472C06DDDF00D778FC /* Atlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Atlas.h; path = ../../../Source/3rdParty/spine/Atlas.h; sourceTree = ""; }; + 3C4B3D482C06DDDF00D778FC /* ConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ConstraintData.cpp; path = ../../../Source/3rdParty/spine/ConstraintData.cpp; sourceTree = ""; }; + 3C4B3D492C06DDDF00D778FC /* SpineObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpineObject.h; path = ../../../Source/3rdParty/spine/SpineObject.h; sourceTree = ""; }; + 3C4B3D4A2C06DDDF00D778FC /* Timeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Timeline.h; path = ../../../Source/3rdParty/spine/Timeline.h; sourceTree = ""; }; + 3C4B3D4B2C06DDDF00D778FC /* Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Version.h; path = ../../../Source/3rdParty/spine/Version.h; sourceTree = ""; }; + 3C4B3D4C2C06DDDF00D778FC /* PathConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintData.cpp; path = ../../../Source/3rdParty/spine/PathConstraintData.cpp; sourceTree = ""; }; + 3C4B3D4D2C06DDDF00D778FC /* Vertices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Vertices.h; path = ../../../Source/3rdParty/spine/Vertices.h; sourceTree = ""; }; + 3C4B3D4E2C06DDDF00D778FC /* Triangulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Triangulator.h; path = ../../../Source/3rdParty/spine/Triangulator.h; sourceTree = ""; }; + 3C4B3D4F2C06DDDF00D778FC /* Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Extension.h; path = ../../../Source/3rdParty/spine/Extension.h; sourceTree = ""; }; + 3C4B3D502C06DDDF00D778FC /* Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Color.h; path = ../../../Source/3rdParty/spine/Color.h; sourceTree = ""; }; + 3C4B3D512C06DDDF00D778FC /* Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Animation.h; path = ../../../Source/3rdParty/spine/Animation.h; sourceTree = ""; }; + 3C4B3D522C06DDDF00D778FC /* SkeletonClipping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonClipping.h; path = ../../../Source/3rdParty/spine/SkeletonClipping.h; sourceTree = ""; }; + 3C4B3D532C06DDDF00D778FC /* InheritTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InheritTimeline.h; path = ../../../Source/3rdParty/spine/InheritTimeline.h; sourceTree = ""; }; + 3C4B3D542C06DDDF00D778FC /* MeshAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MeshAttachment.cpp; path = ../../../Source/3rdParty/spine/MeshAttachment.cpp; sourceTree = ""; }; + 3C4B3D552C06DDDF00D778FC /* VertexAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VertexAttachment.h; path = ../../../Source/3rdParty/spine/VertexAttachment.h; sourceTree = ""; }; + 3C4B3D562C06DDE000D778FC /* InheritTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = InheritTimeline.cpp; path = ../../../Source/3rdParty/spine/InheritTimeline.cpp; sourceTree = ""; }; + 3C4B3D572C06DDE000D778FC /* Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Property.h; path = ../../../Source/3rdParty/spine/Property.h; sourceTree = ""; }; + 3C4B3D582C06DDE000D778FC /* PathAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathAttachment.h; path = ../../../Source/3rdParty/spine/PathAttachment.h; sourceTree = ""; }; 3C4BC6551E17F17100292200 /* Geometry.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Geometry.cpp; path = ../../../Source/Support/Geometry.cpp; sourceTree = ""; }; 3C4BC6561E17F17100292200 /* Geometry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Geometry.h; path = ../../../Source/Support/Geometry.h; sourceTree = ""; }; 3C4BC65B1E17F1B500292200 /* tolua_event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tolua_event.cpp; path = ../../../Source/Lua/ToLua/tolua_event.cpp; sourceTree = ""; }; @@ -2186,152 +2349,6 @@ 3CEDF7801E83BADB008839A3 /* ParticleCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ParticleCache.h; path = ../../../Source/Cache/ParticleCache.h; sourceTree = ""; }; 3CF00E37258B475A00898F4B /* SVGCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SVGCache.cpp; path = ../../../Source/Cache/SVGCache.cpp; sourceTree = ""; }; 3CF00E38258B475A00898F4B /* SVGCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SVGCache.h; path = ../../../Source/Cache/SVGCache.h; sourceTree = ""; }; - 3CF10F042874C81700940268 /* PathConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraint.cpp; path = ../../../Source/3rdParty/spine/PathConstraint.cpp; sourceTree = ""; }; - 3CF10F052874C81700940268 /* MeshAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MeshAttachment.cpp; path = ../../../Source/3rdParty/spine/MeshAttachment.cpp; sourceTree = ""; }; - 3CF10F062874C81700940268 /* AnimationStateData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AnimationStateData.h; path = ../../../Source/3rdParty/spine/AnimationStateData.h; sourceTree = ""; }; - 3CF10F072874C81700940268 /* PathConstraintSpacingTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintSpacingTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintSpacingTimeline.h; sourceTree = ""; }; - 3CF10F082874C81700940268 /* SequenceTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SequenceTimeline.cpp; path = ../../../Source/3rdParty/spine/SequenceTimeline.cpp; sourceTree = ""; }; - 3CF10F092874C81800940268 /* ShearTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ShearTimeline.h; path = ../../../Source/3rdParty/spine/ShearTimeline.h; sourceTree = ""; }; - 3CF10F0A2874C81800940268 /* SkeletonJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonJson.h; path = ../../../Source/3rdParty/spine/SkeletonJson.h; sourceTree = ""; }; - 3CF10F0B2874C81800940268 /* dll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dll.h; path = ../../../Source/3rdParty/spine/dll.h; sourceTree = ""; }; - 3CF10F0C2874C81800940268 /* ClippingAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ClippingAttachment.cpp; path = ../../../Source/3rdParty/spine/ClippingAttachment.cpp; sourceTree = ""; }; - 3CF10F0D2874C81800940268 /* TransformConstraintTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraintTimeline.cpp; path = ../../../Source/3rdParty/spine/TransformConstraintTimeline.cpp; sourceTree = ""; }; - 3CF10F0E2874C81800940268 /* PathConstraintSpacingTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintSpacingTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintSpacingTimeline.cpp; sourceTree = ""; }; - 3CF10F0F2874C81800940268 /* Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Color.h; path = ../../../Source/3rdParty/spine/Color.h; sourceTree = ""; }; - 3CF10F102874C81800940268 /* TranslateTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TranslateTimeline.cpp; path = ../../../Source/3rdParty/spine/TranslateTimeline.cpp; sourceTree = ""; }; - 3CF10F112874C81800940268 /* MixDirection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MixDirection.h; path = ../../../Source/3rdParty/spine/MixDirection.h; sourceTree = ""; }; - 3CF10F122874C81800940268 /* Triangulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Triangulator.cpp; path = ../../../Source/3rdParty/spine/Triangulator.cpp; sourceTree = ""; }; - 3CF10F132874C81800940268 /* Slot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Slot.h; path = ../../../Source/3rdParty/spine/Slot.h; sourceTree = ""; }; - 3CF10F142874C81800940268 /* Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Property.h; path = ../../../Source/3rdParty/spine/Property.h; sourceTree = ""; }; - 3CF10F152874C81800940268 /* RTTI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RTTI.cpp; path = ../../../Source/3rdParty/spine/RTTI.cpp; sourceTree = ""; }; - 3CF10F162874C81800940268 /* ClippingAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ClippingAttachment.h; path = ../../../Source/3rdParty/spine/ClippingAttachment.h; sourceTree = ""; }; - 3CF10F172874C81800940268 /* SkeletonBinary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonBinary.h; path = ../../../Source/3rdParty/spine/SkeletonBinary.h; sourceTree = ""; }; - 3CF10F182874C81800940268 /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = ../../../Source/3rdParty/spine/Log.cpp; sourceTree = ""; }; - 3CF10F192874C81800940268 /* Updatable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Updatable.h; path = ../../../Source/3rdParty/spine/Updatable.h; sourceTree = ""; }; - 3CF10F1A2874C81800940268 /* Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Version.h; path = ../../../Source/3rdParty/spine/Version.h; sourceTree = ""; }; - 3CF10F1B2874C81800940268 /* AttachmentTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentTimeline.h; path = ../../../Source/3rdParty/spine/AttachmentTimeline.h; sourceTree = ""; }; - 3CF10F1C2874C81800940268 /* BoundingBoxAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoundingBoxAttachment.cpp; path = ../../../Source/3rdParty/spine/BoundingBoxAttachment.cpp; sourceTree = ""; }; - 3CF10F1D2874C81800940268 /* EventData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventData.cpp; path = ../../../Source/3rdParty/spine/EventData.cpp; sourceTree = ""; }; - 3CF10F1E2874C81800940268 /* Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Extension.h; path = ../../../Source/3rdParty/spine/Extension.h; sourceTree = ""; }; - 3CF10F1F2874C81800940268 /* AttachmentTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AttachmentTimeline.cpp; path = ../../../Source/3rdParty/spine/AttachmentTimeline.cpp; sourceTree = ""; }; - 3CF10F202874C81800940268 /* Updatable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Updatable.cpp; path = ../../../Source/3rdParty/spine/Updatable.cpp; sourceTree = ""; }; - 3CF10F212874C81800940268 /* LinkedMesh.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LinkedMesh.cpp; path = ../../../Source/3rdParty/spine/LinkedMesh.cpp; sourceTree = ""; }; - 3CF10F222874C81800940268 /* spine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spine.h; path = ../../../Source/3rdParty/spine/spine.h; sourceTree = ""; }; - 3CF10F232874C81800940268 /* Sequence.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Sequence.cpp; path = ../../../Source/3rdParty/spine/Sequence.cpp; sourceTree = ""; }; - 3CF10F242874C81800940268 /* EventTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventTimeline.cpp; path = ../../../Source/3rdParty/spine/EventTimeline.cpp; sourceTree = ""; }; - 3CF10F252874C81800940268 /* RTTI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTTI.h; path = ../../../Source/3rdParty/spine/RTTI.h; sourceTree = ""; }; - 3CF10F262874C81800940268 /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Event.h; path = ../../../Source/3rdParty/spine/Event.h; sourceTree = ""; }; - 3CF10F272874C81800940268 /* TextureLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextureLoader.h; path = ../../../Source/3rdParty/spine/TextureLoader.h; sourceTree = ""; }; - 3CF10F282874C81900940268 /* ContainerUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContainerUtil.h; path = ../../../Source/3rdParty/spine/ContainerUtil.h; sourceTree = ""; }; - 3CF10F292874C81900940268 /* MathUtil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MathUtil.cpp; path = ../../../Source/3rdParty/spine/MathUtil.cpp; sourceTree = ""; }; - 3CF10F2A2874C81900940268 /* EventTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventTimeline.h; path = ../../../Source/3rdParty/spine/EventTimeline.h; sourceTree = ""; }; - 3CF10F2B2874C81900940268 /* PointAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PointAttachment.cpp; path = ../../../Source/3rdParty/spine/PointAttachment.cpp; sourceTree = ""; }; - 3CF10F2C2874C81900940268 /* SkeletonClipping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonClipping.h; path = ../../../Source/3rdParty/spine/SkeletonClipping.h; sourceTree = ""; }; - 3CF10F2D2874C81900940268 /* Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Animation.h; path = ../../../Source/3rdParty/spine/Animation.h; sourceTree = ""; }; - 3CF10F2E2874C81900940268 /* TranslateTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TranslateTimeline.h; path = ../../../Source/3rdParty/spine/TranslateTimeline.h; sourceTree = ""; }; - 3CF10F2F2874C81900940268 /* SequenceTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SequenceTimeline.h; path = ../../../Source/3rdParty/spine/SequenceTimeline.h; sourceTree = ""; }; - 3CF10F302874C81900940268 /* AttachmentLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AttachmentLoader.cpp; path = ../../../Source/3rdParty/spine/AttachmentLoader.cpp; sourceTree = ""; }; - 3CF10F312874C81900940268 /* SlotData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SlotData.cpp; path = ../../../Source/3rdParty/spine/SlotData.cpp; sourceTree = ""; }; - 3CF10F322874C81900940268 /* ConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ConstraintData.h; path = ../../../Source/3rdParty/spine/ConstraintData.h; sourceTree = ""; }; - 3CF10F332874C81900940268 /* Skin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Skin.cpp; path = ../../../Source/3rdParty/spine/Skin.cpp; sourceTree = ""; }; - 3CF10F342874C81900940268 /* Skeleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Skeleton.h; path = ../../../Source/3rdParty/spine/Skeleton.h; sourceTree = ""; }; - 3CF10F352874C81900940268 /* Event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Event.cpp; path = ../../../Source/3rdParty/spine/Event.cpp; sourceTree = ""; }; - 3CF10F362874C81900940268 /* IkConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraint.h; path = ../../../Source/3rdParty/spine/IkConstraint.h; sourceTree = ""; }; - 3CF10F372874C81900940268 /* IkConstraintTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraintTimeline.cpp; path = ../../../Source/3rdParty/spine/IkConstraintTimeline.cpp; sourceTree = ""; }; - 3CF10F382874C81900940268 /* PathConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintData.cpp; path = ../../../Source/3rdParty/spine/PathConstraintData.cpp; sourceTree = ""; }; - 3CF10F392874C81900940268 /* RotateMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RotateMode.h; path = ../../../Source/3rdParty/spine/RotateMode.h; sourceTree = ""; }; - 3CF10F3A2874C81900940268 /* HasRendererObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HasRendererObject.h; path = ../../../Source/3rdParty/spine/HasRendererObject.h; sourceTree = ""; }; - 3CF10F3B2874C81900940268 /* RegionAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RegionAttachment.cpp; path = ../../../Source/3rdParty/spine/RegionAttachment.cpp; sourceTree = ""; }; - 3CF10F3C2874C81900940268 /* DrawOrderTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DrawOrderTimeline.h; path = ../../../Source/3rdParty/spine/DrawOrderTimeline.h; sourceTree = ""; }; - 3CF10F3D2874C81900940268 /* PathConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintData.h; path = ../../../Source/3rdParty/spine/PathConstraintData.h; sourceTree = ""; }; - 3CF10F3E2874C81900940268 /* AnimationStateData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AnimationStateData.cpp; path = ../../../Source/3rdParty/spine/AnimationStateData.cpp; sourceTree = ""; }; - 3CF10F3F2874C81900940268 /* Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Vector.h; path = ../../../Source/3rdParty/spine/Vector.h; sourceTree = ""; }; - 3CF10F402874C81900940268 /* Skin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Skin.h; path = ../../../Source/3rdParty/spine/Skin.h; sourceTree = ""; }; - 3CF10F412874C81900940268 /* SpineObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpineObject.h; path = ../../../Source/3rdParty/spine/SpineObject.h; sourceTree = ""; }; - 3CF10F422874C81900940268 /* Attachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Attachment.h; path = ../../../Source/3rdParty/spine/Attachment.h; sourceTree = ""; }; - 3CF10F432874C81900940268 /* ColorTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ColorTimeline.h; path = ../../../Source/3rdParty/spine/ColorTimeline.h; sourceTree = ""; }; - 3CF10F442874C81900940268 /* DeformTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeformTimeline.h; path = ../../../Source/3rdParty/spine/DeformTimeline.h; sourceTree = ""; }; - 3CF10F452874C81A00940268 /* Pool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Pool.h; path = ../../../Source/3rdParty/spine/Pool.h; sourceTree = ""; }; - 3CF10F462874C81A00940268 /* Log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Log.h; path = ../../../Source/3rdParty/spine/Log.h; sourceTree = ""; }; - 3CF10F472874C81A00940268 /* SkeletonData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonData.h; path = ../../../Source/3rdParty/spine/SkeletonData.h; sourceTree = ""; }; - 3CF10F482874C81A00940268 /* PositionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PositionMode.h; path = ../../../Source/3rdParty/spine/PositionMode.h; sourceTree = ""; }; - 3CF10F492874C81A00940268 /* CurveTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CurveTimeline.cpp; path = ../../../Source/3rdParty/spine/CurveTimeline.cpp; sourceTree = ""; }; - 3CF10F4A2874C81A00940268 /* CurveTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CurveTimeline.h; path = ../../../Source/3rdParty/spine/CurveTimeline.h; sourceTree = ""; }; - 3CF10F4B2874C81A00940268 /* Attachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Attachment.cpp; path = ../../../Source/3rdParty/spine/Attachment.cpp; sourceTree = ""; }; - 3CF10F4C2874C81A00940268 /* TextureRegion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextureRegion.h; path = ../../../Source/3rdParty/spine/TextureRegion.h; sourceTree = ""; }; - 3CF10F4D2874C81A00940268 /* AttachmentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentType.h; path = ../../../Source/3rdParty/spine/AttachmentType.h; sourceTree = ""; }; - 3CF10F4E2874C81A00940268 /* Debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Debug.h; path = ../../../Source/3rdParty/spine/Debug.h; sourceTree = ""; }; - 3CF10F4F2874C81A00940268 /* MixBlend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MixBlend.h; path = ../../../Source/3rdParty/spine/MixBlend.h; sourceTree = ""; }; - 3CF10F502874C81A00940268 /* BoundingBoxAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoundingBoxAttachment.h; path = ../../../Source/3rdParty/spine/BoundingBoxAttachment.h; sourceTree = ""; }; - 3CF10F512874C81A00940268 /* Sequence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Sequence.h; path = ../../../Source/3rdParty/spine/Sequence.h; sourceTree = ""; }; - 3CF10F522874C81A00940268 /* SkeletonBounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SkeletonBounds.h; path = ../../../Source/3rdParty/spine/SkeletonBounds.h; sourceTree = ""; }; - 3CF10F532874C81A00940268 /* MathUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MathUtil.h; path = ../../../Source/3rdParty/spine/MathUtil.h; sourceTree = ""; }; - 3CF10F542874C81A00940268 /* Slot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Slot.cpp; path = ../../../Source/3rdParty/spine/Slot.cpp; sourceTree = ""; }; - 3CF10F552874C81A00940268 /* VertexAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VertexAttachment.h; path = ../../../Source/3rdParty/spine/VertexAttachment.h; sourceTree = ""; }; - 3CF10F562874C81A00940268 /* SpacingMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpacingMode.h; path = ../../../Source/3rdParty/spine/SpacingMode.h; sourceTree = ""; }; - 3CF10F572874C81A00940268 /* BlendMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlendMode.h; path = ../../../Source/3rdParty/spine/BlendMode.h; sourceTree = ""; }; - 3CF10F582874C81A00940268 /* Atlas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Atlas.cpp; path = ../../../Source/3rdParty/spine/Atlas.cpp; sourceTree = ""; }; - 3CF10F592874C81A00940268 /* TransformConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraint.cpp; path = ../../../Source/3rdParty/spine/TransformConstraint.cpp; sourceTree = ""; }; - 3CF10F5A2874C81A00940268 /* TransformConstraintTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraintTimeline.h; path = ../../../Source/3rdParty/spine/TransformConstraintTimeline.h; sourceTree = ""; }; - 3CF10F5B2874C81A00940268 /* LinkedMesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LinkedMesh.h; path = ../../../Source/3rdParty/spine/LinkedMesh.h; sourceTree = ""; }; - 3CF10F5C2874C81A00940268 /* Bone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Bone.cpp; path = ../../../Source/3rdParty/spine/Bone.cpp; sourceTree = ""; }; - 3CF10F5D2874C81A00940268 /* PathConstraintMixTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintMixTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintMixTimeline.h; sourceTree = ""; }; - 3CF10F5E2874C81A00940268 /* AnimationState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AnimationState.h; path = ../../../Source/3rdParty/spine/AnimationState.h; sourceTree = ""; }; - 3CF10F5F2874C81A00940268 /* ShearTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ShearTimeline.cpp; path = ../../../Source/3rdParty/spine/ShearTimeline.cpp; sourceTree = ""; }; - 3CF10F602874C81A00940268 /* Animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Animation.cpp; path = ../../../Source/3rdParty/spine/Animation.cpp; sourceTree = ""; }; - 3CF10F612874C81A00940268 /* ConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ConstraintData.cpp; path = ../../../Source/3rdParty/spine/ConstraintData.cpp; sourceTree = ""; }; - 3CF10F622874C81A00940268 /* SkeletonJson.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonJson.cpp; path = ../../../Source/3rdParty/spine/SkeletonJson.cpp; sourceTree = ""; }; - 3CF10F632874C81A00940268 /* VertexAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = VertexAttachment.cpp; path = ../../../Source/3rdParty/spine/VertexAttachment.cpp; sourceTree = ""; }; - 3CF10F642874C81B00940268 /* Vertices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Vertices.h; path = ../../../Source/3rdParty/spine/Vertices.h; sourceTree = ""; }; - 3CF10F652874C81B00940268 /* Timeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Timeline.cpp; path = ../../../Source/3rdParty/spine/Timeline.cpp; sourceTree = ""; }; - 3CF10F662874C81B00940268 /* ScaleTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScaleTimeline.h; path = ../../../Source/3rdParty/spine/ScaleTimeline.h; sourceTree = ""; }; - 3CF10F672874C81B00940268 /* AtlasAttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AtlasAttachmentLoader.h; path = ../../../Source/3rdParty/spine/AtlasAttachmentLoader.h; sourceTree = ""; }; - 3CF10F682874C81B00940268 /* MeshAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MeshAttachment.h; path = ../../../Source/3rdParty/spine/MeshAttachment.h; sourceTree = ""; }; - 3CF10F692874C81B00940268 /* SkeletonData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonData.cpp; path = ../../../Source/3rdParty/spine/SkeletonData.cpp; sourceTree = ""; }; - 3CF10F6A2874C81B00940268 /* Bone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Bone.h; path = ../../../Source/3rdParty/spine/Bone.h; sourceTree = ""; }; - 3CF10F6B2874C81B00940268 /* PathConstraintPositionTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraintPositionTimeline.h; path = ../../../Source/3rdParty/spine/PathConstraintPositionTimeline.h; sourceTree = ""; }; - 3CF10F6C2874C81B00940268 /* ScaleTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ScaleTimeline.cpp; path = ../../../Source/3rdParty/spine/ScaleTimeline.cpp; sourceTree = ""; }; - 3CF10F6D2874C81B00940268 /* SpineObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SpineObject.cpp; path = ../../../Source/3rdParty/spine/SpineObject.cpp; sourceTree = ""; }; - 3CF10F6E2874C81B00940268 /* SpineString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpineString.h; path = ../../../Source/3rdParty/spine/SpineString.h; sourceTree = ""; }; - 3CF10F6F2874C81B00940268 /* Extension.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Extension.cpp; path = ../../../Source/3rdParty/spine/Extension.cpp; sourceTree = ""; }; - 3CF10F702874C81B00940268 /* DrawOrderTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DrawOrderTimeline.cpp; path = ../../../Source/3rdParty/spine/DrawOrderTimeline.cpp; sourceTree = ""; }; - 3CF10F712874C81B00940268 /* IkConstraint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraint.cpp; path = ../../../Source/3rdParty/spine/IkConstraint.cpp; sourceTree = ""; }; - 3CF10F722874C81B00940268 /* SkeletonClipping.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonClipping.cpp; path = ../../../Source/3rdParty/spine/SkeletonClipping.cpp; sourceTree = ""; }; - 3CF10F732874C81B00940268 /* IkConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IkConstraintData.cpp; path = ../../../Source/3rdParty/spine/IkConstraintData.cpp; sourceTree = ""; }; - 3CF10F742874C81B00940268 /* AtlasAttachmentLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AtlasAttachmentLoader.cpp; path = ../../../Source/3rdParty/spine/AtlasAttachmentLoader.cpp; sourceTree = ""; }; - 3CF10F752874C81B00940268 /* Json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Json.h; path = ../../../Source/3rdParty/spine/Json.h; sourceTree = ""; }; - 3CF10F762874C81B00940268 /* PathConstraintMixTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintMixTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintMixTimeline.cpp; sourceTree = ""; }; - 3CF10F772874C81B00940268 /* ColorTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ColorTimeline.cpp; path = ../../../Source/3rdParty/spine/ColorTimeline.cpp; sourceTree = ""; }; - 3CF10F782874C81B00940268 /* Json.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Json.cpp; path = ../../../Source/3rdParty/spine/Json.cpp; sourceTree = ""; }; - 3CF10F792874C81B00940268 /* Timeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Timeline.h; path = ../../../Source/3rdParty/spine/Timeline.h; sourceTree = ""; }; - 3CF10F7A2874C81B00940268 /* SkeletonBinary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonBinary.cpp; path = ../../../Source/3rdParty/spine/SkeletonBinary.cpp; sourceTree = ""; }; - 3CF10F7B2874C81B00940268 /* RotateTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RotateTimeline.cpp; path = ../../../Source/3rdParty/spine/RotateTimeline.cpp; sourceTree = ""; }; - 3CF10F7C2874C81B00940268 /* TransformConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraint.h; path = ../../../Source/3rdParty/spine/TransformConstraint.h; sourceTree = ""; }; - 3CF10F7D2874C81B00940268 /* SlotData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SlotData.h; path = ../../../Source/3rdParty/spine/SlotData.h; sourceTree = ""; }; - 3CF10F7E2874C81B00940268 /* TransformConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformConstraintData.h; path = ../../../Source/3rdParty/spine/TransformConstraintData.h; sourceTree = ""; }; - 3CF10F7F2874C81B00940268 /* TransformMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TransformMode.h; path = ../../../Source/3rdParty/spine/TransformMode.h; sourceTree = ""; }; - 3CF10F802874C81B00940268 /* Skeleton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Skeleton.cpp; path = ../../../Source/3rdParty/spine/Skeleton.cpp; sourceTree = ""; }; - 3CF10F812874C81B00940268 /* Triangulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Triangulator.h; path = ../../../Source/3rdParty/spine/Triangulator.h; sourceTree = ""; }; - 3CF10F822874C81C00940268 /* RegionAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RegionAttachment.h; path = ../../../Source/3rdParty/spine/RegionAttachment.h; sourceTree = ""; }; - 3CF10F832874C81C00940268 /* Atlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Atlas.h; path = ../../../Source/3rdParty/spine/Atlas.h; sourceTree = ""; }; - 3CF10F842874C81C00940268 /* TransformConstraintData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TransformConstraintData.cpp; path = ../../../Source/3rdParty/spine/TransformConstraintData.cpp; sourceTree = ""; }; - 3CF10F852874C81C00940268 /* BoneData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoneData.cpp; path = ../../../Source/3rdParty/spine/BoneData.cpp; sourceTree = ""; }; - 3CF10F862874C81C00940268 /* IkConstraintData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraintData.h; path = ../../../Source/3rdParty/spine/IkConstraintData.h; sourceTree = ""; }; - 3CF10F872874C81C00940268 /* EventData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventData.h; path = ../../../Source/3rdParty/spine/EventData.h; sourceTree = ""; }; - 3CF10F882874C81C00940268 /* PathAttachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathAttachment.cpp; path = ../../../Source/3rdParty/spine/PathAttachment.cpp; sourceTree = ""; }; - 3CF10F892874C81C00940268 /* IkConstraintTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IkConstraintTimeline.h; path = ../../../Source/3rdParty/spine/IkConstraintTimeline.h; sourceTree = ""; }; - 3CF10F8A2874C81C00940268 /* PathConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathConstraint.h; path = ../../../Source/3rdParty/spine/PathConstraint.h; sourceTree = ""; }; - 3CF10F8B2874C81C00940268 /* AttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AttachmentLoader.h; path = ../../../Source/3rdParty/spine/AttachmentLoader.h; sourceTree = ""; }; - 3CF10F8C2874C81C00940268 /* PathConstraintPositionTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PathConstraintPositionTimeline.cpp; path = ../../../Source/3rdParty/spine/PathConstraintPositionTimeline.cpp; sourceTree = ""; }; - 3CF10F8D2874C81C00940268 /* AnimationState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AnimationState.cpp; path = ../../../Source/3rdParty/spine/AnimationState.cpp; sourceTree = ""; }; - 3CF10F8E2874C81C00940268 /* PointAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PointAttachment.h; path = ../../../Source/3rdParty/spine/PointAttachment.h; sourceTree = ""; }; - 3CF10F8F2874C81C00940268 /* DeformTimeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DeformTimeline.cpp; path = ../../../Source/3rdParty/spine/DeformTimeline.cpp; sourceTree = ""; }; - 3CF10F902874C81C00940268 /* RotateTimeline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RotateTimeline.h; path = ../../../Source/3rdParty/spine/RotateTimeline.h; sourceTree = ""; }; - 3CF10F912874C81C00940268 /* BoneData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoneData.h; path = ../../../Source/3rdParty/spine/BoneData.h; sourceTree = ""; }; - 3CF10F922874C81C00940268 /* HashMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HashMap.h; path = ../../../Source/3rdParty/spine/HashMap.h; sourceTree = ""; }; - 3CF10F932874C81C00940268 /* SkeletonBounds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SkeletonBounds.cpp; path = ../../../Source/3rdParty/spine/SkeletonBounds.cpp; sourceTree = ""; }; - 3CF10F942874C81C00940268 /* TextureLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TextureLoader.cpp; path = ../../../Source/3rdParty/spine/TextureLoader.cpp; sourceTree = ""; }; - 3CF10F952874C81C00940268 /* PathAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PathAttachment.h; path = ../../../Source/3rdParty/spine/PathAttachment.h; sourceTree = ""; }; 3CF89B5724332CC900A195C7 /* concurrentqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = concurrentqueue.h; path = ../../../Source/3rdParty/Other/concurrentqueue.h; sourceTree = ""; }; 3CFEA12E285B873A002D106F /* m3_compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = m3_compile.c; path = ../../../Source/3rdParty/wasm3/m3_compile.c; sourceTree = ""; }; 3CFEA12F285B873A002D106F /* m3_code.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = m3_code.c; path = ../../../Source/3rdParty/wasm3/m3_code.c; sourceTree = ""; }; @@ -3243,152 +3260,161 @@ 3C20F2D5248F76CC00BBA830 /* spine */ = { isa = PBXGroup; children = ( - 3CF10F602874C81A00940268 /* Animation.cpp */, - 3CF10F2D2874C81900940268 /* Animation.h */, - 3CF10F8D2874C81C00940268 /* AnimationState.cpp */, - 3CF10F5E2874C81A00940268 /* AnimationState.h */, - 3CF10F3E2874C81900940268 /* AnimationStateData.cpp */, - 3CF10F062874C81700940268 /* AnimationStateData.h */, - 3CF10F582874C81A00940268 /* Atlas.cpp */, - 3CF10F832874C81C00940268 /* Atlas.h */, - 3CF10F742874C81B00940268 /* AtlasAttachmentLoader.cpp */, - 3CF10F672874C81B00940268 /* AtlasAttachmentLoader.h */, - 3CF10F4B2874C81A00940268 /* Attachment.cpp */, - 3CF10F422874C81900940268 /* Attachment.h */, - 3CF10F302874C81900940268 /* AttachmentLoader.cpp */, - 3CF10F8B2874C81C00940268 /* AttachmentLoader.h */, - 3CF10F1F2874C81800940268 /* AttachmentTimeline.cpp */, - 3CF10F1B2874C81800940268 /* AttachmentTimeline.h */, - 3CF10F4D2874C81A00940268 /* AttachmentType.h */, - 3CF10F572874C81A00940268 /* BlendMode.h */, - 3CF10F5C2874C81A00940268 /* Bone.cpp */, - 3CF10F6A2874C81B00940268 /* Bone.h */, - 3CF10F852874C81C00940268 /* BoneData.cpp */, - 3CF10F912874C81C00940268 /* BoneData.h */, - 3CF10F1C2874C81800940268 /* BoundingBoxAttachment.cpp */, - 3CF10F502874C81A00940268 /* BoundingBoxAttachment.h */, - 3CF10F0C2874C81800940268 /* ClippingAttachment.cpp */, - 3CF10F162874C81800940268 /* ClippingAttachment.h */, - 3CF10F0F2874C81800940268 /* Color.h */, - 3CF10F772874C81B00940268 /* ColorTimeline.cpp */, - 3CF10F432874C81900940268 /* ColorTimeline.h */, - 3CF10F612874C81A00940268 /* ConstraintData.cpp */, - 3CF10F322874C81900940268 /* ConstraintData.h */, - 3CF10F282874C81900940268 /* ContainerUtil.h */, - 3CF10F492874C81A00940268 /* CurveTimeline.cpp */, - 3CF10F4A2874C81A00940268 /* CurveTimeline.h */, - 3CF10F4E2874C81A00940268 /* Debug.h */, - 3CF10F8F2874C81C00940268 /* DeformTimeline.cpp */, - 3CF10F442874C81900940268 /* DeformTimeline.h */, - 3CF10F0B2874C81800940268 /* dll.h */, - 3CF10F702874C81B00940268 /* DrawOrderTimeline.cpp */, - 3CF10F3C2874C81900940268 /* DrawOrderTimeline.h */, - 3CF10F352874C81900940268 /* Event.cpp */, - 3CF10F262874C81800940268 /* Event.h */, - 3CF10F1D2874C81800940268 /* EventData.cpp */, - 3CF10F872874C81C00940268 /* EventData.h */, - 3CF10F242874C81800940268 /* EventTimeline.cpp */, - 3CF10F2A2874C81900940268 /* EventTimeline.h */, - 3CF10F6F2874C81B00940268 /* Extension.cpp */, - 3CF10F1E2874C81800940268 /* Extension.h */, - 3CF10F922874C81C00940268 /* HashMap.h */, - 3CF10F3A2874C81900940268 /* HasRendererObject.h */, - 3CF10F712874C81B00940268 /* IkConstraint.cpp */, - 3CF10F362874C81900940268 /* IkConstraint.h */, - 3CF10F732874C81B00940268 /* IkConstraintData.cpp */, - 3CF10F862874C81C00940268 /* IkConstraintData.h */, - 3CF10F372874C81900940268 /* IkConstraintTimeline.cpp */, - 3CF10F892874C81C00940268 /* IkConstraintTimeline.h */, - 3CF10F782874C81B00940268 /* Json.cpp */, - 3CF10F752874C81B00940268 /* Json.h */, - 3CF10F212874C81800940268 /* LinkedMesh.cpp */, - 3CF10F5B2874C81A00940268 /* LinkedMesh.h */, - 3CF10F182874C81800940268 /* Log.cpp */, - 3CF10F462874C81A00940268 /* Log.h */, - 3CF10F292874C81900940268 /* MathUtil.cpp */, - 3CF10F532874C81A00940268 /* MathUtil.h */, - 3CF10F052874C81700940268 /* MeshAttachment.cpp */, - 3CF10F682874C81B00940268 /* MeshAttachment.h */, - 3CF10F4F2874C81A00940268 /* MixBlend.h */, - 3CF10F112874C81800940268 /* MixDirection.h */, - 3CF10F882874C81C00940268 /* PathAttachment.cpp */, - 3CF10F952874C81C00940268 /* PathAttachment.h */, - 3CF10F042874C81700940268 /* PathConstraint.cpp */, - 3CF10F8A2874C81C00940268 /* PathConstraint.h */, - 3CF10F382874C81900940268 /* PathConstraintData.cpp */, - 3CF10F3D2874C81900940268 /* PathConstraintData.h */, - 3CF10F762874C81B00940268 /* PathConstraintMixTimeline.cpp */, - 3CF10F5D2874C81A00940268 /* PathConstraintMixTimeline.h */, - 3CF10F8C2874C81C00940268 /* PathConstraintPositionTimeline.cpp */, - 3CF10F6B2874C81B00940268 /* PathConstraintPositionTimeline.h */, - 3CF10F0E2874C81800940268 /* PathConstraintSpacingTimeline.cpp */, - 3CF10F072874C81700940268 /* PathConstraintSpacingTimeline.h */, - 3CF10F2B2874C81900940268 /* PointAttachment.cpp */, - 3CF10F8E2874C81C00940268 /* PointAttachment.h */, - 3CF10F452874C81A00940268 /* Pool.h */, - 3CF10F482874C81A00940268 /* PositionMode.h */, - 3CF10F142874C81800940268 /* Property.h */, - 3CF10F3B2874C81900940268 /* RegionAttachment.cpp */, - 3CF10F822874C81C00940268 /* RegionAttachment.h */, - 3CF10F392874C81900940268 /* RotateMode.h */, - 3CF10F7B2874C81B00940268 /* RotateTimeline.cpp */, - 3CF10F902874C81C00940268 /* RotateTimeline.h */, - 3CF10F152874C81800940268 /* RTTI.cpp */, - 3CF10F252874C81800940268 /* RTTI.h */, - 3CF10F6C2874C81B00940268 /* ScaleTimeline.cpp */, - 3CF10F662874C81B00940268 /* ScaleTimeline.h */, - 3CF10F232874C81800940268 /* Sequence.cpp */, - 3CF10F512874C81A00940268 /* Sequence.h */, - 3CF10F082874C81700940268 /* SequenceTimeline.cpp */, - 3CF10F2F2874C81900940268 /* SequenceTimeline.h */, - 3CF10F5F2874C81A00940268 /* ShearTimeline.cpp */, - 3CF10F092874C81800940268 /* ShearTimeline.h */, - 3CF10F802874C81B00940268 /* Skeleton.cpp */, - 3CF10F342874C81900940268 /* Skeleton.h */, - 3CF10F7A2874C81B00940268 /* SkeletonBinary.cpp */, - 3CF10F172874C81800940268 /* SkeletonBinary.h */, - 3CF10F932874C81C00940268 /* SkeletonBounds.cpp */, - 3CF10F522874C81A00940268 /* SkeletonBounds.h */, - 3CF10F722874C81B00940268 /* SkeletonClipping.cpp */, - 3CF10F2C2874C81900940268 /* SkeletonClipping.h */, - 3CF10F692874C81B00940268 /* SkeletonData.cpp */, - 3CF10F472874C81A00940268 /* SkeletonData.h */, - 3CF10F622874C81A00940268 /* SkeletonJson.cpp */, - 3CF10F0A2874C81800940268 /* SkeletonJson.h */, - 3CF10F332874C81900940268 /* Skin.cpp */, - 3CF10F402874C81900940268 /* Skin.h */, - 3CF10F542874C81A00940268 /* Slot.cpp */, - 3CF10F132874C81800940268 /* Slot.h */, - 3CF10F312874C81900940268 /* SlotData.cpp */, - 3CF10F7D2874C81B00940268 /* SlotData.h */, - 3CF10F562874C81A00940268 /* SpacingMode.h */, - 3CF10F222874C81800940268 /* spine.h */, - 3CF10F6D2874C81B00940268 /* SpineObject.cpp */, - 3CF10F412874C81900940268 /* SpineObject.h */, - 3CF10F6E2874C81B00940268 /* SpineString.h */, - 3CF10F942874C81C00940268 /* TextureLoader.cpp */, - 3CF10F272874C81800940268 /* TextureLoader.h */, - 3CF10F4C2874C81A00940268 /* TextureRegion.h */, - 3CF10F652874C81B00940268 /* Timeline.cpp */, - 3CF10F792874C81B00940268 /* Timeline.h */, - 3CF10F592874C81A00940268 /* TransformConstraint.cpp */, - 3CF10F7C2874C81B00940268 /* TransformConstraint.h */, - 3CF10F842874C81C00940268 /* TransformConstraintData.cpp */, - 3CF10F7E2874C81B00940268 /* TransformConstraintData.h */, - 3CF10F0D2874C81800940268 /* TransformConstraintTimeline.cpp */, - 3CF10F5A2874C81A00940268 /* TransformConstraintTimeline.h */, - 3CF10F7F2874C81B00940268 /* TransformMode.h */, - 3CF10F102874C81800940268 /* TranslateTimeline.cpp */, - 3CF10F2E2874C81900940268 /* TranslateTimeline.h */, - 3CF10F122874C81800940268 /* Triangulator.cpp */, - 3CF10F812874C81B00940268 /* Triangulator.h */, - 3CF10F202874C81800940268 /* Updatable.cpp */, - 3CF10F192874C81800940268 /* Updatable.h */, - 3CF10F3F2874C81900940268 /* Vector.h */, - 3CF10F1A2874C81800940268 /* Version.h */, - 3CF10F632874C81A00940268 /* VertexAttachment.cpp */, - 3CF10F552874C81A00940268 /* VertexAttachment.h */, - 3CF10F642874C81B00940268 /* Vertices.h */, + 3C4B3CEB2C06DDDA00D778FC /* Animation.cpp */, + 3C4B3D512C06DDDF00D778FC /* Animation.h */, + 3C4B3D382C06DDDE00D778FC /* AnimationState.cpp */, + 3C4B3CED2C06DDDA00D778FC /* AnimationState.h */, + 3C4B3CE62C06DDDA00D778FC /* AnimationStateData.cpp */, + 3C4B3D0D2C06DDDC00D778FC /* AnimationStateData.h */, + 3C4B3CCD2C06DDD900D778FC /* Atlas.cpp */, + 3C4B3D472C06DDDF00D778FC /* Atlas.h */, + 3C4B3CE52C06DDDA00D778FC /* AtlasAttachmentLoader.cpp */, + 3C4B3D302C06DDDE00D778FC /* AtlasAttachmentLoader.h */, + 3C4B3D2D2C06DDDE00D778FC /* Attachment.cpp */, + 3C4B3D362C06DDDE00D778FC /* Attachment.h */, + 3C4B3D032C06DDDB00D778FC /* AttachmentLoader.cpp */, + 3C4B3CFA2C06DDDB00D778FC /* AttachmentLoader.h */, + 3C4B3CC52C06DDD800D778FC /* AttachmentTimeline.cpp */, + 3C4B3CC32C06DDD800D778FC /* AttachmentTimeline.h */, + 3C4B3CF82C06DDDB00D778FC /* AttachmentType.h */, + 3C4B3D1A2C06DDDD00D778FC /* BlendMode.h */, + 3C4B3CDB2C06DDD900D778FC /* Bone.cpp */, + 3C4B3D1E2C06DDDD00D778FC /* Bone.h */, + 3C4B3D1D2C06DDDD00D778FC /* BoneData.cpp */, + 3C4B3CEF2C06DDDB00D778FC /* BoneData.h */, + 3C4B3D232C06DDDD00D778FC /* BoundingBoxAttachment.cpp */, + 3C4B3D0E2C06DDDC00D778FC /* BoundingBoxAttachment.h */, + 3C4B3D282C06DDDD00D778FC /* ClippingAttachment.cpp */, + 3C4B3CDC2C06DDDA00D778FC /* ClippingAttachment.h */, + 3C4B3D502C06DDDF00D778FC /* Color.h */, + 3C4B3CEE2C06DDDA00D778FC /* ColorTimeline.cpp */, + 3C4B3CBF2C06DDD800D778FC /* ColorTimeline.h */, + 3C4B3D482C06DDDF00D778FC /* ConstraintData.cpp */, + 3C4B3CBE2C06DDD800D778FC /* ConstraintData.h */, + 3C4B3CE42C06DDDA00D778FC /* ContainerUtil.h */, + 3C4B3CE32C06DDDA00D778FC /* CurveTimeline.cpp */, + 3C4B3D052C06DDDC00D778FC /* CurveTimeline.h */, + 3C4B3D3C2C06DDDE00D778FC /* Debug.h */, + 3C4B3CC82C06DDD900D778FC /* DeformTimeline.cpp */, + 3C4B3D222C06DDDD00D778FC /* DeformTimeline.h */, + 3C4B3D2B2C06DDDD00D778FC /* dll.h */, + 3C4B3D012C06DDDB00D778FC /* DrawOrderTimeline.cpp */, + 3C4B3D1C2C06DDDD00D778FC /* DrawOrderTimeline.h */, + 3C4B3CF92C06DDDB00D778FC /* Event.cpp */, + 3C4B3CEA2C06DDDA00D778FC /* Event.h */, + 3C4B3CD72C06DDD900D778FC /* EventData.cpp */, + 3C4B3D442C06DDDF00D778FC /* EventData.h */, + 3C4B3CE02C06DDDA00D778FC /* EventTimeline.cpp */, + 3C4B3D142C06DDDC00D778FC /* EventTimeline.h */, + 3C4B3D152C06DDDC00D778FC /* Extension.cpp */, + 3C4B3D4F2C06DDDF00D778FC /* Extension.h */, + 3C4B3D162C06DDDC00D778FC /* HashMap.h */, + 3C4B3D1F2C06DDDD00D778FC /* HasRendererObject.h */, + 3C4B3CC92C06DDD900D778FC /* IkConstraint.cpp */, + 3C4B3D292C06DDDD00D778FC /* IkConstraint.h */, + 3C4B3D2A2C06DDDD00D778FC /* IkConstraintData.cpp */, + 3C4B3CF42C06DDDB00D778FC /* IkConstraintData.h */, + 3C4B3CDA2C06DDD900D778FC /* IkConstraintTimeline.cpp */, + 3C4B3D3D2C06DDDE00D778FC /* IkConstraintTimeline.h */, + 3C4B3CE92C06DDDA00D778FC /* Inherit.h */, + 3C4B3D562C06DDE000D778FC /* InheritTimeline.cpp */, + 3C4B3D532C06DDDF00D778FC /* InheritTimeline.h */, + 3C4B3CEC2C06DDDA00D778FC /* Json.cpp */, + 3C4B3CF32C06DDDB00D778FC /* Json.h */, + 3C4B3D262C06DDDD00D778FC /* LinkedMesh.cpp */, + 3C4B3CBD2C06DDD800D778FC /* LinkedMesh.h */, + 3C4B3CC02C06DDD800D778FC /* Log.cpp */, + 3C4B3D002C06DDDB00D778FC /* Log.h */, + 3C4B3D312C06DDDE00D778FC /* MathUtil.cpp */, + 3C4B3D412C06DDDF00D778FC /* MathUtil.h */, + 3C4B3D542C06DDDF00D778FC /* MeshAttachment.cpp */, + 3C4B3D0B2C06DDDC00D778FC /* MeshAttachment.h */, + 3C4B3D0C2C06DDDC00D778FC /* MixBlend.h */, + 3C4B3D3A2C06DDDE00D778FC /* MixDirection.h */, + 3C4B3CDD2C06DDDA00D778FC /* PathAttachment.cpp */, + 3C4B3D582C06DDE000D778FC /* PathAttachment.h */, + 3C4B3D242C06DDDD00D778FC /* PathConstraint.cpp */, + 3C4B3D432C06DDDF00D778FC /* PathConstraint.h */, + 3C4B3D4C2C06DDDF00D778FC /* PathConstraintData.cpp */, + 3C4B3D402C06DDDE00D778FC /* PathConstraintData.h */, + 3C4B3D112C06DDDC00D778FC /* PathConstraintMixTimeline.cpp */, + 3C4B3CC42C06DDD800D778FC /* PathConstraintMixTimeline.h */, + 3C4B3D2C2C06DDDD00D778FC /* PathConstraintPositionTimeline.cpp */, + 3C4B3D132C06DDDC00D778FC /* PathConstraintPositionTimeline.h */, + 3C4B3D0A2C06DDDC00D778FC /* PathConstraintSpacingTimeline.cpp */, + 3C4B3D372C06DDDE00D778FC /* PathConstraintSpacingTimeline.h */, + 3C4B3D042C06DDDC00D778FC /* Physics.h */, + 3C4B3CFC2C06DDDB00D778FC /* PhysicsConstraint.cpp */, + 3C4B3D422C06DDDF00D778FC /* PhysicsConstraint.h */, + 3C4B3D332C06DDDE00D778FC /* PhysicsConstraintData.cpp */, + 3C4B3CCB2C06DDD900D778FC /* PhysicsConstraintData.h */, + 3C4B3D462C06DDDF00D778FC /* PhysicsConstraintTimeline.cpp */, + 3C4B3D072C06DDDC00D778FC /* PhysicsConstraintTimeline.h */, + 3C4B3D022C06DDDB00D778FC /* PointAttachment.cpp */, + 3C4B3CC12C06DDD800D778FC /* PointAttachment.h */, + 3C4B3D092C06DDDC00D778FC /* Pool.h */, + 3C4B3CFE2C06DDDB00D778FC /* PositionMode.h */, + 3C4B3D572C06DDE000D778FC /* Property.h */, + 3C4B3D352C06DDDE00D778FC /* RegionAttachment.cpp */, + 3C4B3CD22C06DDD900D778FC /* RegionAttachment.h */, + 3C4B3D0F2C06DDDC00D778FC /* RotateMode.h */, + 3C4B3CF52C06DDDB00D778FC /* RotateTimeline.cpp */, + 3C4B3D272C06DDDD00D778FC /* RotateTimeline.h */, + 3C4B3CCC2C06DDD900D778FC /* RTTI.cpp */, + 3C4B3CF62C06DDDB00D778FC /* RTTI.h */, + 3C4B3CCE2C06DDD900D778FC /* ScaleTimeline.cpp */, + 3C4B3CDE2C06DDDA00D778FC /* ScaleTimeline.h */, + 3C4B3CE72C06DDDA00D778FC /* Sequence.cpp */, + 3C4B3CCA2C06DDD900D778FC /* Sequence.h */, + 3C4B3CF12C06DDDB00D778FC /* SequenceTimeline.cpp */, + 3C4B3D392C06DDDE00D778FC /* SequenceTimeline.h */, + 3C4B3CCF2C06DDD900D778FC /* ShearTimeline.cpp */, + 3C4B3CC62C06DDD800D778FC /* ShearTimeline.h */, + 3C4B3CD82C06DDD900D778FC /* Skeleton.cpp */, + 3C4B3D1B2C06DDDD00D778FC /* Skeleton.h */, + 3C4B3CF02C06DDDB00D778FC /* SkeletonBinary.cpp */, + 3C4B3CD02C06DDD900D778FC /* SkeletonBinary.h */, + 3C4B3CF22C06DDDB00D778FC /* SkeletonBounds.cpp */, + 3C4B3D202C06DDDD00D778FC /* SkeletonBounds.h */, + 3C4B3CC72C06DDD800D778FC /* SkeletonClipping.cpp */, + 3C4B3D522C06DDDF00D778FC /* SkeletonClipping.h */, + 3C4B3D2E2C06DDDE00D778FC /* SkeletonData.cpp */, + 3C4B3CFB2C06DDDB00D778FC /* SkeletonData.h */, + 3C4B3D252C06DDDD00D778FC /* SkeletonJson.cpp */, + 3C4B3D3F2C06DDDE00D778FC /* SkeletonJson.h */, + 3C4B3CD12C06DDD900D778FC /* Skin.cpp */, + 3C4B3D212C06DDDD00D778FC /* Skin.h */, + 3C4B3CC22C06DDD800D778FC /* Slot.cpp */, + 3C4B3D342C06DDDE00D778FC /* Slot.h */, + 3C4B3CE12C06DDDA00D778FC /* SlotData.cpp */, + 3C4B3CF72C06DDDB00D778FC /* SlotData.h */, + 3C4B3CFD2C06DDDB00D778FC /* SpacingMode.h */, + 3C4B3D2F2C06DDDE00D778FC /* spine.h */, + 3C4B3D122C06DDDC00D778FC /* SpineObject.cpp */, + 3C4B3D492C06DDDF00D778FC /* SpineObject.h */, + 3C4B3D3B2C06DDDE00D778FC /* SpineString.h */, + 3C4B3CE82C06DDDA00D778FC /* TextureLoader.cpp */, + 3C4B3CD32C06DDD900D778FC /* TextureLoader.h */, + 3C4B3CD42C06DDD900D778FC /* TextureRegion.h */, + 3C4B3D102C06DDDC00D778FC /* Timeline.cpp */, + 3C4B3D4A2C06DDDF00D778FC /* Timeline.h */, + 3C4B3CD92C06DDD900D778FC /* TransformConstraint.cpp */, + 3C4B3D062C06DDDC00D778FC /* TransformConstraint.h */, + 3C4B3CD52C06DDD900D778FC /* TransformConstraintData.cpp */, + 3C4B3D172C06DDDC00D778FC /* TransformConstraintData.h */, + 3C4B3D182C06DDDD00D778FC /* TransformConstraintTimeline.cpp */, + 3C4B3CDF2C06DDDA00D778FC /* TransformConstraintTimeline.h */, + 3C4B3CD62C06DDD900D778FC /* TranslateTimeline.cpp */, + 3C4B3D452C06DDDF00D778FC /* TranslateTimeline.h */, + 3C4B3D192C06DDDD00D778FC /* Triangulator.cpp */, + 3C4B3D4E2C06DDDF00D778FC /* Triangulator.h */, + 3C4B3D3E2C06DDDE00D778FC /* Updatable.cpp */, + 3C4B3CE22C06DDDA00D778FC /* Updatable.h */, + 3C4B3CFF2C06DDDB00D778FC /* Vector.h */, + 3C4B3D4B2C06DDDF00D778FC /* Version.h */, + 3C4B3D322C06DDDE00D778FC /* VertexAttachment.cpp */, + 3C4B3D552C06DDDF00D778FC /* VertexAttachment.h */, + 3C4B3D4D2C06DDDF00D778FC /* Vertices.h */, ); name = spine; sourceTree = ""; @@ -4906,54 +4932,48 @@ 3C0C77552757437E0030BDCD /* miniz.c in Sources */, 3C0FB6FC2BF1970C0098E88D /* EffekseerRenderer.DDSTextureLoader.cpp in Sources */, 3C7FA3602B688547005A8441 /* crc32.c in Sources */, + 3C4B3D5A2C06DDE000D778FC /* Log.cpp in Sources */, 3CA780132AE66FB000B7BADA /* WorldJoint.cpp in Sources */, 3C0C77562757437E0030BDCD /* ZipUtils.cpp in Sources */, 3C8CD74D27268B2D0045B362 /* RenderTarget.cpp in Sources */, 3CFFEC72292F1A7000BC6DA1 /* ImGuiBinding.cpp in Sources */, 3C1D40FD2703004300202534 /* TealCompiler.cpp in Sources */, - 3CF10FB92874C81C00940268 /* MathUtil.cpp in Sources */, - 3CF10F9F2874C81C00940268 /* TransformConstraintTimeline.cpp in Sources */, 3C0FB6B02BF1970C0098E88D /* Mat43f.cpp in Sources */, 3CFEA16F285B873B002D106F /* m3_api_wasi.c in Sources */, 3C6E8036272A404A00E9F115 /* soloud_fft.cpp in Sources */, 3C0FB6D22BF1970C0098E88D /* Effekseer.EffectNodeTrack.cpp in Sources */, 3C53EA432BEB456700039640 /* AlignNode.cpp in Sources */, 3C0FB7082BF1970C0098E88D /* EffekseerRenderer.RenderStateBase.cpp in Sources */, - 3CF110012874C81C00940268 /* Skeleton.cpp in Sources */, 3C6E8012272A404A00E9F115 /* soloud_speech.cpp in Sources */, - 3CF10FC32874C81C00940268 /* Event.cpp in Sources */, 3C0FB6CC2BF1970C0098E88D /* Effekseer.EffectNodeRing.cpp in Sources */, 3C53EA3F2BEB451A00039640 /* AbsoluteLayout.cpp in Sources */, 3C6E804A272A404A00E9F115 /* soloud_misc.cpp in Sources */, - 3CF10FE52874C81C00940268 /* SkeletonData.cpp in Sources */, + 3C4B3D802C06DDE000D778FC /* EventTimeline.cpp in Sources */, 3CFEA171285B873B002D106F /* m3_parse.c in Sources */, - 3CF10FB12874C81C00940268 /* Updatable.cpp in Sources */, 3C0FB6C42BF1970C0098E88D /* Effekseer.Effect.cpp in Sources */, + 3C4B3D882C06DDE000D778FC /* AnimationStateData.cpp in Sources */, 3CFEA165285B873B002D106F /* m3_info.c in Sources */, 3CFEA173285B873B002D106F /* m3_exec.c in Sources */, 3C0FB6DC2BF1970C0098E88D /* Effekseer.InstanceGlobal.cpp in Sources */, 3C1A3C0D272A8820003A2829 /* lauxlib.c in Sources */, + 3C4B3D902C06DDE000D778FC /* Json.cpp in Sources */, 3C1A3BE3272A8820003A2829 /* lopcodes.c in Sources */, 3C1A3BDB272A8820003A2829 /* lobject.c in Sources */, 3C5B33D82A4D2B470080049B /* yue_ast.cpp in Sources */, + 3C4B3D5E2C06DDE000D778FC /* AttachmentTimeline.cpp in Sources */, 3C0FB6A62BF1970C0098E88D /* Easing.cpp in Sources */, 3C853F8D28E3ED8A0012C0D0 /* HelloWorldCpp.cpp in Sources */, 3CFEA178285B87B8002D106F /* WasmRuntime.cpp in Sources */, 3CA7808D2AE66FB000B7BADA /* LimitState.cpp in Sources */, - 3CF10FE12874C81C00940268 /* VertexAttachment.cpp in Sources */, 3C0FB6CE2BF1970C0098E88D /* Effekseer.EffectNodeRoot.cpp in Sources */, 3CA7806D2AE66FB000B7BADA /* ShapeSeparation.cpp in Sources */, 3C6E8040272A404A00E9F115 /* soloud_core_faderops.cpp in Sources */, 3C0FB69E2BF1970C0098E88D /* Effekseer.Session.cpp in Sources */, - 3CF10FFF2874C81C00940268 /* RotateTimeline.cpp in Sources */, - 3CF10FEB2874C81C00940268 /* Extension.cpp in Sources */, - 3CF10FDB2874C81C00940268 /* Animation.cpp in Sources */, 3C6E8038272A404A00E9F115 /* soloud_core_setters.cpp in Sources */, 3C0FB6BC2BF1970C0098E88D /* Effekseer.Color.cpp in Sources */, 3CFEA167285B873B002D106F /* m3_api_tracer.c in Sources */, 3C1A3BD3272A8820003A2829 /* llex.c in Sources */, 3C1A3BD7272A8820003A2829 /* lstate.c in Sources */, - 3CF10FC92874C81C00940268 /* RegionAttachment.cpp in Sources */, 3CA7801D2AE66FB000B7BADA /* Sweep.cpp in Sources */, 3CFEA169285B873B002D106F /* m3_api_meta_wasi.c in Sources */, 3CA780492AE66FB000B7BADA /* PolygonShapeConf.cpp in Sources */, @@ -4961,54 +4981,52 @@ 3C5399FC2998DF4900E9125C /* HttpServer.cpp in Sources */, 3C6E8004272A404900E9F115 /* soloud_sfxr.cpp in Sources */, 3C6E8028272A404A00E9F115 /* soloud_fft_lut.cpp in Sources */, - 3CF10FC12874C81C00940268 /* Skin.cpp in Sources */, 3C6E7FFC272A404900E9F115 /* sndbuffer.cpp in Sources */, 3C47CF1528A38C910011F3E1 /* Cache.cpp in Sources */, 3CA780632AE66FB000B7BADA /* CodeDumper.cpp in Sources */, 3CA780572AE66FB000B7BADA /* ChainShapeConf.cpp in Sources */, - 3CF10FEF2874C81C00940268 /* IkConstraint.cpp in Sources */, 3C6E800A272A404900E9F115 /* resonator.cpp in Sources */, 3CFEA15F285B873B002D106F /* m3_function.c in Sources */, 3CA7804D2AE66FB000B7BADA /* WorldManifold.cpp in Sources */, 3C6E802C272A404A00E9F115 /* soloud_bus.cpp in Sources */, 3C6E8010272A404A00E9F115 /* darray.cpp in Sources */, 3C5399F72998DEF800E9125C /* ljson.c in Sources */, - 3CF10FC72874C81C00940268 /* PathConstraintData.cpp in Sources */, 3C7FA3502B688547005A8441 /* gzclose.c in Sources */, 3C1A3BE9272A8820003A2829 /* lmathlib.c in Sources */, 3C0FB6B22BF1970C0098E88D /* Mat44f.cpp in Sources */, 3C6E7FD6272A404900E9F115 /* soloud_fftfilter.cpp in Sources */, + 3C4B3DAA2C06DDE000D778FC /* Timeline.cpp in Sources */, 3C1A3C09272A8820003A2829 /* lutf8lib.c in Sources */, 3CA780212AE66FB000B7BADA /* UnitVec.cpp in Sources */, 3C0FB6902BF1970C0098E88D /* PointCacheGenerator.cpp in Sources */, 3C1A3BE7272A8820003A2829 /* lfunc.c in Sources */, - 3CF10FD92874C81C00940268 /* ShearTimeline.cpp in Sources */, 3C0FB6FE2BF1970C0098E88D /* EffekseerRenderer.GpuParticles.cpp in Sources */, - 3CF10FBF2874C81C00940268 /* SlotData.cpp in Sources */, 3C0FB71C2BF1970C0098E88D /* bgfxrenderer.cpp in Sources */, 3C0FB6F82BF1970C0098E88D /* Effekseer.WorkerThread.cpp in Sources */, 3C6E800C272A404900E9F115 /* klatt.cpp in Sources */, - 3CF10FD12874C81C00940268 /* Slot.cpp in Sources */, - 3CF10FA72874C81C00940268 /* RTTI.cpp in Sources */, 3C6E8032272A404A00E9F115 /* soloud.cpp in Sources */, 3C6E8034272A404A00E9F115 /* soloud_audiosource.cpp in Sources */, 3CA780652AE66FB000B7BADA /* VelocityConstraint.cpp in Sources */, - 3CF10FF32874C81C00940268 /* IkConstraintData.cpp in Sources */, 3C6E7FDA272A404900E9F115 /* soloud_dcremovalfilter.cpp in Sources */, 3C1A3BDF272A8820003A2829 /* lzio.c in Sources */, + 3C4B3D9A2C06DDE000D778FC /* RotateTimeline.cpp in Sources */, 3CA7803F2AE66FB000B7BADA /* WheelJointConf.cpp in Sources */, 3C0FB7042BF1970C0098E88D /* EffekseerRenderer.Renderer_Impl.cpp in Sources */, 3C1A3BDD272A8820003A2829 /* lbaselib.c in Sources */, 3C1A3BF7272A8820003A2829 /* lvm.c in Sources */, 3C1A3BF1272A8820003A2829 /* loslib.c in Sources */, + 3C4B3DD02C06DDE000D778FC /* RegionAttachment.cpp in Sources */, + 3C4B3DB22C06DDE000D778FC /* TransformConstraintTimeline.cpp in Sources */, + 3C4B3DAE2C06DDE000D778FC /* SpineObject.cpp in Sources */, + 3C4B3D682C06DDE000D778FC /* Atlas.cpp in Sources */, 3CFEA157285B873B002D106F /* m3_compile.c in Sources */, 3C53EA392BEB451A00039640 /* PixelGrid.cpp in Sources */, 3C0FB71A2BF1970C0098E88D /* VertexBuffer.cpp in Sources */, - 3CF110032874C81C00940268 /* TransformConstraintData.cpp in Sources */, 3C6E8048272A404A00E9F115 /* soloud_core_3d.cpp in Sources */, 3C6E801C272A404A00E9F115 /* soloud_noise.cpp in Sources */, 3C1A3C01272A8820003A2829 /* ltable.c in Sources */, 3CA7802F2AE66FB000B7BADA /* RopeJointConf.cpp in Sources */, + 3C4B3DD42C06DDE000D778FC /* Updatable.cpp in Sources */, 3C6E7FEE272A404900E9F115 /* soloud_vic.cpp in Sources */, 3C6E802E272A404A00E9F115 /* soloud_fader.cpp in Sources */, 3C6E8046272A404A00E9F115 /* soloud_core_getters.cpp in Sources */, @@ -5016,6 +5034,7 @@ 3C6E7FDE272A404900E9F115 /* soloud_flangerfilter.cpp in Sources */, 3C6E7FF4272A404900E9F115 /* dr_impl.cpp in Sources */, 3C1A3BEB272A8820003A2829 /* liolib.c in Sources */, + 3C4B3D9E2C06DDE000D778FC /* PhysicsConstraint.cpp in Sources */, 3C0FB6A42BF1970C0098E88D /* Collisions.cpp in Sources */, 3CA780532AE66FB000B7BADA /* Velocity.cpp in Sources */, 3C1A3BCD272A8820003A2829 /* lctype.c in Sources */, @@ -5028,16 +5047,14 @@ 3C6E8024272A404A00E9F115 /* soloud_openmpt.cpp in Sources */, 3CFEA159285B873B002D106F /* m3_code.c in Sources */, 3CFEA15D285B873B002D106F /* m3_module.c in Sources */, - 3CF110052874C81C00940268 /* BoneData.cpp in Sources */, + 3C4B3D982C06DDE000D778FC /* SkeletonBounds.cpp in Sources */, 3C0FB6F02BF1970C0098E88D /* Effekseer.ResourceManager.cpp in Sources */, 3CA7807D2AE66FB000B7BADA /* ConstraintSolverConf.cpp in Sources */, 3C0FB6B82BF1970C0098E88D /* VectorField.cpp in Sources */, - 3CF10FB32874C81C00940268 /* LinkedMesh.cpp in Sources */, + 3C4B3DC22C06DDE000D778FC /* IkConstraintData.cpp in Sources */, 3C1A3C03272A8820003A2829 /* lparser.c in Sources */, 3C6E7FFA272A404900E9F115 /* chipplayer.cpp in Sources */, - 3CF10F972874C81C00940268 /* PathConstraint.cpp in Sources */, 3C1A3BEF272A8820003A2829 /* ldblib.c in Sources */, - 3CF110092874C81C00940268 /* PathConstraintPositionTimeline.cpp in Sources */, 3C6E8018272A404A00E9F115 /* sid.cpp in Sources */, 3CFEBE4026930B36006D9974 /* DragonBoneCache.cpp in Sources */, 3C6E8002272A404900E9F115 /* sndrender.cpp in Sources */, @@ -5050,18 +5067,18 @@ 3CFEBE1A26930AA1006D9974 /* Animation.cpp in Sources */, 3C6E8030272A404A00E9F115 /* soloud_file.cpp in Sources */, 3CFEBE1B26930AA1006D9974 /* AnimationState.cpp in Sources */, + 3C4B3DCE2C06DDE000D778FC /* PhysicsConstraintData.cpp in Sources */, + 3C4B3DC62C06DDE000D778FC /* Attachment.cpp in Sources */, 3CFEBE1C26930AA1006D9974 /* BaseTimelineState.cpp in Sources */, - 3CF1100F2874C81C00940268 /* SkeletonBounds.cpp in Sources */, 3CA780552AE66FB000B7BADA /* Distance.cpp in Sources */, - 3CF10FBD2874C81C00940268 /* AttachmentLoader.cpp in Sources */, 3CFEBE1D26930AA1006D9974 /* TimelineState.cpp in Sources */, - 3CF10FAF2874C81C00940268 /* AttachmentTimeline.cpp in Sources */, 3CFEBE1E26930AA1006D9974 /* WorldClock.cpp in Sources */, 3CFEBE1F26930AA1006D9974 /* Armature.cpp in Sources */, 3C6E803A272A404A00E9F115 /* soloud_core_voiceops.cpp in Sources */, + 3C4B3DBA2C06DDE000D778FC /* PathConstraint.cpp in Sources */, 3CFEBE2026930AA1006D9974 /* Bone.cpp in Sources */, + 3C4B3DDC2C06DDE000D778FC /* MeshAttachment.cpp in Sources */, 3C53E9E72BEB442300039640 /* YGEnums.cpp in Sources */, - 3CF10FE92874C81C00940268 /* SpineObject.cpp in Sources */, 3CFEBE2126930AA1006D9974 /* Constraint.cpp in Sources */, 3CA780892AE66FB000B7BADA /* StepConf.cpp in Sources */, 3C0FB7142BF1970C0098E88D /* GraphicsDeviceCPU.cpp in Sources */, @@ -5076,79 +5093,84 @@ 3CA780952AE66FB000B7BADA /* StackAllocator.cpp in Sources */, 3CFEBE2626930AA1006D9974 /* DragonBones.cpp in Sources */, 3C0FB6822BF1970C0098E88D /* ForceFields.cpp in Sources */, - 3CF10FF72874C81C00940268 /* PathConstraintMixTimeline.cpp in Sources */, 3CA780072AE66FB000B7BADA /* EdgeShapeConf.cpp in Sources */, 3C0FB6EA2BF1970C0098E88D /* Effekseer.Random.cpp in Sources */, 3C1A3BD1272A8820003A2829 /* ldebug.c in Sources */, - 3CF10FF92874C81C00940268 /* ColorTimeline.cpp in Sources */, 3C6E7FD2272A404900E9F115 /* soloud_bassboostfilter.cpp in Sources */, 3CFEBE2726930AA1006D9974 /* EventObject.cpp in Sources */, 3CFEBE2826930AA1006D9974 /* BaseFactory.cpp in Sources */, 3C0FB6942BF1970C0098E88D /* SplineGenerator.cpp in Sources */, + 3C4B3D602C06DDE000D778FC /* SkeletonClipping.cpp in Sources */, 3C53EA222BEB450000039640 /* Config.cpp in Sources */, 3C0FB6E62BF1970C0098E88D /* Effekseer.Matrix43.cpp in Sources */, 3CFEBE2926930AA1006D9974 /* Point.cpp in Sources */, 3CFEBE2A26930AA1006D9974 /* Transform.cpp in Sources */, 3C0FB70E2BF1970C0098E88D /* EffekseerRenderer.SpriteRendererBase.cpp in Sources */, + 3C4B3DCA2C06DDE000D778FC /* MathUtil.cpp in Sources */, + 3C4B3DBE2C06DDE000D778FC /* LinkedMesh.cpp in Sources */, 3C0FB6C62BF1970C0098E88D /* Effekseer.EffectNode.cpp in Sources */, 3CA780792AE66FB000B7BADA /* MemoryResource.cpp in Sources */, 3CFEBE2B26930AA1006D9974 /* AnimationConfig.cpp in Sources */, 3CFEBE2C26930AA1006D9974 /* AnimationData.cpp in Sources */, 3C7FA35E2B688547005A8441 /* gzwrite.c in Sources */, + 3C4B3DA82C06DDE000D778FC /* PathConstraintSpacingTimeline.cpp in Sources */, 3CA7802D2AE66FB000B7BADA /* DistanceProxy.cpp in Sources */, 3CFEBE2D26930AA1006D9974 /* ArmatureData.cpp in Sources */, 3C6E8008272A404900E9F115 /* tts.cpp in Sources */, 3CFEBE2E26930AA1006D9974 /* BoundingBoxData.cpp in Sources */, - 3CF10F9D2874C81C00940268 /* ClippingAttachment.cpp in Sources */, 3CFEBE2F26930AA1006D9974 /* CanvasData.cpp in Sources */, + 3C4B3DA22C06DDE000D778FC /* PointAttachment.cpp in Sources */, 3CA7805F2AE66FB000B7BADA /* WorldMisc.cpp in Sources */, 3C0FB6B62BF1970C0098E88D /* Effekseer.CustomAllocator.cpp in Sources */, 3C6E7FF6272A404900E9F115 /* soloud_wav.cpp in Sources */, 3C6E802A272A404A00E9F115 /* soloud_core_voicegroup.cpp in Sources */, 3CA7802B2AE66FB000B7BADA /* DynamicTree.cpp in Sources */, - 3CF10FA52874C81C00940268 /* Triangulator.cpp in Sources */, 3CA780392AE66FB000B7BADA /* GearJointConf.cpp in Sources */, + 3C4B3DB82C06DDE000D778FC /* BoundingBoxAttachment.cpp in Sources */, 3CFEBE3026930AA1006D9974 /* ConstraintData.cpp in Sources */, 3C6E8020272A404A00E9F115 /* soloud_vizsn.cpp in Sources */, 3CFEBE3126930AA1006D9974 /* DisplayData.cpp in Sources */, 3CFEBE3226930AA1006D9974 /* DragonBonesData.cpp in Sources */, 3C1A3C05272A8820003A2829 /* lcode.c in Sources */, + 3C4B3D8E2C06DDE000D778FC /* Animation.cpp in Sources */, 3CA780332AE66FB000B7BADA /* WorldContact.cpp in Sources */, 3CA780412AE66FB000B7BADA /* WeldJointConf.cpp in Sources */, + 3C4B3DB02C06DDE000D778FC /* Extension.cpp in Sources */, + 3C4B3DC42C06DDE000D778FC /* PathConstraintPositionTimeline.cpp in Sources */, 3CFEBE3326930AA1006D9974 /* SkinData.cpp in Sources */, - 3CF10FDD2874C81C00940268 /* ConstraintData.cpp in Sources */, 3C0FB7162BF1970C0098E88D /* ModelLoader.cpp in Sources */, 3CFEBE3426930AA1006D9974 /* TextureAtlasData.cpp in Sources */, 3C0FB69A2BF1970C0098E88D /* Effekseer.Client.cpp in Sources */, - 3CF10FFB2874C81C00940268 /* Json.cpp in Sources */, 3C53E9DB2BEB442300039640 /* YGPixelGrid.cpp in Sources */, 3CFEBE3526930AA1006D9974 /* UserData.cpp in Sources */, 3CFEBE3626930AA1006D9974 /* BinaryDataParser.cpp in Sources */, 3CA780872AE66FB000B7BADA /* DynamicMemory.cpp in Sources */, 3C0FB70C2BF1970C0098E88D /* EffekseerRenderer.RingRendererBase.cpp in Sources */, 3CA780272AE66FB000B7BADA /* AABB.cpp in Sources */, + 3C4B3DA02C06DDE000D778FC /* DrawOrderTimeline.cpp in Sources */, 3CA780352AE66FB000B7BADA /* WorldBody.cpp in Sources */, 3CFEBE3726930AA1006D9974 /* DataParser.cpp in Sources */, 3CFEBE3826930AA1006D9974 /* JSONDataParser.cpp in Sources */, 3CBFB70E2643782A006348C8 /* implot_demo.cpp in Sources */, 3CA7800F2AE66FB000B7BADA /* Joint.cpp in Sources */, 3CBFB70F2643782A006348C8 /* implot_items.cpp in Sources */, - 3CF10FCD2874C81C00940268 /* CurveTimeline.cpp in Sources */, 3CBFB7102643782A006348C8 /* implot.cpp in Sources */, - 3CF10FB52874C81C00940268 /* Sequence.cpp in Sources */, 3CA7806F2AE66FB000B7BADA /* DistanceConf.cpp in Sources */, + 3C4B3D5C2C06DDE000D778FC /* Slot.cpp in Sources */, 3CAA2D3C26156099004443A6 /* Database.cpp in Sources */, + 3C4B3D722C06DDE000D778FC /* TranslateTimeline.cpp in Sources */, + 3C4B3DDA2C06DDE000D778FC /* PathConstraintData.cpp in Sources */, + 3C4B3DB62C06DDE000D778FC /* BoneData.cpp in Sources */, 3CAA2D342615605A004443A6 /* Backup.cpp in Sources */, 3CA780712AE66FB000B7BADA /* PointStates.cpp in Sources */, 3CAA2D352615605A004443A6 /* Column.cpp in Sources */, - 3CF10FAB2874C81C00940268 /* BoundingBoxAttachment.cpp in Sources */, 3CAA2D362615605A004443A6 /* Exception.cpp in Sources */, - 3CF10FFD2874C81C00940268 /* SkeletonBinary.cpp in Sources */, 3CAA2D372615605A004443A6 /* Savepoint.cpp in Sources */, 3C6E8044272A404A00E9F115 /* soloud_thread.cpp in Sources */, 3C7FA3582B688547005A8441 /* trees.c in Sources */, 3CAA2D382615605A004443A6 /* Statement.cpp in Sources */, 3CA780372AE66FB000B7BADA /* TimeOfImpact.cpp in Sources */, + 3C4B3D8A2C06DDE000D778FC /* Sequence.cpp in Sources */, 3CAA2D392615605A004443A6 /* Transaction.cpp in Sources */, 3C0FB6B42BF1970C0098E88D /* Utils.cpp in Sources */, 3CFEA163285B873B002D106F /* m3_api_libc.c in Sources */, @@ -5156,7 +5178,10 @@ 3C6E7FEC272A404900E9F115 /* soloud_sdl2_static.cpp in Sources */, 3C6E7FD0272A404900E9F115 /* soloud_eqfilter.cpp in Sources */, 3C7FA36C2B688560005A8441 /* gzlib.c in Sources */, + 3C4B3D9C2C06DDE000D778FC /* Event.cpp in Sources */, + 3C4B3D842C06DDE000D778FC /* CurveTimeline.cpp in Sources */, 3CA780292AE66FB000B7BADA /* ContactImpulsesList.cpp in Sources */, + 3C4B3D6E2C06DDE000D778FC /* Skin.cpp in Sources */, 3C6E803E272A404A00E9F115 /* soloud_queue.cpp in Sources */, 3CBE0DF926087F7B003F4F45 /* Sprite.cpp in Sources */, 3C1A3BE1272A8820003A2829 /* lgc.c in Sources */, @@ -5167,43 +5192,49 @@ 3C6E7FF2272A404900E9F115 /* soloud_wavstream.cpp in Sources */, 3CBE0E0326087F7B003F4F45 /* Node.cpp in Sources */, 3CBE0E0426087F7B003F4F45 /* FrameCache.cpp in Sources */, - 3CF110072874C81C00940268 /* PathAttachment.cpp in Sources */, + 3C4B3DD82C06DDE000D778FC /* ConstraintData.cpp in Sources */, 3CA780692AE66FB000B7BADA /* World.cpp in Sources */, + 3C4B3DBC2C06DDE000D778FC /* SkeletonJson.cpp in Sources */, + 3C4B3DCC2C06DDE000D778FC /* VertexAttachment.cpp in Sources */, + 3C4B3D742C06DDE000D778FC /* EventData.cpp in Sources */, 3C0FB6A22BF1970C0098E88D /* CurlNoise.cpp in Sources */, 3C1A3BF3272A8820003A2829 /* ltablib.c in Sources */, 3CBE0E0626087F7B003F4F45 /* Face.cpp in Sources */, + 3C4B3D6A2C06DDE000D778FC /* ScaleTimeline.cpp in Sources */, + 3C4B3D942C06DDE000D778FC /* SkeletonBinary.cpp in Sources */, 3CA7801B2AE66FB000B7BADA /* JointConf.cpp in Sources */, 3C1A3BFD272A8820003A2829 /* linit.c in Sources */, 3CBE0E0726087F7B003F4F45 /* ML.cpp in Sources */, 3C6E8000272A404900E9F115 /* soloud_ay.cpp in Sources */, 3CBE0E0926087F7B003F4F45 /* Data.cpp in Sources */, - 3CF110112874C81C00940268 /* TextureLoader.cpp in Sources */, 3CBE0E0A26087F7B003F4F45 /* ParticleCache.cpp in Sources */, 3CBE0E0D26087F7B003F4F45 /* Application.mm in Sources */, 3C0FB6F42BF1970C0098E88D /* Effekseer.Vector2D.cpp in Sources */, 3CBE0E0F26087F7B003F4F45 /* Object.cpp in Sources */, + 3C4B3DA42C06DDE000D778FC /* AttachmentLoader.cpp in Sources */, 3CBE0E1026087F7B003F4F45 /* yue_compiler.cpp in Sources */, 3CA7801F2AE66FB000B7BADA /* Math.cpp in Sources */, 3C1A3BE5272A8820003A2829 /* loadlib.c in Sources */, + 3C4B3D782C06DDE000D778FC /* TransformConstraint.cpp in Sources */, 3C0FB6E82BF1970C0098E88D /* Effekseer.Matrix44.cpp in Sources */, 3C0FB6EE2BF1970C0098E88D /* Effekseer.Resource.cpp in Sources */, 3C0FB6842BF1970C0098E88D /* Effekseer.EfkEfcFactory.cpp in Sources */, 3CA780452AE66FB000B7BADA /* ContactSolver.cpp in Sources */, + 3C4B3D642C06DDE000D778FC /* IkConstraint.cpp in Sources */, 3CA780052AE66FB000B7BADA /* RayCastOutput.cpp in Sources */, 3CBE0E1126087F7B003F4F45 /* tolua_to.cpp in Sources */, 3C0FB6C82BF1970C0098E88D /* Effekseer.EffectNodeModel.cpp in Sources */, + 3C4B3D762C06DDE000D778FC /* Skeleton.cpp in Sources */, + 3C4B3DD62C06DDE000D778FC /* PhysicsConstraintTimeline.cpp in Sources */, 3C0FB6D62BF1970C0098E88D /* Effekseer.Instance.cpp in Sources */, 3CA780732AE66FB000B7BADA /* BlockAllocator.cpp in Sources */, 3CBE0E1326087F7B003F4F45 /* atlas.cpp in Sources */, 3CA7800B2AE66FB000B7BADA /* MotorJointConf.cpp in Sources */, 3C0FB6C02BF1970C0098E88D /* Effekseer.DefaultEffectLoader.cpp in Sources */, - 3CF1100B2874C81C00940268 /* AnimationState.cpp in Sources */, 3C53E9E32BEB442300039640 /* YGNodeStyle.cpp in Sources */, 3C6E8014272A404A00E9F115 /* ted.cpp in Sources */, 3CBE0E1626087F7B003F4F45 /* Keyboard.cpp in Sources */, 3CBE0E1726087F7B003F4F45 /* stb.cpp in Sources */, - 3CF10FA12874C81C00940268 /* PathConstraintSpacingTimeline.cpp in Sources */, - 3CF10F9B2874C81C00940268 /* SequenceTimeline.cpp in Sources */, 3C53EA1E2BEB44E800039640 /* AssertFatal.cpp in Sources */, 3C0FB6DE2BF1970C0098E88D /* Effekseer.InstanceGroup.cpp in Sources */, 3CBE0E1826087F7B003F4F45 /* imgui_tables.cpp in Sources */, @@ -5216,9 +5247,9 @@ 3CBE0E1F26087F7B003F4F45 /* Body.cpp in Sources */, 3C0FB6F62BF1970C0098E88D /* Effekseer.Vector3D.cpp in Sources */, 3CA780472AE66FB000B7BADA /* Shape.cpp in Sources */, - 3CF10FF12874C81C00940268 /* SkeletonClipping.cpp in Sources */, 3CBE0E2126087F7B003F4F45 /* Model.cpp in Sources */, 3C7FA3622B688547005A8441 /* inftrees.c in Sources */, + 3C4B3DC82C06DDE000D778FC /* SkeletonData.cpp in Sources */, 3CBE0E2226087F7B003F4F45 /* tolua_event.cpp in Sources */, 3C1A3C0B272A8820003A2829 /* ldo.c in Sources */, 3CBE0E2326087F7B003F4F45 /* Director.cpp in Sources */, @@ -5232,8 +5263,10 @@ 3C7FA35A2B688547005A8441 /* compress.c in Sources */, 3CBE0E2A26087F7B003F4F45 /* AtlasCache.cpp in Sources */, 3CBE0E2B26087F7B003F4F45 /* ModelCache.cpp in Sources */, + 3C4B3D962C06DDE000D778FC /* SequenceTimeline.cpp in Sources */, 3CA7808F2AE66FB000B7BADA /* Island.cpp in Sources */, 3CBE0E2F26087F7B003F4F45 /* Slice.cpp in Sources */, + 3C4B3D862C06DDE000D778FC /* AtlasAttachmentLoader.cpp in Sources */, 3C53EA032BEB44C100039640 /* event.cpp in Sources */, 3CA780932AE66FB000B7BADA /* MovementConf.cpp in Sources */, 3CA7807F2AE66FB000B7BADA /* Math.cpp in Sources */, @@ -5245,24 +5278,23 @@ 3CBE0E3426087F7B003F4F45 /* Joint.cpp in Sources */, 3C0FB6EC2BF1970C0098E88D /* Effekseer.RectF.cpp in Sources */, 3CA780252AE66FB000B7BADA /* DiskShapeConf.cpp in Sources */, - 3CF10FD32874C81C00940268 /* Atlas.cpp in Sources */, 3C0FB6CA2BF1970C0098E88D /* Effekseer.EffectNodeRibbon.cpp in Sources */, 3CFEA16B285B873B002D106F /* m3_env.c in Sources */, 3CBE0E3626087F7B003F4F45 /* yue_parser.cpp in Sources */, + 3C4B3DB42C06DDE000D778FC /* Triangulator.cpp in Sources */, 3CA7804B2AE66FB000B7BADA /* PulleyJointConf.cpp in Sources */, 3CBE0E3B26087F7B003F4F45 /* SVGCache.cpp in Sources */, 3CBE0E3C26087F7B003F4F45 /* Bullet.cpp in Sources */, + 3C4B3D662C06DDE000D778FC /* RTTI.cpp in Sources */, 3C0FB6E02BF1970C0098E88D /* Effekseer.InternalScript.cpp in Sources */, 3C0FB6D82BF1970C0098E88D /* Effekseer.InstanceChunk.cpp in Sources */, - 3CF10FCB2874C81C00940268 /* AnimationStateData.cpp in Sources */, + 3C4B3D7A2C06DDE000D778FC /* IkConstraintTimeline.cpp in Sources */, 3CBE0E3F26087F7B003F4F45 /* imgui_demo.cpp in Sources */, 3C7FA35C2B688547005A8441 /* uncompr.c in Sources */, - 3CF10FED2874C81C00940268 /* DrawOrderTimeline.cpp in Sources */, 3C6E801E272A404A00E9F115 /* soloud_monotone.cpp in Sources */, 3C6E8016272A404A00E9F115 /* soloud_tedsid.cpp in Sources */, 3CBE0E4126087F7B003F4F45 /* Entity.cpp in Sources */, 3CBE0E4426087F7B003F4F45 /* Async.cpp in Sources */, - 3CF10FA92874C81C00940268 /* Log.cpp in Sources */, 3CA7808B2AE66FB000B7BADA /* StepStats.cpp in Sources */, 3C6E8026272A404A00E9F115 /* soloud_core_filterops.cpp in Sources */, 3C0FB68A2BF1970C0098E88D /* Effekseer.MaterialFile.cpp in Sources */, @@ -5271,8 +5303,6 @@ 3CBE0E4926087F7B003F4F45 /* DebugDraw.cpp in Sources */, 3C1A3BD9272A8820003A2829 /* ldump.c in Sources */, 3C33A3CB2A3AF3C300E60A14 /* YarnCompiler.cpp in Sources */, - 3CF10FB72874C81C00940268 /* EventTimeline.cpp in Sources */, - 3CF10FBB2874C81C00940268 /* PointAttachment.cpp in Sources */, 3C0FB6D42BF1970C0098E88D /* Effekseer.FCurves.cpp in Sources */, 3CBE0E4B26087F7B003F4F45 /* View.cpp in Sources */, 3CBE0E5026087F7B003F4F45 /* imgui_widgets.cpp in Sources */, @@ -5290,19 +5320,15 @@ 3C0FB6AC2BF1970C0098E88D /* KillRules.cpp in Sources */, 3CBE0E5826087F7B003F4F45 /* DecisionTree.cpp in Sources */, 3CBE0E5A26087F7B003F4F45 /* font_manager.cpp in Sources */, - 3CF10FC52874C81C00940268 /* IkConstraintTimeline.cpp in Sources */, 3CBE0E6326087F7B003F4F45 /* LuaHandler.cpp in Sources */, 3CA780752AE66FB000B7BADA /* PoolMemoryResource.cpp in Sources */, 3CBE0E6426087F7B003F4F45 /* Action.cpp in Sources */, 3C0FB6922BF1970C0098E88D /* ProceduralModelGenerator.cpp in Sources */, - 3CF10FAD2874C81C00940268 /* EventData.cpp in Sources */, 3CBE0E6626087F7B003F4F45 /* Unit.cpp in Sources */, 3CBE0E6726087F7B003F4F45 /* Menu.cpp in Sources */, 3C0FB7062BF1970C0098E88D /* EffekseerRenderer.Renderer.cpp in Sources */, 3CA780512AE66FB000B7BADA /* ConvexHull.cpp in Sources */, - 3CF10FD52874C81C00940268 /* TransformConstraint.cpp in Sources */, 3C0FB69C2BF1970C0098E88D /* Effekseer.Server.cpp in Sources */, - 3CF10FF52874C81C00940268 /* AtlasAttachmentLoader.cpp in Sources */, 3CBE0E6926087F7B003F4F45 /* AI.cpp in Sources */, 3CBE0E6A26087F7B003F4F45 /* tinyxml2.cpp in Sources */, 3CBE0E6B26087F7B003F4F45 /* LuaFromXml.cpp in Sources */, @@ -5318,20 +5344,23 @@ 3C0FB7022BF1970C0098E88D /* EffekseerRenderer.PngTextureLoader.cpp in Sources */, 3CBE0E7626087F7B003F4F45 /* Event.cpp in Sources */, 3CBE0E7726087F7B003F4F45 /* JointDef.cpp in Sources */, - 3CF10FE72874C81C00940268 /* ScaleTimeline.cpp in Sources */, 3CA7803D2AE66FB000B7BADA /* Body.cpp in Sources */, 3CFEA16D285B873B002D106F /* m3_bind.c in Sources */, + 3C4B3D8C2C06DDE000D778FC /* TextureLoader.cpp in Sources */, 3C6E7FF8272A404900E9F115 /* sndchip.cpp in Sources */, 3CBE0E7826087F7B003F4F45 /* imgui.cpp in Sources */, 3CBE0E7B26087F7B003F4F45 /* Common.cpp in Sources */, 3CBE0E8026087F7B003F4F45 /* Builtin.cpp in Sources */, 3CBE0E8226087F7B003F4F45 /* Application.cpp in Sources */, + 3C4B3D822C06DDE000D778FC /* SlotData.cpp in Sources */, + 3C4B3D6C2C06DDE000D778FC /* ShearTimeline.cpp in Sources */, 3CBE0E8526087F7B003F4F45 /* parser.cpp in Sources */, 3CBE0E8726087F7B003F4F45 /* Animation.cpp in Sources */, 3CBE0E8B26087F7B003F4F45 /* ImGuiDora.cpp in Sources */, 3C0FB6AA2BF1970C0098E88D /* GpuParticlesParameter.cpp in Sources */, 3CBE0E8C26087F7B003F4F45 /* tolua_map.cpp in Sources */, 3C53E9DF2BEB442300039640 /* YGValue.cpp in Sources */, + 3C4B3D7C2C06DDE000D778FC /* Bone.cpp in Sources */, 3CBE0E8F26087F7B003F4F45 /* utf8.cpp in Sources */, 3CBE0E9426087F7B003F4F45 /* ClipCache.cpp in Sources */, 3C28C0A32772CFE4007FC76E /* Grid.cpp in Sources */, @@ -5345,11 +5374,10 @@ 3CBE0E9C26087F7B003F4F45 /* PlatformWorld.cpp in Sources */, 3CBE0E9D26087F7B003F4F45 /* LuaBinding.cpp in Sources */, 3C0FB6E42BF1970C0098E88D /* Effekseer.Manager.cpp in Sources */, - 3CF10FE32874C81C00940268 /* Timeline.cpp in Sources */, 3CBE0EA026087F7B003F4F45 /* ast.cpp in Sources */, 3C53EA3D2BEB451A00039640 /* Cache.cpp in Sources */, - 3CF1100D2874C81C00940268 /* DeformTimeline.cpp in Sources */, 3CBE0EA226087F7B003F4F45 /* nanovg.cpp in Sources */, + 3C4B3D622C06DDE000D778FC /* DeformTimeline.cpp in Sources */, 3CBE0EA526087F7B003F4F45 /* Camera.cpp in Sources */, 3CA780092AE66FB000B7BADA /* Manifold.cpp in Sources */, 3CBE0EA726087F7B003F4F45 /* Content.mm in Sources */, @@ -5366,9 +5394,7 @@ 3CBE0EAD26087F7B003F4F45 /* MemoryPool.cpp in Sources */, 3C1A3C07272A8820003A2829 /* ltm.c in Sources */, 3CBE0EAF26087F7B003F4F45 /* format.cpp in Sources */, - 3CF10FCF2874C81C00940268 /* Attachment.cpp in Sources */, 3CBE0EB026087F7B003F4F45 /* EventType.cpp in Sources */, - 3CF10FD72874C81C00940268 /* Bone.cpp in Sources */, 3C53E9E12BEB442300039640 /* YGNode.cpp in Sources */, 3CBE0EB126087F7B003F4F45 /* LuaCode.cpp in Sources */, 3C6E7FE2272A404900E9F115 /* soloud_biquadresonantfilter.cpp in Sources */, @@ -5376,28 +5402,29 @@ 3CBE0EB326087F7B003F4F45 /* DrawNode.cpp in Sources */, 3CBE0EB426087F7B003F4F45 /* Spine.cpp in Sources */, 3CBE0EB526087F7B003F4F45 /* Define.cpp in Sources */, + 3C4B3DD22C06DDE000D778FC /* AnimationState.cpp in Sources */, 3CBE0EB626087F7B003F4F45 /* Renderer.cpp in Sources */, 3CBE0EB726087F7B003F4F45 /* Label.cpp in Sources */, 3CBE0EBC26087F7B003F4F45 /* ClipNode.cpp in Sources */, 3CBE0EBD26087F7B003F4F45 /* VisualCache.cpp in Sources */, 3CBE0EBE26087F7B003F4F45 /* Sound.cpp in Sources */, 3C329DDC2B39D896002BC023 /* DoraTag.cpp in Sources */, - 3CF10F992874C81C00940268 /* MeshAttachment.cpp in Sources */, 3CBE0EC426087F7B003F4F45 /* SoundCache.cpp in Sources */, - 3CF10FA32874C81C00940268 /* TranslateTimeline.cpp in Sources */, 3C0FB68E2BF1970C0098E88D /* ModelLoader.cpp in Sources */, 3CBE0EC826087F7B003F4F45 /* nanovg_bgfx.cpp in Sources */, 3CBE0EC926087F7B003F4F45 /* VGNode.cpp in Sources */, 3C1A3BFF272A8820003A2829 /* lcorolib.c in Sources */, + 3C4B3D7E2C06DDE000D778FC /* PathAttachment.cpp in Sources */, 3CA780232AE66FB000B7BADA /* BodyConf.cpp in Sources */, 3CBE0ECA26087F7B003F4F45 /* yuescript.cpp in Sources */, + 3C4B3D922C06DDE000D778FC /* ColorTimeline.cpp in Sources */, 3CA7806B2AE66FB000B7BADA /* MassData.cpp in Sources */, + 3C4B3DDE2C06DDE000D778FC /* InheritTimeline.cpp in Sources */, 3CBE0ECD26087F7B003F4F45 /* ShaderCache.cpp in Sources */, 3CA780592AE66FB000B7BADA /* RevoluteJointConf.cpp in Sources */, 3C7FA3562B688547005A8441 /* zutil.c in Sources */, 3C53E9FD2BEB44B000039640 /* Node.cpp in Sources */, 3CA7805D2AE66FB000B7BADA /* PrismaticJointConf.cpp in Sources */, - 3CF10FDF2874C81C00940268 /* SkeletonJson.cpp in Sources */, 3CBE0ECE26087F7B003F4F45 /* lodepng.cpp in Sources */, 3CBE0ED826087F7B003F4F45 /* PhysicsWorld.cpp in Sources */, 3CBE0EDA26087F7B003F4F45 /* AutoreleasePool.cpp in Sources */, @@ -5408,7 +5435,9 @@ 3C53E9FF2BEB44B000039640 /* LayoutResults.cpp in Sources */, 3CBE0EDE26087F7B003F4F45 /* AINode.cpp in Sources */, 3CA780432AE66FB000B7BADA /* WorldShape.cpp in Sources */, + 3C4B3DAC2C06DDE000D778FC /* PathConstraintMixTimeline.cpp in Sources */, 3CFEA161285B873B002D106F /* m3_core.c in Sources */, + 3C4B3DC02C06DDE000D778FC /* ClippingAttachment.cpp in Sources */, 3C0FB6A02BF1970C0098E88D /* Effekseer.Socket.cpp in Sources */, 3CBE0EDF26087F7B003F4F45 /* tolua_fix.cpp in Sources */, 3C53EA1C2BEB44E800039640 /* Log.cpp in Sources */, @@ -5417,6 +5446,7 @@ 3CBE0EE826087F7B003F4F45 /* Dictionary.cpp in Sources */, 3CBE0EED26087F7B003F4F45 /* PlatformCamera.cpp in Sources */, 3CA780832AE66FB000B7BADA /* Version.cpp in Sources */, + 3C4B3D702C06DDE000D778FC /* TransformConstraintData.cpp in Sources */, 3C6E7FE0272A404900E9F115 /* soloud_freeverbfilter.cpp in Sources */, 3CA7800D2AE66FB000B7BADA /* Simplex.cpp in Sources */, 3C53E9E52BEB442300039640 /* YGNodeLayout.cpp in Sources */, @@ -5433,36 +5463,35 @@ 3C030CCF24CAC2BA0074786E /* Sprite.cpp in Sources */, 3C0FB6FB2BF1970C0098E88D /* EffekseerRenderer.DDSTextureLoader.cpp in Sources */, 3C7FA35F2B688547005A8441 /* crc32.c in Sources */, + 3C4B3D592C06DDE000D778FC /* Log.cpp in Sources */, 3CA780122AE66FB000B7BADA /* WorldJoint.cpp in Sources */, 3C6E8035272A404A00E9F115 /* soloud_fft.cpp in Sources */, 3CFFEC71292F1A7000BC6DA1 /* ImGuiBinding.cpp in Sources */, 3CFEA16E285B873B002D106F /* m3_api_wasi.c in Sources */, - 3CF10FB82874C81C00940268 /* MathUtil.cpp in Sources */, 3C6E8011272A404A00E9F115 /* soloud_speech.cpp in Sources */, - 3CF10F9E2874C81C00940268 /* TransformConstraintTimeline.cpp in Sources */, 3C0FB6AF2BF1970C0098E88D /* Mat43f.cpp in Sources */, 3C6E8049272A404A00E9F115 /* soloud_misc.cpp in Sources */, 3C131FFC21011BB60087154A /* BulletDef.cpp in Sources */, 3C0FB6D12BF1970C0098E88D /* Effekseer.EffectNodeTrack.cpp in Sources */, 3C53EA422BEB456700039640 /* AlignNode.cpp in Sources */, 3C0FB7072BF1970C0098E88D /* EffekseerRenderer.RenderStateBase.cpp in Sources */, - 3CF110002874C81C00940268 /* Skeleton.cpp in Sources */, 3CFEA170285B873B002D106F /* m3_parse.c in Sources */, - 3CF10FC22874C81C00940268 /* Event.cpp in Sources */, 3C0FB6CB2BF1970C0098E88D /* Effekseer.EffectNodeRing.cpp in Sources */, 3C53EA3E2BEB451A00039640 /* AbsoluteLayout.cpp in Sources */, 3C1A3C0C272A8820003A2829 /* lauxlib.c in Sources */, - 3CF10FE42874C81C00940268 /* SkeletonData.cpp in Sources */, + 3C4B3D7F2C06DDE000D778FC /* EventTimeline.cpp in Sources */, 3CFEA164285B873B002D106F /* m3_info.c in Sources */, 3CFEA172285B873B002D106F /* m3_exec.c in Sources */, + 3C4B3D872C06DDE000D778FC /* AnimationStateData.cpp in Sources */, 3C0FB6C32BF1970C0098E88D /* Effekseer.Effect.cpp in Sources */, 3C1A3BE2272A8820003A2829 /* lopcodes.c in Sources */, 3C883B1421E338F500BFD758 /* Content.cpp in Sources */, 3C0FB6DB2BF1970C0098E88D /* Effekseer.InstanceGlobal.cpp in Sources */, - 3CF10FB02874C81C00940268 /* Updatable.cpp in Sources */, + 3C4B3D8F2C06DDE000D778FC /* Json.cpp in Sources */, 3C1A3BDA272A8820003A2829 /* lobject.c in Sources */, 3CFEBDD5269309D5006D9974 /* Bone.cpp in Sources */, 3C030CC924CAC2B90074786E /* Node.cpp in Sources */, + 3C4B3D5D2C06DDE000D778FC /* AttachmentTimeline.cpp in Sources */, 3C0FB6A52BF1970C0098E88D /* Easing.cpp in Sources */, 3CFEA177285B87B8002D106F /* WasmRuntime.cpp in Sources */, 3C6E803F272A404A00E9F115 /* soloud_core_faderops.cpp in Sources */, @@ -5477,20 +5506,16 @@ 3C13200121011BB60087154A /* Face.cpp in Sources */, 3C030CAC24CAC2160074786E /* ML.cpp in Sources */, 3C0FB6BB2BF1970C0098E88D /* Effekseer.Color.cpp in Sources */, - 3CF10FE02874C81C00940268 /* VertexAttachment.cpp in Sources */, 3CBFB70B264376D4006348C8 /* implot.cpp in Sources */, 3C13200421011BB60087154A /* Data.cpp in Sources */, - 3CF10FFE2874C81C00940268 /* RotateTimeline.cpp in Sources */, 3CA7801C2AE66FB000B7BADA /* Sweep.cpp in Sources */, 3C0C7752275742990030BDCD /* ZipUtils.cpp in Sources */, 3CA780482AE66FB000B7BADA /* PolygonShapeConf.cpp in Sources */, 3CEDF7811E83BADB008839A3 /* ParticleCache.cpp in Sources */, 3C6E8037272A404A00E9F115 /* soloud_core_setters.cpp in Sources */, - 3CF10FEA2874C81C00940268 /* Extension.cpp in Sources */, 3CFEBE0826930A26006D9974 /* AnimationConfig.cpp in Sources */, 3CFEA166285B873B002D106F /* m3_api_tracer.c in Sources */, 3C1A3BD2272A8820003A2829 /* llex.c in Sources */, - 3CF10FDA2874C81C00940268 /* Animation.cpp in Sources */, 3CA780622AE66FB000B7BADA /* CodeDumper.cpp in Sources */, 3CA780562AE66FB000B7BADA /* ChainShapeConf.cpp in Sources */, 3C883B1721E338F500BFD758 /* Application.mm in Sources */, @@ -5501,8 +5526,8 @@ 3CFEA15A285B873B002D106F /* m3_api_uvwasi.c in Sources */, 3C6E8003272A404900E9F115 /* soloud_sfxr.cpp in Sources */, 3C6E8027272A404A00E9F115 /* soloud_fft_lut.cpp in Sources */, + 3C4B3DA92C06DDE000D778FC /* Timeline.cpp in Sources */, 3C7FA34F2B688547005A8441 /* gzclose.c in Sources */, - 3CF10FC82874C81C00940268 /* RegionAttachment.cpp in Sources */, 3C0FB6B12BF1970C0098E88D /* Mat44f.cpp in Sources */, 3C883B1321E338F500BFD758 /* Object.cpp in Sources */, 3C25B871257A7F8B002DD8E1 /* yue_compiler.cpp in Sources */, @@ -5515,20 +5540,24 @@ 3C0FB71B2BF1970C0098E88D /* bgfxrenderer.cpp in Sources */, 3C0FB6F72BF1970C0098E88D /* Effekseer.WorkerThread.cpp in Sources */, 3CFEBE0726930A26006D9974 /* DisplayData.cpp in Sources */, + 3C4B3D992C06DDE000D778FC /* RotateTimeline.cpp in Sources */, 3C8CD74C27268AE70045B362 /* RenderTarget.cpp in Sources */, 3C6E8009272A404900E9F115 /* resonator.cpp in Sources */, 3CFEBDD4269309D5006D9974 /* Slot.cpp in Sources */, - 3CF10FC02874C81C00940268 /* Skin.cpp in Sources */, 3CA780642AE66FB000B7BADA /* VelocityConstraint.cpp in Sources */, 3CFEA15E285B873B002D106F /* m3_function.c in Sources */, + 3C4B3DCF2C06DDE000D778FC /* RegionAttachment.cpp in Sources */, + 3C4B3DB12C06DDE000D778FC /* TransformConstraintTimeline.cpp in Sources */, + 3C4B3DAD2C06DDE000D778FC /* SpineObject.cpp in Sources */, + 3C4B3D672C06DDE000D778FC /* Atlas.cpp in Sources */, 3C47CF1428A38C910011F3E1 /* Cache.cpp in Sources */, - 3CF10FEE2874C81C00940268 /* IkConstraint.cpp in Sources */, 3CA7803E2AE66FB000B7BADA /* WheelJointConf.cpp in Sources */, 3C0FB7032BF1970C0098E88D /* EffekseerRenderer.Renderer_Impl.cpp in Sources */, 3C8805721E5ED18F00B52D4B /* atlas.cpp in Sources */, 3C6577481ECC2C9D00C5FB09 /* Keyboard.cpp in Sources */, 3CFEBE1726930A3A006D9974 /* DataParser.cpp in Sources */, 3CE9509D20F33DA9002FFC18 /* stb.cpp in Sources */, + 3C4B3DD32C06DDE000D778FC /* Updatable.cpp in Sources */, 3C53EA382BEB451A00039640 /* PixelGrid.cpp in Sources */, 3C0FB7192BF1970C0098E88D /* VertexBuffer.cpp in Sources */, 3C6E802B272A404A00E9F115 /* soloud_bus.cpp in Sources */, @@ -5536,6 +5565,7 @@ 3CB2116325C63C3A00CEA033 /* imgui_tables.cpp in Sources */, 3C6E800F272A404900E9F115 /* darray.cpp in Sources */, 3CA7802E2AE66FB000B7BADA /* RopeJointConf.cpp in Sources */, + 3C4B3D9D2C06DDE000D778FC /* PhysicsConstraint.cpp in Sources */, 3C1A3BE8272A8820003A2829 /* lmathlib.c in Sources */, 3C883B1D21E338F500BFD758 /* VGRender.cpp in Sources */, 3CB7307E1E80343E006DFA18 /* Sensor.cpp in Sources */, @@ -5548,13 +5578,14 @@ 3C1A3C08272A8820003A2829 /* lutf8lib.c in Sources */, 3C030CCE24CAC2BA0074786E /* Model.cpp in Sources */, 3C4BC6641E17F1B500292200 /* tolua_event.cpp in Sources */, + 3C4B3D972C06DDE000D778FC /* SkeletonBounds.cpp in Sources */, 3C0FB6CF2BF1970C0098E88D /* Effekseer.EffectNodeSprite.cpp in Sources */, 3C53E9DC2BEB442300039640 /* YGConfig.cpp in Sources */, 3C883B1C21E338F500BFD758 /* Director.cpp in Sources */, + 3C4B3DC12C06DDE000D778FC /* IkConstraintData.cpp in Sources */, 3CA780762AE66FB000B7BADA /* StatsResource.cpp in Sources */, 3C5399F62998DEF800E9125C /* ljson.c in Sources */, 3C4BC6681E17F1B500292200 /* tolua_push.cpp in Sources */, - 3CF10FC62874C81C00940268 /* PathConstraintData.cpp in Sources */, 3CD3284A1E4C431B0036906C /* TouchDispather.cpp in Sources */, 3C0FB6EF2BF1970C0098E88D /* Effekseer.ResourceManager.cpp in Sources */, 3CA7807C2AE66FB000B7BADA /* ConstraintSolverConf.cpp in Sources */, @@ -5567,33 +5598,32 @@ 3C20F3E6248F774600BBA830 /* AtlasCache.cpp in Sources */, 3C6E800B272A404900E9F115 /* klatt.cpp in Sources */, 3C6E8031272A404A00E9F115 /* soloud.cpp in Sources */, + 3C4B3DCD2C06DDE000D778FC /* PhysicsConstraintData.cpp in Sources */, + 3C4B3DC52C06DDE000D778FC /* Attachment.cpp in Sources */, 3CFEBE3C26930AF9006D9974 /* DragonBoneCache.cpp in Sources */, 3C59730B1E7F74E900BFD00F /* ModelCache.cpp in Sources */, 3CE994672AFB1CFA0073A973 /* Controller.cpp in Sources */, 3C6E8033272A404A00E9F115 /* soloud_audiosource.cpp in Sources */, 3C0FB6852BF1970C0098E88D /* Effekseer.CompiledMaterial.cpp in Sources */, 3CA780182AE66FB000B7BADA /* SeparationScenario.cpp in Sources */, + 3C4B3DB92C06DDE000D778FC /* PathConstraint.cpp in Sources */, 3C0FB6C12BF1970C0098E88D /* Effekseer.DefaultFile.cpp in Sources */, + 3C4B3DDB2C06DDE000D778FC /* MeshAttachment.cpp in Sources */, 3CB410291E05B0C500A8804D /* Slice.cpp in Sources */, - 3CF10FD82874C81C00940268 /* ShearTimeline.cpp in Sources */, 3C4BC6661E17F1B500292200 /* tolua_is.cpp in Sources */, 3CB7307C1E80343E006DFA18 /* Joint.cpp in Sources */, 3C25B873257A7F8B002DD8E1 /* yue_parser.cpp in Sources */, 3CA780542AE66FB000B7BADA /* Distance.cpp in Sources */, - 3CF10FBE2874C81C00940268 /* SlotData.cpp in Sources */, 3C6E7FD9272A404900E9F115 /* soloud_dcremovalfilter.cpp in Sources */, 3CAA2D2626155F2C004443A6 /* Database.cpp in Sources */, 3C1A3BDE272A8820003A2829 /* lzio.c in Sources */, - 3CF10FD02874C81C00940268 /* Slot.cpp in Sources */, 3CAA2D1726155DB3004443A6 /* Transaction.cpp in Sources */, - 3CF10FA62874C81C00940268 /* RTTI.cpp in Sources */, 3C53E9E62BEB442300039640 /* YGEnums.cpp in Sources */, 3CF00E39258B475A00898F4B /* SVGCache.cpp in Sources */, 3C131FFB21011BB60087154A /* Bullet.cpp in Sources */, 3CA780882AE66FB000B7BADA /* StepConf.cpp in Sources */, 3C0FB7132BF1970C0098E88D /* GraphicsDeviceCPU.cpp in Sources */, 3CBFB70C264376D4006348C8 /* implot_items.cpp in Sources */, - 3CF10FF22874C81C00940268 /* IkConstraintData.cpp in Sources */, 3C53EA342BEB451A00039640 /* Baseline.cpp in Sources */, 3C1A3BDC272A8820003A2829 /* lbaselib.c in Sources */, 3C41D60621490BE6003FDDFE /* imgui_demo.cpp in Sources */, @@ -5601,49 +5631,54 @@ 3C10706A1E13A2D800EB8C7A /* Async.cpp in Sources */, 3C0FB6B92BF1970C0098E88D /* VectorFieldLoader.cpp in Sources */, 3CA780942AE66FB000B7BADA /* StackAllocator.cpp in Sources */, + 3C4B3D5F2C06DDE000D778FC /* SkeletonClipping.cpp in Sources */, 3C5973001E7F74CB00BFD00F /* ModelDef.cpp in Sources */, 3C0FB6812BF1970C0098E88D /* ForceFields.cpp in Sources */, 3CFEBE1626930A3A006D9974 /* BinaryDataParser.cpp in Sources */, 3CA780062AE66FB000B7BADA /* EdgeShapeConf.cpp in Sources */, 3C0FB6E92BF1970C0098E88D /* Effekseer.Random.cpp in Sources */, + 3C4B3DC92C06DDE000D778FC /* MathUtil.cpp in Sources */, + 3C4B3DBD2C06DDE000D778FC /* LinkedMesh.cpp in Sources */, 3CB7307B1E80343E006DFA18 /* DebugDraw.cpp in Sources */, 3C883B1E21E338F500BFD758 /* View.cpp in Sources */, 3C41D60521490BE6003FDDFE /* imgui_widgets.cpp in Sources */, - 3CF110022874C81C00940268 /* TransformConstraintData.cpp in Sources */, 3C1A3BF6272A8820003A2829 /* lvm.c in Sources */, 3C0FB6932BF1970C0098E88D /* SplineGenerator.cpp in Sources */, + 3C4B3DA72C06DDE000D778FC /* PathConstraintSpacingTimeline.cpp in Sources */, 3C53EA212BEB450000039640 /* Config.cpp in Sources */, 3C0FB6E52BF1970C0098E88D /* Effekseer.Matrix43.cpp in Sources */, 3CA1B7F51EC16ED300BC58FF /* SAXParser.cpp in Sources */, 3C1A3BF0272A8820003A2829 /* loslib.c in Sources */, 3C0FB70D2BF1970C0098E88D /* EffekseerRenderer.SpriteRendererBase.cpp in Sources */, + 3C4B3DA12C06DDE000D778FC /* PointAttachment.cpp in Sources */, 3C0FB6C52BF1970C0098E88D /* Effekseer.EffectNode.cpp in Sources */, 3CA780782AE66FB000B7BADA /* MemoryResource.cpp in Sources */, 3C4BC6571E17F17100292200 /* Geometry.cpp in Sources */, 3CFEBDC5269309C7006D9974 /* Animation.cpp in Sources */, 3C7FA35D2B688547005A8441 /* gzwrite.c in Sources */, 3CA7802C2AE66FB000B7BADA /* DistanceProxy.cpp in Sources */, + 3C4B3DB72C06DDE000D778FC /* BoundingBoxAttachment.cpp in Sources */, 3CD6C2A51E30C1F500B36FFC /* Effect.cpp in Sources */, 3CFEA156285B873B002D106F /* m3_compile.c in Sources */, 3C41D60421490BE6003FDDFE /* imgui_draw.cpp in Sources */, 3CFEBE0526930A26006D9974 /* CanvasData.cpp in Sources */, 3C6E8047272A404A00E9F115 /* soloud_core_3d.cpp in Sources */, + 3C4B3D8D2C06DDE000D778FC /* Animation.cpp in Sources */, 3CA7805E2AE66FB000B7BADA /* WorldMisc.cpp in Sources */, 3C0FB6B52BF1970C0098E88D /* Effekseer.CustomAllocator.cpp in Sources */, + 3C4B3DAF2C06DDE000D778FC /* Extension.cpp in Sources */, + 3C4B3DC32C06DDE000D778FC /* PathConstraintPositionTimeline.cpp in Sources */, 3C6E801B272A404A00E9F115 /* soloud_noise.cpp in Sources */, 3C1A3C00272A8820003A2829 /* ltable.c in Sources */, 3CA7802A2AE66FB000B7BADA /* DynamicTree.cpp in Sources */, 3C6E7FED272A404900E9F115 /* soloud_vic.cpp in Sources */, 3CA780382AE66FB000B7BADA /* GearJointConf.cpp in Sources */, - 3CF110042874C81C00940268 /* BoneData.cpp in Sources */, - 3CF10FB22874C81C00940268 /* LinkedMesh.cpp in Sources */, 3C6E802D272A404A00E9F115 /* soloud_fader.cpp in Sources */, 3C030CA824CAC1DC0074786E /* DecisionTree.cpp in Sources */, - 3CF10F962874C81C00940268 /* PathConstraint.cpp in Sources */, 3CA780322AE66FB000B7BADA /* WorldContact.cpp in Sources */, 3CA780402AE66FB000B7BADA /* WeldJointConf.cpp in Sources */, 3C88056F1E5ED13800B52D4B /* font_manager.cpp in Sources */, - 3CF110082874C81C00940268 /* PathConstraintPositionTimeline.cpp in Sources */, + 3C4B3D9F2C06DDE000D778FC /* DrawOrderTimeline.cpp in Sources */, 3C0FB7152BF1970C0098E88D /* ModelLoader.cpp in Sources */, 3C6E8045272A404A00E9F115 /* soloud_core_getters.cpp in Sources */, 3C0FB6992BF1970C0098E88D /* Effekseer.Client.cpp in Sources */, @@ -5652,67 +5687,76 @@ 3CE355621E1B7A6300268A19 /* LuaHandler.cpp in Sources */, 3C6E7FF3272A404900E9F115 /* dr_impl.cpp in Sources */, 3CA780862AE66FB000B7BADA /* DynamicMemory.cpp in Sources */, + 3C4B3D5B2C06DDE000D778FC /* Slot.cpp in Sources */, 3C0FB70B2BF1970C0098E88D /* EffekseerRenderer.RingRendererBase.cpp in Sources */, + 3C4B3D712C06DDE000D778FC /* TranslateTimeline.cpp in Sources */, + 3C4B3DD92C06DDE000D778FC /* PathConstraintData.cpp in Sources */, + 3C4B3DB52C06DDE000D778FC /* BoneData.cpp in Sources */, 3CA780262AE66FB000B7BADA /* AABB.cpp in Sources */, 3CA780342AE66FB000B7BADA /* WorldBody.cpp in Sources */, 3C15202C1E762A59001BC057 /* Action.cpp in Sources */, 3C1A3BEA272A8820003A2829 /* liolib.c in Sources */, 3C13200221011BB60087154A /* Unit.cpp in Sources */, 3CA7800E2AE66FB000B7BADA /* Joint.cpp in Sources */, - 3CF1100E2874C81C00940268 /* SkeletonBounds.cpp in Sources */, - 3CF10FBC2874C81C00940268 /* AttachmentLoader.cpp in Sources */, 3C030CD324CAC2BA0074786E /* Menu.cpp in Sources */, - 3CF10FAE2874C81C00940268 /* AttachmentTimeline.cpp in Sources */, 3CA7806E2AE66FB000B7BADA /* DistanceConf.cpp in Sources */, 3C1A3BCC272A8820003A2829 /* lctype.c in Sources */, + 3C4B3D892C06DDE000D778FC /* Sequence.cpp in Sources */, 3CFEBDE2269309F4006D9974 /* EventObject.cpp in Sources */, 3CA780702AE66FB000B7BADA /* PointStates.cpp in Sources */, 3C1D40FC2703001F00202534 /* TealCompiler.cpp in Sources */, - 3CF10FE82874C81C00940268 /* SpineObject.cpp in Sources */, 3C6E803B272A404A00E9F115 /* soloud_filter.cpp in Sources */, 3C6E7FD3272A404900E9F115 /* soloud_echofilter.cpp in Sources */, 3C6E8021272A404A00E9F115 /* soloud_openmpt_dll.c in Sources */, 3CFEBE3F26930B15006D9974 /* DragonBone.cpp in Sources */, + 3C4B3D9B2C06DDE000D778FC /* Event.cpp in Sources */, + 3C4B3D832C06DDE000D778FC /* CurveTimeline.cpp in Sources */, 3C7FA3572B688547005A8441 /* trees.c in Sources */, + 3C4B3D6D2C06DDE000D778FC /* Skin.cpp in Sources */, 3C13200521011BB60087154A /* AI.cpp in Sources */, 3CA780362AE66FB000B7BADA /* TimeOfImpact.cpp in Sources */, 3C6E8023272A404A00E9F115 /* soloud_openmpt.cpp in Sources */, 3C0FB6B32BF1970C0098E88D /* Utils.cpp in Sources */, - 3CF10FF62874C81C00940268 /* PathConstraintMixTimeline.cpp in Sources */, 3CA1B7F61EC16ED300BC58FF /* tinyxml2.cpp in Sources */, - 3CF10FF82874C81C00940268 /* ColorTimeline.cpp in Sources */, 3CA1B7EF1EC16E9F00BC58FF /* LuaFromXml.cpp in Sources */, 3C7FA36B2B688560005A8441 /* gzlib.c in Sources */, 3C6D37251E27D9CE008C92E8 /* TextureCache.cpp in Sources */, 3CA780282AE66FB000B7BADA /* ContactImpulsesList.cpp in Sources */, 3CFEA158285B873B002D106F /* m3_code.c in Sources */, + 3C4B3DD72C06DDE000D778FC /* ConstraintData.cpp in Sources */, 3CB7307A1E80343E006DFA18 /* BodyDef.cpp in Sources */, + 3C4B3DBB2C06DDE000D778FC /* SkeletonJson.cpp in Sources */, + 3C4B3DCB2C06DDE000D778FC /* VertexAttachment.cpp in Sources */, + 3C4B3D732C06DDE000D778FC /* EventData.cpp in Sources */, 3C1A3C02272A8820003A2829 /* lparser.c in Sources */, 3C0FB70F2BF1970C0098E88D /* EffekseerRenderer.TGATextureLoader.cpp in Sources */, 3CFEA15C285B873B002D106F /* m3_module.c in Sources */, + 3C4B3D692C06DDE000D778FC /* ScaleTimeline.cpp in Sources */, + 3C4B3D932C06DDE000D778FC /* SkeletonBinary.cpp in Sources */, 3C6E7FF9272A404900E9F115 /* chipplayer.cpp in Sources */, 3C131FFD21011BB60087154A /* UnitAction.cpp in Sources */, 3C1A3BEE272A8820003A2829 /* ldblib.c in Sources */, - 3CF10F9C2874C81C00940268 /* ClippingAttachment.cpp in Sources */, 3C6E8017272A404A00E9F115 /* sid.cpp in Sources */, 3C6E8001272A404900E9F115 /* sndrender.cpp in Sources */, 3C0FB6A12BF1970C0098E88D /* CurlNoise.cpp in Sources */, 3CA780682AE66FB000B7BADA /* World.cpp in Sources */, - 3CF10FA42874C81C00940268 /* Triangulator.cpp in Sources */, 3C6E802F272A404A00E9F115 /* soloud_file.cpp in Sources */, 3CA7801A2AE66FB000B7BADA /* JointConf.cpp in Sources */, + 3C4B3DA32C06DDE000D778FC /* AttachmentLoader.cpp in Sources */, 3C0AD7BC1E0CE95F0033AD59 /* EventQueue.cpp in Sources */, 3C0AD7BB1E0CE95F0033AD59 /* Event.cpp in Sources */, 3CB7307D1E80343E006DFA18 /* JointDef.cpp in Sources */, - 3CF10FDC2874C81C00940268 /* ConstraintData.cpp in Sources */, + 3C4B3D772C06DDE000D778FC /* TransformConstraint.cpp in Sources */, 3C6E8039272A404A00E9F115 /* soloud_core_voiceops.cpp in Sources */, - 3CF10FFA2874C81C00940268 /* Json.cpp in Sources */, 3C0FB6F32BF1970C0098E88D /* Effekseer.Vector2D.cpp in Sources */, 3C41D60321490BE6003FDDFE /* imgui.cpp in Sources */, 3CD6C2A81E30C22300B36FFC /* Common.cpp in Sources */, + 3C4B3D632C06DDE000D778FC /* IkConstraint.cpp in Sources */, 3CE950A120F33DD6002FFC18 /* Builtin.cpp in Sources */, 3CA7801E2AE66FB000B7BADA /* Math.cpp in Sources */, 3C0FB6E72BF1970C0098E88D /* Effekseer.Matrix44.cpp in Sources */, + 3C4B3D752C06DDE000D778FC /* Skeleton.cpp in Sources */, + 3C4B3DD52C06DDE000D778FC /* PhysicsConstraintTimeline.cpp in Sources */, 3C0FB6ED2BF1970C0098E88D /* Effekseer.Resource.cpp in Sources */, 3C0FB6832BF1970C0098E88D /* Effekseer.EfkEfcFactory.cpp in Sources */, 3C1A3BF8272A8820003A2829 /* lstring.c in Sources */, @@ -5726,20 +5770,17 @@ 3C0FB6BF2BF1970C0098E88D /* Effekseer.DefaultEffectLoader.cpp in Sources */, 3CA7800A2AE66FB000B7BADA /* MotorJointConf.cpp in Sources */, 3C53E9E22BEB442300039640 /* YGNodeStyle.cpp in Sources */, - 3CF10FCC2874C81C00940268 /* CurveTimeline.cpp in Sources */, - 3CF10FB42874C81C00940268 /* Sequence.cpp in Sources */, 3CFEBE0C26930A26006D9974 /* TextureAtlasData.cpp in Sources */, 3C1A3BD0272A8820003A2829 /* ldebug.c in Sources */, 3C6E7FD1272A404900E9F115 /* soloud_bassboostfilter.cpp in Sources */, 3C53EA1D2BEB44E800039640 /* AssertFatal.cpp in Sources */, 3C0FB6DD2BF1970C0098E88D /* Effekseer.InstanceGroup.cpp in Sources */, - 3CF10FAA2874C81C00940268 /* BoundingBoxAttachment.cpp in Sources */, 3C883B1821E338F500BFD758 /* Application.cpp in Sources */, - 3CF10FFC2874C81C00940268 /* SkeletonBinary.cpp in Sources */, 3C0FB6AD2BF1970C0098E88D /* Rotation.cpp in Sources */, 3C25B874257A7F8B002DD8E1 /* parser.cpp in Sources */, 3C7FA3672B688547005A8441 /* deflate.c in Sources */, 3C5972FE1E7F74CB00BFD00F /* Animation.cpp in Sources */, + 3C4B3DC72C06DDE000D778FC /* SkeletonData.cpp in Sources */, 3C6E8007272A404900E9F115 /* tts.cpp in Sources */, 3C0FB6F52BF1970C0098E88D /* Effekseer.Vector3D.cpp in Sources */, 3CA780462AE66FB000B7BADA /* Shape.cpp in Sources */, @@ -5753,12 +5794,12 @@ 3C1A3C04272A8820003A2829 /* lcode.c in Sources */, 3CA7807A2AE66FB000B7BADA /* Contact.cpp in Sources */, 3CDED0351E52A2E600B5E578 /* utf8.cpp in Sources */, - 3CF110062874C81C00940268 /* PathAttachment.cpp in Sources */, + 3C4B3D952C06DDE000D778FC /* SequenceTimeline.cpp in Sources */, 3C5973091E7F74E900BFD00F /* ClipCache.cpp in Sources */, 3C030CCB24CAC2BA0074786E /* Playable.cpp in Sources */, + 3C4B3D852C06DDE000D778FC /* AtlasAttachmentLoader.cpp in Sources */, 3C7FA3592B688547005A8441 /* compress.c in Sources */, 3C6E8043272A404A00E9F115 /* soloud_thread.cpp in Sources */, - 3CF110102874C81C00940268 /* TextureLoader.cpp in Sources */, 3CA7808E2AE66FB000B7BADA /* Island.cpp in Sources */, 3CE534761E5A9BD500F017AE /* Singleton.cpp in Sources */, 3C53EA022BEB44C100039640 /* event.cpp in Sources */, @@ -5771,21 +5812,21 @@ 3CA780162AE66FB000B7BADA /* TargetJointConf.cpp in Sources */, 3C6E803D272A404A00E9F115 /* soloud_queue.cpp in Sources */, 3C0FB6EB2BF1970C0098E88D /* Effekseer.RectF.cpp in Sources */, + 3C4B3DB32C06DDE000D778FC /* Triangulator.cpp in Sources */, 3CA780242AE66FB000B7BADA /* DiskShapeConf.cpp in Sources */, 3CFEA162285B873B002D106F /* m3_api_libc.c in Sources */, 3C0FB6C92BF1970C0098E88D /* Effekseer.EffectNodeRibbon.cpp in Sources */, + 3C4B3D652C06DDE000D778FC /* RTTI.cpp in Sources */, 3C1FDB9A1E6041C800F38A26 /* Debug.cpp in Sources */, 3C1A3BE0272A8820003A2829 /* lgc.c in Sources */, + 3C4B3D792C06DDE000D778FC /* IkConstraintTimeline.cpp in Sources */, 3CA7804A2AE66FB000B7BADA /* PulleyJointConf.cpp in Sources */, - 3CF1100A2874C81C00940268 /* AnimationState.cpp in Sources */, 3C6E7FD7272A404900E9F115 /* soloud_robotizefilter.cpp in Sources */, 3C0FB6DF2BF1970C0098E88D /* Effekseer.InternalScript.cpp in Sources */, 3C0FB6D72BF1970C0098E88D /* Effekseer.InstanceChunk.cpp in Sources */, 3C131FF921011BB60087154A /* PlatformWorld.cpp in Sources */, 3CFEBE0926930A26006D9974 /* UserData.cpp in Sources */, 3C7FA35B2B688547005A8441 /* uncompr.c in Sources */, - 3CF10FA02874C81C00940268 /* PathConstraintSpacingTimeline.cpp in Sources */, - 3CF10F9A2874C81C00940268 /* SequenceTimeline.cpp in Sources */, 3C6E7FF1272A404900E9F115 /* soloud_wavstream.cpp in Sources */, 3CFEBDC2269309C7006D9974 /* WorldClock.cpp in Sources */, 3C1A3BF2272A8820003A2829 /* ltablib.c in Sources */, @@ -5793,7 +5834,6 @@ 3CA7808A2AE66FB000B7BADA /* StepStats.cpp in Sources */, 3C1A3BFC272A8820003A2829 /* linit.c in Sources */, 3C0FB6892BF1970C0098E88D /* Effekseer.MaterialFile.cpp in Sources */, - 3CF10FF02874C81C00940268 /* SkeletonClipping.cpp in Sources */, 3C0FB6A72BF1970C0098E88D /* Effekseer.Parameters.cpp in Sources */, 3CFEBE0E26930A26006D9974 /* DragonBonesData.cpp in Sources */, 3C6E7FFF272A404900E9F115 /* soloud_ay.cpp in Sources */, @@ -5813,29 +5853,23 @@ 3C883B1521E338F500BFD758 /* Content.mm in Sources */, 3C6E7FEF272A404900E9F115 /* stb_vorbis.c in Sources */, 3C814F5D259C75CF0009DEC9 /* Value.cpp in Sources */, - 3CF10FD22874C81C00940268 /* Atlas.cpp in Sources */, 3C0FB6AB2BF1970C0098E88D /* KillRules.cpp in Sources */, 3C0AD7CE1E0CE9990033AD59 /* LuaManual.cpp in Sources */, 3C883B1921E338F500BFD758 /* Scheduler.cpp in Sources */, 3C1A3C0A272A8820003A2829 /* ldo.c in Sources */, - 3CF10FCA2874C81C00940268 /* AnimationStateData.cpp in Sources */, 3CA780742AE66FB000B7BADA /* PoolMemoryResource.cpp in Sources */, - 3CF10FEC2874C81C00940268 /* DrawOrderTimeline.cpp in Sources */, 3C0FB6912BF1970C0098E88D /* ProceduralModelGenerator.cpp in Sources */, 3C6E8041272A404A00E9F115 /* soloud_core_basicops.cpp in Sources */, 3C0AD7CC1E0CE9990033AD59 /* LuaEngine.cpp in Sources */, 3CE3456C20F73AB700D7F60C /* MemoryPool.cpp in Sources */, 3C0FB7052BF1970C0098E88D /* EffekseerRenderer.Renderer.cpp in Sources */, 3CA780502AE66FB000B7BADA /* ConvexHull.cpp in Sources */, - 3CF10FA82874C81C00940268 /* Log.cpp in Sources */, 3C0FB69B2BF1970C0098E88D /* Effekseer.Server.cpp in Sources */, 3C15682920E4B7D7004F8785 /* format.cpp in Sources */, 3C0AD7BD1E0CE95F0033AD59 /* EventType.cpp in Sources */, 3CAA2D1526155DB3004443A6 /* Backup.cpp in Sources */, 3C1A3BD4272A8820003A2829 /* lmem.c in Sources */, 3C33A3CA2A3AF3C300E60A14 /* YarnCompiler.cpp in Sources */, - 3CF10FB62874C81C00940268 /* EventTimeline.cpp in Sources */, - 3CF10FBA2874C81C00940268 /* PointAttachment.cpp in Sources */, 3C0AD7CB1E0CE9990033AD59 /* LuaCode.cpp in Sources */, 3CA780102AE66FB000B7BADA /* MultiShapeConf.cpp in Sources */, 3CFEA16A285B873B002D106F /* m3_env.c in Sources */, @@ -5843,21 +5877,21 @@ 3C6E801D272A404A00E9F115 /* soloud_monotone.cpp in Sources */, 3C0FB6BD2BF1970C0098E88D /* Effekseer.CurveLoader.cpp in Sources */, 3C0FB7012BF1970C0098E88D /* EffekseerRenderer.PngTextureLoader.cpp in Sources */, + 3C4B3D8B2C06DDE000D778FC /* TextureLoader.cpp in Sources */, 3C6E8015272A404A00E9F115 /* soloud_tedsid.cpp in Sources */, 3C030CD124CAC2BA0074786E /* DrawNode.cpp in Sources */, 3C030CCD24CAC2BA0074786E /* Spine.cpp in Sources */, 3CA7803C2AE66FB000B7BADA /* Body.cpp in Sources */, - 3CF10FC42874C81C00940268 /* IkConstraintTimeline.cpp in Sources */, 3C6E8025272A404A00E9F115 /* soloud_core_filterops.cpp in Sources */, - 3CF10FAC2874C81C00940268 /* EventData.cpp in Sources */, + 3C4B3D812C06DDE000D778FC /* SlotData.cpp in Sources */, + 3C4B3D6B2C06DDE000D778FC /* ShearTimeline.cpp in Sources */, 3C131FFE21011BB60087154A /* Define.cpp in Sources */, 3C1A3BD8272A8820003A2829 /* ldump.c in Sources */, - 3CF10FD42874C81C00940268 /* TransformConstraint.cpp in Sources */, - 3CF10FF42874C81C00940268 /* AtlasAttachmentLoader.cpp in Sources */, 3C883B1B21E338F500BFD758 /* Renderer.cpp in Sources */, 3C1A3BCE272A8820003A2829 /* lundump.c in Sources */, 3C0FB6A92BF1970C0098E88D /* GpuParticlesParameter.cpp in Sources */, 3C853F8A28E3ED8A0012C0D0 /* Test.cpp in Sources */, + 3C4B3D7B2C06DDE000D778FC /* Bone.cpp in Sources */, 3C53E9DE2BEB442300039640 /* YGValue.cpp in Sources */, 3C6E804D272A40B400E9F115 /* sqlite3.c in Sources */, 3CAA2D1A26155DB3004443A6 /* Statement.cpp in Sources */, @@ -5867,7 +5901,6 @@ 3CA7804E2AE66FB000B7BADA /* PositionSolverManifold.cpp in Sources */, 3C0FB6E12BF1970C0098E88D /* Effekseer.IntrusiveList.cpp in Sources */, 3C0FB7112BF1970C0098E88D /* EffekseerRenderer.TrackRendererBase.cpp in Sources */, - 3CF10FE62874C81C00940268 /* ScaleTimeline.cpp in Sources */, 3C13200321011BB60087154A /* VisualCache.cpp in Sources */, 3C73E45B21B02625004E5731 /* Sound.cpp in Sources */, 3C1A3BF4272A8820003A2829 /* lapi.c in Sources */, @@ -5875,6 +5908,7 @@ 3C01B6C21E96433600A0CC1C /* SoundCache.cpp in Sources */, 3C41D61021490CFB003FDDFE /* nanovg_bgfx.cpp in Sources */, 3C53EA3C2BEB451A00039640 /* Cache.cpp in Sources */, + 3C4B3D612C06DDE000D778FC /* DeformTimeline.cpp in Sources */, 3C030CD024CAC2BA0074786E /* VGNode.cpp in Sources */, 3C6E7FF7272A404900E9F115 /* sndchip.cpp in Sources */, 3CFEA16C285B873B002D106F /* m3_bind.c in Sources */, @@ -5890,9 +5924,7 @@ 3CA780142AE66FB000B7BADA /* FrictionJointConf.cpp in Sources */, 3C28C0A22772CFE4007FC76E /* Grid.cpp in Sources */, 3CA7803A2AE66FB000B7BADA /* AabbTreeWorld.cpp in Sources */, - 3CF10FE22874C81C00940268 /* Timeline.cpp in Sources */, 3C6D37291E27DA09008C92E8 /* lodepng.cpp in Sources */, - 3CF1100C2874C81C00940268 /* DeformTimeline.cpp in Sources */, 3CBFB70A264376D4006348C8 /* implot_demo.cpp in Sources */, 3C1A3BEC272A8820003A2829 /* lstrlib.c in Sources */, 3CFEBE1826930A3A006D9974 /* JSONDataParser.cpp in Sources */, @@ -5901,11 +5933,10 @@ 3CFEBDD8269309D5006D9974 /* Armature.cpp in Sources */, 3C0FB6FF2BF1970C0098E88D /* EffekseerRenderer.ModelRendererBase.cpp in Sources */, 3CFEBDDE269309E6006D9974 /* BaseObject.cpp in Sources */, + 3C4B3DD12C06DDE000D778FC /* AnimationState.cpp in Sources */, 3CABB25A21199C0000737278 /* PhysicsWorld.cpp in Sources */, 3CAA2D1926155DB3004443A6 /* Exception.cpp in Sources */, - 3CF10FCE2874C81C00940268 /* Attachment.cpp in Sources */, 3C883B1621E338F500BFD758 /* AutoreleasePool.cpp in Sources */, - 3CF10FD62874C81C00940268 /* Bone.cpp in Sources */, 3C1A3C06272A8820003A2829 /* ltm.c in Sources */, 3CFEBDD3269309D5006D9974 /* Constraint.cpp in Sources */, 3C329DDB2B39D896002BC023 /* DoraTag.cpp in Sources */, @@ -5914,11 +5945,12 @@ 3C6E7FE1272A404900E9F115 /* soloud_biquadresonantfilter.cpp in Sources */, 3C0FB68D2BF1970C0098E88D /* ModelLoader.cpp in Sources */, 3CCEDD4E1E1D58D500F32295 /* Array.cpp in Sources */, - 3CF10F982874C81C00940268 /* MeshAttachment.cpp in Sources */, - 3CF10FA22874C81C00940268 /* TranslateTimeline.cpp in Sources */, + 3C4B3D7D2C06DDE000D778FC /* PathAttachment.cpp in Sources */, 3CA780222AE66FB000B7BADA /* BodyConf.cpp in Sources */, 3CFEBDDD269309E6006D9974 /* DragonBones.cpp in Sources */, + 3C4B3D912C06DDE000D778FC /* ColorTimeline.cpp in Sources */, 3CA7806A2AE66FB000B7BADA /* MassData.cpp in Sources */, + 3C4B3DDD2C06DDE000D778FC /* InheritTimeline.cpp in Sources */, 3CFEBE0D26930A26006D9974 /* SkinData.cpp in Sources */, 3CA780582AE66FB000B7BADA /* RevoluteJointConf.cpp in Sources */, 3C7FA3552B688547005A8441 /* zutil.c in Sources */, @@ -5926,7 +5958,6 @@ 3CA7805C2AE66FB000B7BADA /* PrismaticJointConf.cpp in Sources */, 3CFEBE0F26930A26006D9974 /* AnimationData.cpp in Sources */, 3C1A3BFE272A8820003A2829 /* lcorolib.c in Sources */, - 3CF10FDE2874C81C00940268 /* SkeletonJson.cpp in Sources */, 3C030CCA24CAC2B90074786E /* Particle.cpp in Sources */, 3C0FB6D92BF1970C0098E88D /* Effekseer.InstanceContainer.cpp in Sources */, 3C0FB68B2BF1970C0098E88D /* Model.cpp in Sources */, @@ -5935,7 +5966,9 @@ 3C53E9FE2BEB44B000039640 /* LayoutResults.cpp in Sources */, 3CB730821E80344C006DFA18 /* Dictionary.cpp in Sources */, 3CA780422AE66FB000B7BADA /* WorldShape.cpp in Sources */, + 3C4B3DAB2C06DDE000D778FC /* PathConstraintMixTimeline.cpp in Sources */, 3CFEBE0A26930A26006D9974 /* ArmatureData.cpp in Sources */, + 3C4B3DBF2C06DDE000D778FC /* ClippingAttachment.cpp in Sources */, 3C0FB69F2BF1970C0098E88D /* Effekseer.Socket.cpp in Sources */, 3CFEA160285B873B002D106F /* m3_core.c in Sources */, 3C53EA1B2BEB44E800039640 /* Log.cpp in Sources */, @@ -5944,6 +5977,7 @@ 3CFEBE0626930A26006D9974 /* ConstraintData.cpp in Sources */, 3C13200021011BB60087154A /* PlatformCamera.cpp in Sources */, 3CA780822AE66FB000B7BADA /* Version.cpp in Sources */, + 3C4B3D6F2C06DDE000D778FC /* TransformConstraintData.cpp in Sources */, 3C6E7FDF272A404900E9F115 /* soloud_freeverbfilter.cpp in Sources */, 3CA7800C2AE66FB000B7BADA /* Simplex.cpp in Sources */, 3C53E9E42BEB442300039640 /* YGNodeLayout.cpp in Sources */,