Hello.
I’m Stack in creating a defold project with defold-spine plugin.
I downloaded Defold 1.3.5, and put it on ‘C:\Program Files\Defold’.
All I had done are below actions.
- Create an empty project.
- Add ‘https://github.com/defold/extension-spine/archive/main.zip’ to dependencies
- Run ‘Fetch Libraries’
- Run ‘Build’
But I got below build errors.
/defold-spine/src/comp_spine_model.cpp
Line 229: unused variable ‘spine_model’ [-Wunused-variable]
SpineModelResource* spine_model = component->m_Resource;
^
Line 531: no member named ‘m_Scale’ in ‘dmGameObject::ComponentCreateParams’
component->m_Transform = dmTransform::Transform(Vector3(params.m_Position), params.m_Rotation, params.m_Scale);
~~~~~~ ^
Line 1218: unused variable ‘constraint’ [-Wunused-variable]
spIkConstraint* constraint = component->m_SkeletonInstance->ikConstraints[index];
^
Line 1244: unused variable ‘constraint’ [-Wunused-variable]
spIkConstraint constraint = component->m_SkeletonInstance->ikConstraints[*index];
^
Is there any other thing I have to do? I read manuals but I can’t find it…
Can you give me some hints, please?