Documentation PDF

Nastudio

New member
Is there a separate manual in pdf file format?
I'm not familiar with English, so I try to find it as much as I can while translating, but it will take a long time to use all the functions in the inventory system :(
I think it's a really good system, so I want to learn it quickly, but... YouTube translation and Google translation have many errors, so could you tell me the location if you have one?
 
And I want to use delta time to make the recovery amount recover for a certain period of time, what should I do? I want to recover slowly by making a potion and bonfire object and recover to delta time
 
There should be a pdf documentation in the Asset/UltimateInventorySystem/documentation.pdf after you imported the asset in your project.

As for your second question you'll need a custom ItemAction . You can use a coroutine by referencing a component on your character.
So lets say you character has a Heal component (a custom component you made). And that Heal has a function:

Heal(amount, time);

Then in your custom Item Action you can do:

itemUser.GetComponent<Heal>().Heal(amount, time);

Where amount and time are values you would get from the item attributes.

Learn more here:


 
Top