Перейти к основному содержимому
The project's repository is archived as part of the GitHub Archive Program. RogueLibs' code and the documentation will no longer be updated.

Дополнительно

IDoUpdate и IDoFixedUpdate

Если вы хотите обновлять свои предметы/особенности/разблокировки с Update или FixedUpdate Unity, реализуйте эти интерфейсы:

public class MyCustomItem : CustomItem, IDoUpdate
{
public void Update()
{
/* ... */
}
}

The project's repository is archived as part of the GitHub Archive Program. RogueLibs' code and the documentation will no longer be updated.