Search found 4114 matches

by jsantos
4 minutes ago
Forum: General Discussion
Replies: 2
Views: 18

Re: Problem with Anti-Aliasing in XAML views

Could you please attach an image with the problem instead of a video? And better if you can also attach a minimal XAML reproducing the issue. Thanks!
by jsantos
Today, 13:03
Forum: General Discussion
Replies: 10
Views: 5798

Re: "Xaml not found" for every file when Unity recomplies.

Thanks for sharing your solution and the kind comments :)

We definitely need to find a way to better integrate Addressables into our workflow. The Inspector should work seamlessly in these cases
by jsantos
Today, 12:58
Forum: General Discussion
Replies: 1
Views: 76

Re: C++ and Vulkan invisible text

I only see one fragment shader; you'll also need one for the text. Please refer to our reference implementation. I also recommend using RenderDoc to capture frames and compare what our implementation is doing with what yours is rendering
by jsantos
Today, 12:56
Forum: General Discussion
Replies: 7
Views: 215

Re: WPF controls are pink or transparent

I’d be happy to analyze this in more detail if you can find a way to reproduce it. I’ve tried repeatedly, but I haven’t been able to replicate the issue
by jsantos
Today, 12:55
Forum: General Discussion
Replies: 1
Views: 59

Re: Freezable CreateInstanceCore missing

Could you please create a ticket for this? Thank you!
by jsantos
Today, 12:55
Forum: General Discussion
Replies: 1
Views: 69

Re: Control Libraries

The way to achieve this is by using Unity packages and referencing the assets contained in the package with the URI '/Packages/PACKAGE_NAME'. This is how we provide access to our default themes.
by jsantos
Today, 12:52
Forum: General Discussion
Replies: 3
Views: 97

Re: Referencing xaml dependencies contained in other assemblies

I don't think this is possible. Other than using '/Packages/com.noesis.noesisgui/', I am not aware of any alternative methods to reference a package.
by jsantos
Today, 12:50
Forum: General Discussion
Replies: 3
Views: 148

Re: DynamicTextureSource crash in callback after deletion

Let's continue the conversation in the created ticket. Your usage of DynamicTextureSource is not correct and we need to find an alternative.
by jsantos
16 Jan 2025, 12:00
Forum: General Discussion
Replies: 3
Views: 126

Re: c++ vector binding

ObservableCollection of Strings is not working because ObservableCollection works only with BaseComponent* and String is not inherited from BaseComponent,
You can box the strings in the collection. That should work.
by jsantos
16 Jan 2025, 10:53
Forum: General Discussion
Replies: 3
Views: 97

Re: Referencing xaml dependencies contained in other assemblies

This should work
<ResourceDictionary Source="/Packages/com.noesis.noesisgui/Theme/NoesisTheme.DarkBlue.xaml"/>