Search found 4113 matches
- Today, 13:03
- Forum: General Discussion
- Replies: 10
- Views: 5796
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
We definitely need to find a way to better integrate Addressables into our workflow. The Inspector should work seamlessly in these cases
- 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
- Today, 12:56
- Forum: General Discussion
- Replies: 7
- Views: 214
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
- Today, 12:55
- Forum: General Discussion
- Replies: 1
- Views: 59
Re: Freezable CreateInstanceCore missing
Could you please create a ticket for this? Thank you!
- 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.
- 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.
- 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.
- 16 Jan 2025, 12:00
- Forum: General Discussion
- Replies: 3
- Views: 126
Re: c++ vector binding
You can box the strings in the collection. That should work.ObservableCollection of Strings is not working because ObservableCollection works only with BaseComponent* and String is not inherited from BaseComponent,
- 16 Jan 2025, 10:53
- Forum: General Discussion
- Replies: 3
- Views: 97
Re: Referencing xaml dependencies contained in other assemblies
This should work
Code: Select all
<ResourceDictionary Source="/Packages/com.noesis.noesisgui/Theme/NoesisTheme.DarkBlue.xaml"/>
- 16 Jan 2025, 10:44
- Forum: General Discussion
- Replies: 3
- Views: 148
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.