Algorithman

Results 9 comments of Algorithman

What you can do is: 1. a Factory approach with an Initialize method in the base class and make the constructor internal, so it cant be called from other assemblies....

Fixed the issue with hot reloading, there was a problem with unregistering non-existing components/objects

~~The OUTER APPLY is caused by old mariaDB versions, update your version to the latest stable (and probably upgrade your databases) and it'll be gone.~~

Ohh, was I off. Even newer MariaDb didn't work. But this does: ```` var query = from t in Db.TaskDescriptors where t.NextRunUtc.HasValue && t.NextRunUtc query.ToListAsync()); var pendingTasks = tasks .Select(x...

And it doesnt happen to blueprint projects. Interesting. But a try/catch should work. It wants to overwrite the dll in use. At this point there shouldnt be any differences in...

You can use this commit ( https://github.com/Algorithman/klawr/commit/8a2a43ce9dba153f5b3df4eea2f6cc9ce77cf18e )

Hi enlight Do you have any good references about the compilation process inside the editor? (for example is UBT used to compile it? Can i call own tools as prebuild/postbuild?)...

Thanks for the answers. Clarifies it a bit. My plans now are to create a c++ class (like any other c++ BP classes) which has the properties and functions of...

A downside to my approach is, a simple (c++) UPROPERTY(...) int32 test; wont work well. Because i have no getter/setter, i can't pipe it to the c# side. Did some...