├── .gitignore ├── LICENSE ├── README.md ├── SCsub ├── config.py ├── discord.svg ├── doc_classes └── GDDragonBones.xml ├── docs └── README.md ├── gddragonbones.cpp ├── gddragonbones.h ├── register_types.cpp ├── register_types.h ├── sample.gif └── src ├── GDArmatureDisplay.cpp ├── GDArmatureDisplay.h ├── GDBone2D.cpp ├── GDBone2D.h ├── GDDisplay.h ├── GDFactory.cpp ├── GDFactory.h ├── GDMesh.h ├── GDSlot.cpp ├── GDSlot.h ├── GDTextureAtlasData.cpp ├── GDTextureAtlasData.h ├── GDTextureData.h ├── dragonBones ├── DragonBonesHeaders.h ├── LICENSE ├── animation │ ├── Animation.cpp │ ├── Animation.h │ ├── AnimationState.cpp │ ├── AnimationState.h │ ├── BaseTimelineState.cpp │ ├── BaseTimelineState.h │ ├── IAnimatable.h │ ├── TimelineState.cpp │ ├── TimelineState.h │ ├── WorldClock.cpp │ └── WorldClock.h ├── armature │ ├── Armature.cpp │ ├── Armature.h │ ├── Bone.cpp │ ├── Bone.h │ ├── Constraint.cpp │ ├── Constraint.h │ ├── DeformVertices.cpp │ ├── DeformVertices.h │ ├── IArmatureProxy.h │ ├── Slot.cpp │ ├── Slot.h │ ├── TransformObject.cpp │ └── TransformObject.h ├── core │ ├── BaseObject.cpp │ ├── BaseObject.h │ ├── DragonBones.cpp │ └── DragonBones.h ├── event │ ├── EventObject.cpp │ ├── EventObject.h │ └── IEventDispatcher.h ├── factory │ ├── BaseFactory.cpp │ └── BaseFactory.h ├── geom │ ├── ColorTransform.h │ ├── Matrix.h │ ├── Point.cpp │ ├── Point.h │ ├── Rectangle.h │ ├── Transform.cpp │ └── Transform.h ├── model │ ├── AnimationConfig.cpp │ ├── AnimationConfig.h │ ├── AnimationData.cpp │ ├── AnimationData.h │ ├── ArmatureData.cpp │ ├── ArmatureData.h │ ├── BoundingBoxData.cpp │ ├── BoundingBoxData.h │ ├── CanvasData.cpp │ ├── CanvasData.h │ ├── ConstraintData.cpp │ ├── ConstraintData.h │ ├── DisplayData.cpp │ ├── DisplayData.h │ ├── DragonBonesData.cpp │ ├── DragonBonesData.h │ ├── SkinData.cpp │ ├── SkinData.h │ ├── TextureAtlasData.cpp │ ├── TextureAtlasData.h │ ├── UserData.cpp │ └── UserData.h └── parser │ ├── BinaryDataParser.cpp │ ├── BinaryDataParser.h │ ├── DataParser.cpp │ ├── DataParser.h │ ├── JSONDataParser.cpp │ └── JSONDataParser.h └── rapidjson ├── allocators.h ├── cursorstreamwrapper.h ├── document.h ├── encodedstream.h ├── encodings.h ├── error ├── en.h └── error.h ├── filereadstream.h ├── filewritestream.h ├── fwd.h ├── internal ├── biginteger.h ├── clzll.h ├── diyfp.h ├── dtoa.h ├── ieee754.h ├── itoa.h ├── meta.h ├── pow10.h ├── regex.h ├── stack.h ├── strfunc.h ├── strtod.h └── swap.h ├── istreamwrapper.h ├── memorybuffer.h ├── memorystream.h ├── msinttypes ├── inttypes.h └── stdint.h ├── ostreamwrapper.h ├── pointer.h ├── prettywriter.h ├── rapidjson.h ├── reader.h ├── schema.h ├── stream.h ├── stringbuffer.h └── writer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/config.py -------------------------------------------------------------------------------- /discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/discord.svg -------------------------------------------------------------------------------- /doc_classes/GDDragonBones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/doc_classes/GDDragonBones.xml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/docs/README.md -------------------------------------------------------------------------------- /gddragonbones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/gddragonbones.cpp -------------------------------------------------------------------------------- /gddragonbones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/gddragonbones.h -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/register_types.h -------------------------------------------------------------------------------- /sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/sample.gif -------------------------------------------------------------------------------- /src/GDArmatureDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDArmatureDisplay.cpp -------------------------------------------------------------------------------- /src/GDArmatureDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDArmatureDisplay.h -------------------------------------------------------------------------------- /src/GDBone2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDBone2D.cpp -------------------------------------------------------------------------------- /src/GDBone2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDBone2D.h -------------------------------------------------------------------------------- /src/GDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDDisplay.h -------------------------------------------------------------------------------- /src/GDFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDFactory.cpp -------------------------------------------------------------------------------- /src/GDFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDFactory.h -------------------------------------------------------------------------------- /src/GDMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDMesh.h -------------------------------------------------------------------------------- /src/GDSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDSlot.cpp -------------------------------------------------------------------------------- /src/GDSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDSlot.h -------------------------------------------------------------------------------- /src/GDTextureAtlasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDTextureAtlasData.cpp -------------------------------------------------------------------------------- /src/GDTextureAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDTextureAtlasData.h -------------------------------------------------------------------------------- /src/GDTextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/GDTextureData.h -------------------------------------------------------------------------------- /src/dragonBones/DragonBonesHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/DragonBonesHeaders.h -------------------------------------------------------------------------------- /src/dragonBones/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/LICENSE -------------------------------------------------------------------------------- /src/dragonBones/animation/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/Animation.cpp -------------------------------------------------------------------------------- /src/dragonBones/animation/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/Animation.h -------------------------------------------------------------------------------- /src/dragonBones/animation/AnimationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/AnimationState.cpp -------------------------------------------------------------------------------- /src/dragonBones/animation/AnimationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/AnimationState.h -------------------------------------------------------------------------------- /src/dragonBones/animation/BaseTimelineState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/BaseTimelineState.cpp -------------------------------------------------------------------------------- /src/dragonBones/animation/BaseTimelineState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/BaseTimelineState.h -------------------------------------------------------------------------------- /src/dragonBones/animation/IAnimatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/IAnimatable.h -------------------------------------------------------------------------------- /src/dragonBones/animation/TimelineState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/TimelineState.cpp -------------------------------------------------------------------------------- /src/dragonBones/animation/TimelineState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/TimelineState.h -------------------------------------------------------------------------------- /src/dragonBones/animation/WorldClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/WorldClock.cpp -------------------------------------------------------------------------------- /src/dragonBones/animation/WorldClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/animation/WorldClock.h -------------------------------------------------------------------------------- /src/dragonBones/armature/Armature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Armature.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/Armature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Armature.h -------------------------------------------------------------------------------- /src/dragonBones/armature/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Bone.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Bone.h -------------------------------------------------------------------------------- /src/dragonBones/armature/Constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Constraint.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Constraint.h -------------------------------------------------------------------------------- /src/dragonBones/armature/DeformVertices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/DeformVertices.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/DeformVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/DeformVertices.h -------------------------------------------------------------------------------- /src/dragonBones/armature/IArmatureProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/IArmatureProxy.h -------------------------------------------------------------------------------- /src/dragonBones/armature/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Slot.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/Slot.h -------------------------------------------------------------------------------- /src/dragonBones/armature/TransformObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/TransformObject.cpp -------------------------------------------------------------------------------- /src/dragonBones/armature/TransformObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/armature/TransformObject.h -------------------------------------------------------------------------------- /src/dragonBones/core/BaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/core/BaseObject.cpp -------------------------------------------------------------------------------- /src/dragonBones/core/BaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/core/BaseObject.h -------------------------------------------------------------------------------- /src/dragonBones/core/DragonBones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/core/DragonBones.cpp -------------------------------------------------------------------------------- /src/dragonBones/core/DragonBones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/core/DragonBones.h -------------------------------------------------------------------------------- /src/dragonBones/event/EventObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/event/EventObject.cpp -------------------------------------------------------------------------------- /src/dragonBones/event/EventObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/event/EventObject.h -------------------------------------------------------------------------------- /src/dragonBones/event/IEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/event/IEventDispatcher.h -------------------------------------------------------------------------------- /src/dragonBones/factory/BaseFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/factory/BaseFactory.cpp -------------------------------------------------------------------------------- /src/dragonBones/factory/BaseFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/factory/BaseFactory.h -------------------------------------------------------------------------------- /src/dragonBones/geom/ColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/ColorTransform.h -------------------------------------------------------------------------------- /src/dragonBones/geom/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Matrix.h -------------------------------------------------------------------------------- /src/dragonBones/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Point.cpp -------------------------------------------------------------------------------- /src/dragonBones/geom/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Point.h -------------------------------------------------------------------------------- /src/dragonBones/geom/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Rectangle.h -------------------------------------------------------------------------------- /src/dragonBones/geom/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Transform.cpp -------------------------------------------------------------------------------- /src/dragonBones/geom/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/geom/Transform.h -------------------------------------------------------------------------------- /src/dragonBones/model/AnimationConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/AnimationConfig.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/AnimationConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/AnimationConfig.h -------------------------------------------------------------------------------- /src/dragonBones/model/AnimationData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/AnimationData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/AnimationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/AnimationData.h -------------------------------------------------------------------------------- /src/dragonBones/model/ArmatureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/ArmatureData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/ArmatureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/ArmatureData.h -------------------------------------------------------------------------------- /src/dragonBones/model/BoundingBoxData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/BoundingBoxData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/BoundingBoxData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/BoundingBoxData.h -------------------------------------------------------------------------------- /src/dragonBones/model/CanvasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/CanvasData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/CanvasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/CanvasData.h -------------------------------------------------------------------------------- /src/dragonBones/model/ConstraintData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/ConstraintData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/ConstraintData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/ConstraintData.h -------------------------------------------------------------------------------- /src/dragonBones/model/DisplayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/DisplayData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/DisplayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/DisplayData.h -------------------------------------------------------------------------------- /src/dragonBones/model/DragonBonesData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/DragonBonesData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/DragonBonesData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/DragonBonesData.h -------------------------------------------------------------------------------- /src/dragonBones/model/SkinData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/SkinData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/SkinData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/SkinData.h -------------------------------------------------------------------------------- /src/dragonBones/model/TextureAtlasData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/TextureAtlasData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/TextureAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/TextureAtlasData.h -------------------------------------------------------------------------------- /src/dragonBones/model/UserData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/UserData.cpp -------------------------------------------------------------------------------- /src/dragonBones/model/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/model/UserData.h -------------------------------------------------------------------------------- /src/dragonBones/parser/BinaryDataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/BinaryDataParser.cpp -------------------------------------------------------------------------------- /src/dragonBones/parser/BinaryDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/BinaryDataParser.h -------------------------------------------------------------------------------- /src/dragonBones/parser/DataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/DataParser.cpp -------------------------------------------------------------------------------- /src/dragonBones/parser/DataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/DataParser.h -------------------------------------------------------------------------------- /src/dragonBones/parser/JSONDataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/JSONDataParser.cpp -------------------------------------------------------------------------------- /src/dragonBones/parser/JSONDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/dragonBones/parser/JSONDataParser.h -------------------------------------------------------------------------------- /src/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/allocators.h -------------------------------------------------------------------------------- /src/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /src/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/document.h -------------------------------------------------------------------------------- /src/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /src/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/encodings.h -------------------------------------------------------------------------------- /src/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/error/en.h -------------------------------------------------------------------------------- /src/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/error/error.h -------------------------------------------------------------------------------- /src/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /src/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /src/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/fwd.h -------------------------------------------------------------------------------- /src/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /src/rapidjson/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/clzll.h -------------------------------------------------------------------------------- /src/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /src/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /src/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /src/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /src/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /src/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /src/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /src/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /src/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /src/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /src/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /src/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /src/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /src/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/memorystream.h -------------------------------------------------------------------------------- /src/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /src/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /src/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /src/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/pointer.h -------------------------------------------------------------------------------- /src/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /src/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /src/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/reader.h -------------------------------------------------------------------------------- /src/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/schema.h -------------------------------------------------------------------------------- /src/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/stream.h -------------------------------------------------------------------------------- /src/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /src/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauville-technologies/godot_dragonbones/HEAD/src/rapidjson/writer.h --------------------------------------------------------------------------------