InputComponent字段值不正确

Forum rules
Please isolate whether it is a problem with Unity itself or other assets before reporting.
Known issues are listed here: Known Issues
The information required to report a bug is as follows.
  • Logic Toolkit Version
  • Unity Version
  • How to reproduce

=======

日本語での投稿も受け付けています。

Post a reply

Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: InputComponent字段值不正确

Re: InputComponent字段值不正确

by caitsithware » 2024/09/18 10:50

临时解决方法如下。
  • 在代码编辑器中打开 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]);
        }
    }
    

Re: InputComponent字段值不正确

by caitsithware » 2024/09/18 10:03

我能够重现它,所以我会修复它。

Re: InputComponent字段值不正确

by kvfreedom » 2024/09/18 09:55

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

Re: InputComponent字段值不正确

by caitsithware » 2024/09/18 09:49

感谢您的报告。
我们已经修复了据信与您在今天发布的 1.3.1 版本中报告的错误相关的错误。
请更新并检查。

InputComponent字段值不正确

by kvfreedom » 2024/09/18 09:33

2.png
2.png (26.34 KiB) Viewed 6304 times
1.png
1.png (77.77 KiB) Viewed 6304 times
1.3.0版本中,EvaluateComponent作为行为树的Decorator时InputComponent字段值不正确

Top