SirePi

Results 18 comments of SirePi

I just remembered that you can have a .net core class library 😄 I was somehow under the assumption that .net core == executable, and so you would have to...

Technologically speaking, yes Practically speaking, they changed a bunch of things in the new OpenTK, and I have no idea where to find them or some substitute, if the concepts...

Sorry to jump in, but did someone say 9-Patches? They are basically the starting block of my UI plugins so if it can be of help all my code is...

Full, direct IDrawDevice drawing - rotation, zoom, etc.. supported; requires NonPowerOfTwo to be set if the Texture is non-power-of-two-sized) https://github.com/SirePi/duality-frozen/blob/master-nuget/UI/Widgets/SkinnedWidget.cs#L211 Canvas based, no support for rotation, actually manages properly non-power-of-two...

While writing the coroutine doc page, I read the definition on Wikipedia, and at the beginning there is this sentence (bold is mine): > Subroutines are special cases of coroutines.[3]...

Would a restructuring of WaitUntil like this be bad? (comments removed) ```csharp using System; public struct WaitUntil { public static readonly WaitUntil NextFrame = new WaitUntil(() => true); private readonly...

Totally agree. There's a bunch of issues I saw around that should be easy to tackle if I'm not mistaken.. I will make a list and see what you think...

Oh, and don't forget to bring any new v.3 fix in v.4's branch

Tried to reproduce, but can't trigger the error. Some dirty, non-existing tiles can be observed when changing to a different tileset with a different number of tiles, but I believe...

I was thinking of trying to tackle this issue, and I have a couple of doubts regarding the possible implementation: **How should the "required class" be instanced?** - default no-parameter...