Dante Wackermann

Results 8 comments of Dante Wackermann

Thanks a lot, I spent like an hour searching for a solution to change the color of my complete black SVG. You need a reallife example? - Most SVGs are...

Just use something like `if (gs.Map.Phase != CSGSI.Nodes.MapPhase.Live)` to check if the player is in a match or not.

My fork is still up and running. Technically you have some choices to provide localization. Via JSON is only one, another common is an INI File or XML, actually any...

Indeed, I share your view on this one and I guess an XML style or JSON is the best practice approach for it. I'm not aware of any preexisting libraries...

Depending on which platforms you aim for, MAUI (former XAMARIN) is also a good approach, it aims at MVVM which implies cross-platform compatibility by strict encapsulation. AOT is common all...

> I made some initial work in the [translation-support branch](https://github.com/exelix11/SysDVR/tree/translation-support). **This is still experimental, do not start translating yet.** > > Translation files will look like this: > > ```json...

`SysDVR-Client.exe (process 22988) exited with code -1073740940` Happens 6/10 times trying to debug. There seems to be an `AccessViolationExcpetion` in Line 81 of `ImFontGlyphRangesBuilder.gen.cs`. ```csharp public void Clear() { ImGuiNative.ImFontGlyphRangesBuilder_Clear((ImFontGlyphRangesBuilder*)(NativePtr));...

![image](https://github.com/exelix11/SysDVR/assets/21370839/3fc066a9-6f84-4d38-9d4f-08c2c7f3a582) Okay, I think I fixed it by changing the `MemAlloc` to the ImGui native GlyphRangesBuilder. By testing, 10/10 times runs normally :) You can find it within my PR...