Alex

Results 5 issues of Alex

Agent类在析构函数的时候调用了以下的代码: ```C# Context.RemoveAgent(this); ``` Context中持有agent实例的引用,同时这个Context实例又被一个静态字典所引用(`Context.ms_contexts`),因此析构函数应该永远不会被执行才对。 目前的解决办法是在不需要Agent实例的时候,手动调用以下两个方法: ```C# agent.btunloadall(); Context.RemoveAgent(agent); ``` 另外记得把条件编译符号`BEHAVIAC_RELEASE`声明一下,因为调试模式下会导致实例被保存到一个静态变量中。 我不知道目前是否还有更好的做法,但是没有更新的情况下只能暂时这样做了,如果有其他的解决办法劳烦告知一下。

Agent.cs有一个方法(1137): ```c# internal VariableType GetVariable(uint variableId) ``` 因为他是internal的,只能在单个项目中使用这个方法,因此导出的C#代码文件`generated_behaviors.cs`如果跟Agent不在同一个项目中的话,就会找不到这个方法,进而导致编译失败。 ```c# protected override EBTStatus update_impl(behaviac.Agent pAgent, behaviac.EBTStatus childStatus) { Debug.Check(behaviac.Utils.MakeVariableId("_$local_task_param_$_0") == 2009726548u); string method_p1 = pAgent.GetVariable(2009726548u); // 找不到方法,无法将参数uint转换为string ((MyAgent)pAgent).Goto(method_p0, method_p1); return EBTStatus.BT_SUCCESS;...

docker.dockerPush ``` http: server gave HTTP response to HTTPS client ```

I use vue-admin latest release version. cannot select the mode on vue componet. MUST NEED CHANGE: ``` setMode () { let modeObj = modelist.modesByName[this.mode] if (modeObj) { // // require('brace/mode/'...

[RFC9221](https://datatracker.ietf.org/doc/html/rfc9221) (An Unreliable Datagram Extension to QUIC) > These features can be useful for optimizing audio/video streaming applications, gaming applications, and other real-time network applications.

enhancement