Search found 3005 matches

by sfernandez
Today, 12:06
Forum: General Discussion
Replies: 1
Views: 30

Re: Update NoesisGUI for Unreal Engine 5.4

Hi, we updated our code to be compatible for UE5.4 and will be available in the upcoming 3.2.4 version, which will be released in a few weeks. I attach a patch here in the meantime: Index: Plugins/NoesisGUI/Source/NoesisRuntime/Classes/NoesisRive.h ===================================================...
by sfernandez
Today, 11:59
Forum: General Discussion
Replies: 1
Views: 49

Re: Font Importer issue in Unreal whereas font is being displayed correctly

Hello, can you post here the file/folder structure of the related assets (source directories and content directories)? I will try yo reproduce the problem.
Or if you can attach a minimal project reproducing the error it would be even better.
Thanks!
by sfernandez
30 Apr 2024, 21:13
Forum: General Discussion
Replies: 8
Views: 1526

Re: ToolTip in WorldSpace UI

Added a note with a link to download a patched library in the ticket: #2721
by sfernandez
30 Apr 2024, 21:05
Forum: General Discussion
Replies: 3
Views: 131

Re: Don't understand how to set grid column of data collection

Glad to help, marking this as solved then.
by sfernandez
29 Apr 2024, 16:03
Forum: General Discussion
Replies: 2
Views: 156

Re: Tab Control Content Presenter gets Local Vertical Alignment Top instead of respecting the control template

Hi, The PART_SelectedContentHost alignment is overriden by the selected TabItem Horizontal/VerticalContentAlignment properties of the tab as you can see in the WPF code here (we do the same): https://referencesource.microsoft.com/#PresentationFramework/src/Framework/System/Windows/Controls/TabContro...
by sfernandez
29 Apr 2024, 12:29
Forum: General Discussion
Replies: 3
Views: 124

Re: PageLeft and PageRight focus traversal

PageLeft/Right keys are used to scroll pages in a ScrollViewer only. Apart from that we use GamepadPageLeft/Right to simulate Ctrl+Tab focus navigation, for example to change between tabs in a TabControl. Is this what you mean? Anyway, if you need to override that behavior you need to handle those k...
by sfernandez
29 Apr 2024, 11:20
Forum: General Discussion
Replies: 3
Views: 131

Re: Don't understand how to set grid column of data collection

Hello, Each of the items in the collection is wrapped with a "container" when added to the ItemsControl.ItemsPanel. For example, in a ListBox each item will be placed as the content of a ListBoxItem, in a ComboBox inside a ComboBoxItem... and in a plain ItemsControl the container will be a...
by sfernandez
29 Apr 2024, 10:50
Forum: General Discussion
Replies: 8
Views: 1526

Re: ToolTip in WorldSpace UI

Hi, this will fixed for the upcoming 3.2.4 version, which will be released soon.
by sfernandez
22 Apr 2024, 19:02
Forum: General Discussion
Replies: 3
Views: 184

Re: Can't apply a style to TextBox

Hi, if you apply a local style without a template to a TextBox, your style should specify the BasedOn to inherit the template from the theme styles. <Style x:Key="DarkInput" TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}"> But I suggest you pro...
by sfernandez
22 Apr 2024, 13:27
Forum: General Discussion
Replies: 7
Views: 260

Re: Unreal Localization with Rive objects?

Hmm... weird, are you using Visual Studio 2022 or 2019? Have you tried to clean the project and rebuild?