Search found 4113 matches

by jsantos
Today, 13:03
Forum: General Discussion
Replies: 10
Views: 5795

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: 212

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: 55

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: 68

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: 96

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: 147

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: 125

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: 96

Re: Referencing xaml dependencies contained in other assemblies

This should work
<ResourceDictionary Source="/Packages/com.noesis.noesisgui/Theme/NoesisTheme.DarkBlue.xaml"/>
by jsantos
16 Jan 2025, 10:44
Forum: General Discussion
Replies: 3
Views: 147

Re: DynamicTextureSource crash in callback after deletion

Could you please create a ticket for this? This was partially fixed in the Studio branch but we do still need a better solution.