Page 1 of 1

Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 8:44 am
by warlockoo1
Hi,
So I am using default HeroineController that comes with ARPG Kit and I have 3 attack moves and today I added 4th attack move. Everything works fine until player enters any conversation, after conversation completion player can only perform 3 attack moves and not 4th one. It even happens if I save game without entering in any conversation and than load the game. Just to make sure not after saving that game but by loading that game. Might be something with save/load system. Please help!!

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 9:30 am
by Tony Li
Hi,

I'll look into this today and post back here. Would it be possible for you to post a screenshot of your attack move configuration please?

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 10:44 am
by warlockoo1
Here, its same as default heroinecontroller of ARPG kit, I've just changed animation of attacks.

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 11:18 am
by Tony Li
Thanks! Would you please post a screenshot of the inspector view of your character prefab that shows the new attack?

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 11:36 am
by warlockoo1
Here

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 1:27 pm
by Tony Li
Hi,

In ARPG, you also have to assign the attack animations to each weapon. To do this:

1. Inspect the player prefab's Inventory C component. It has an item database assigned to the Database field.

2. Inspect the item database (e.g., ItemDataC).

3. Inspect each weapon listed under the Equipment foldout. Expand the weapon's Attack Combo foldout, and assign the animation:

Image

When ARPG equips a weapon, it copies the weapon's Attack Combo info into the player's Inventory C Attack Combo.

The Dialogue System tells ARPG to re-equip the current weapon when loading a game or ending a conversation (in case the conversation changed the current weapon). This is why the attack combo information appears to go screwy when the loading a game or ending a conversation; it's actually copying over the animations for the current weapon.

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 10:30 pm
by warlockoo1
Thank you so much, it worked perfectly!!

Re: Some Animation doesn't play after conversation end (ARPG Kit)

Posted: Sat Feb 04, 2017 11:47 pm
by Tony Li
Happy to help!