Crauzer
Crauzer
> I personally would prefer the second approach here, especially since fitting in .netstandard 2.0 is probably a considerable effort and multi-targeting makes using new .NET6+ only features more complicated,...
https://github.com/Crauzer/lol2gltf/releases/tag/3.0.0-beta.4
Any update on this ? Would be great if this was possible!
FYI: Riot uses the original approach which deduces the sphere from the AABB but with an extra step which is used to tighten the radius of the sphere so it's...
I'll be taking a deeper look into properly handling animations after I finish working on some other stuff.
For anybody else seeking for this feature, here is a solution to achieve this: ```css .mud-tabs-toolbar-content { overflow-x: scroll; } .mud-tabs-scroll-button { display:none; } ``` 
I can try making an example to test touch/mobile but while I was using it on desktop, I found a really strange issue which probably arises from the button scrolling...
Here is an example snippet which shows the weird behavior: https://try.mudblazor.com/snippet/QkQdExEtrQKTHcaI When you scroll around and then start clicking the tabs, the scrollbar "de-synchronizes??" from the actual content. I think...
> .mud-tabs-toolbar-content { overflow-x: hidden; } This does hide the scrollbar but then you can't actually scroll through the tabs, so I'm not sure how that solves the issue. I...
> On touch/mobile you can scroll with it set to `hidden`. On desktop can you scroll with mouse wheel inside the tabs? Setting `overflow` to `hidden` will just clip the...