WatsonSong

Results 20 comments of WatsonSong

I met the same error. It seems can not use the Assert and exception inside the PoseContext. I don't know whether there has a way to fix it.

I find the issue: https://github.com/tonyofrancis/Fetch/issues/464 and https://github.com/tonyofrancis/Fetch/issues/192. But I don't know how to implement a custom downloader, which override the getRequestBufferSize. The custom buffer size can used to control the...

I met the same problem like this, with a public interface and internal interface and internal class. The property for the public interface is obfuscated which is wrong. But the...

It seems zod not support null and undefined discriminants. For example I want to define the structure: https://github.com/microsoft/TypeScript/pull/27631 `type Result = { error?: undefined, value: T } | { error:...

Good work! I think package is a better way to distribute the houdini engine. Hoping the SideFX will continue support this unity bridge. This repository has been no commit after...

It seems duplicated with issue 161 https://github.com/StyleCop/StyleCop/issues/161 But this is really a big problem, because I can not using the StyleCop.Analyist because I am using the Unity project. I want...

I am using the 6.0.6902.2. When I check the log show: StyleCop 6.0 (build 6.0.6902.2) started And it report SA1126 when met "out var XXX" syntax

I found the same problem because I am using the netcore2.0. Hope for this festure.

I am also looking for this

最近也碰到了类似问题,本质其实是两套不同的垃圾回收(v8和unreal)的对象互相持有引用,即使形成孤岛也没法回收。初步想法是让unreal侧强制垃圾回收而不是依靠引用的依赖。 如果让脚本把所有引用全部析构干净(包括引用变量,各种注册到Unreal的各种delegate里面的闭包都注销掉)从代码逻辑上负担比较重,而且容易出错。但是针对UMG来说,尝试了一下在RemoveFromParent之后调用了一次MarkAsGarbage强制回收,似乎对内存有帮助。