At the end is 2 entrys im interested in. 1 is the holo dancer and one is the security guard.
I want to make the security guard dance like the holo girl just for laughs and to learn modding so a quick flick of some data i thought would be easy enough to do.
Im not sure i understand exactly what i need to put in the extensions area of what is changed.
What i have in extensions folder is a basic contents xml file with name of mod etc and in that folder i have a assets folder and then a characters folder with the file character_components.xml in with this in it.
Code: Select all
<diff>
<!-- securityguardnpc -->
<replace name="character_deco_security_guard_01" class="npc">
<animations>
<animation name="dancing01" ref="assets/characters/argon/animations/anim_decoration_dance" />
</animations>
<transitions>
<transition start="standing" end="standing" animation="dancing01" />
</transitions>
</replace>
</diff>
What am i doing wrong per say?
Edit - Think ive noticed a error but still having issues.
Code: Select all
<diff>
<!-- securityguardnpc -->
<replace sel="character_*\component[@name='character_deco_security_guard_01']\animation[@name='decoration01']\transition[@animation='decoration01']">
<animation name="dancing01" ref="assets/characters/argon/animations/anim_decoration_dance" />
<transition start="standing" end="standing" animation="dancing01" />
</replace>
</diff>