InputComponent字段值不正确

Forum rules
Please confirm before reporting
  • Please confirm in advance that it is a problem with LogicToolkit and not with Unity itself, other assets, or the user's project.
  • Please confirm that the problem occurs in a project with the smallest possible configuration and clarify how to reproduce it.
  • Please check if it is described in Known Issues.

Information required to report a bug
  • Logic Toolkit version
  • Unity version
  • How to reproduce

=======

報告する前の確認のお願い
  • Unity本体や他のアセット、ユーザーのプロジェクト側による問題ではなくLogicToolkitの問題であることを事前に確認してください。
  • 可能な限り最小構成のプロジェクトで問題の発生を確認し、再現方法を明確にしてください。
  • 既知の問題に記述されているかを確認してください。

バグを報告するために必要な情報
  • Logic Toolkit バージョン
  • Unity バージョン
  • 再現方法

=======

We accept posts in languages ​​other than English and Japanese, but replies will be sent via machine translation.
Thank you for your understanding.
kvfreedom
Posts: 69
Joined: 2024/07/11 04:36

InputComponent字段值不正确

Post by kvfreedom »

1.png
1.png (77.77 KiB) Viewed 11969 times
2.png
2.png (26.34 KiB) Viewed 11969 times
1.3.0版本中,EvaluateComponent作为行为树的Decorator时InputComponent字段值不正确
User avatar
caitsithware
管理人
Posts: 108
Joined: 2024/03/26 01:56

Re: InputComponent字段值不正确

Post by caitsithware »

感谢您的报告。
我们已经修复了据信与您在今天发布的 1.3.1 版本中报告的错误相关的错误。
请更新并检查。
kvfreedom
Posts: 69
Joined: 2024/07/11 04:36

Re: InputComponent字段值不正确

Post by kvfreedom »

caitsithware wrote: 2024/09/18 09:49 感谢您的报告。
我们已经修复了据信与您在今天发布的 1.3.1 版本中报告的错误相关的错误。
请更新并检查。
1.3.1仍然存在这个Bug
User avatar
caitsithware
管理人
Posts: 108
Joined: 2024/03/26 01:56

Re: InputComponent字段值不正确

Post by caitsithware »

我能够重现它,所以我会修复它。
User avatar
caitsithware
管理人
Posts: 108
Joined: 2024/03/26 01:56

Re: InputComponent字段值不正确

Post by caitsithware »

临时解决方法如下。
  • 在代码编辑器中打开 Packages/Logic Toolkit/Runtime/Serialization/ValueInjection.cs
  • 在第79行添加以下代码

    Code: Select all

    HashSet<Type> visitedElements = new HashSet<Type>();
    
  • 在第118行添加以下代码

    Code: Select all

    else if (stack.Contains(elementType)
        && visitedElements.Add(elementType))
    {
        var list = new List<Type>(stack.Reverse());
    
        var index = list.IndexOf(elementType);
        stack.Clear();
        for (int i = 0; i < index; i++)
        {
            stack.Push(list[i]);
        }
        stack.Push(targetType);
        for (int i = index; i < list.Count; i++)
        {
            stack.Push(list[i]);
        }
    }
    
Post Reply