Ian Diaz
Ian Diaz
This works for ThreadedUpdate jobs, but it doesn't seem to always work for jobs run with JobUtils.EnqueueJob.
Seems that there's a bug in opening the file stream to prevent a file from being written to locally. Looking into it. For now, uncheck the box for "Remote Lock...
I recently added Tracy to my game engine, which uses fibers as an optional part of its job system (simple jobs are executed directly on the worker threads, whereas interruptible...
Currently, if you have code like this... ```cs [TranspilationSource] public class MyClass { [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string? MyOptionalProperty { get; set; } = null; [JsonIgnore] public string? MyIgnoredProperty {...