Search found 322 matches

  • 1
  • 2
  • 3
  • 4
  • 5
  • 33
by hcpizzi
Today, 12:52
Forum: General Discussion
Replies: 12
Views: 1939

Re: Getting started with Unreal - lots of confusion

Hi, I'm not sure you even need a converter. You can just write the char ID when you add the string to the array, can't you? Those strings aren't meant to change, are they? The way you use RichText::SetTryCreateInlineCallback is that you set it once. It's a global handler. You can then use a global v...
by hcpizzi
16 Apr 2024, 09:29
Forum: General Discussion
Replies: 3
Views: 181

Re: Seeking Assistance with C++ Binding in Unreal Engine 5 to NoesisGui

Hi, You can go one of two ways. You can use our class and reflection code to create your view model clases and expose the data you want, or you can use UObjects and Unreal's reflection markers. You probably want the second option. You can find the relevant documentation here: https://www.noesisengin...
by hcpizzi
15 Apr 2024, 16:29
Forum: General Discussion
Replies: 6
Views: 142

Re: Fatal error: 'Input/HitTestGrid.h' file not found when packaging using the UBT for Linux

Thanks! Fixed that one as well.
by hcpizzi
15 Apr 2024, 15:45
Forum: General Discussion
Replies: 6
Views: 142

Re: Fatal error: 'Input/HitTestGrid.h' file not found when packaging using the UBT for Linux

Windows file system is not case sensitive, but Linux is.

We're planning on releasing version 3.2.4 soon, but for now you can make the change locally to be able to continue moving on.
by hcpizzi
15 Apr 2024, 15:03
Forum: General Discussion
Replies: 6
Views: 142

Re: Fatal error: 'Input/HitTestGrid.h' file not found when packaging using the UBT for Linux

Hi,

The correct capitalization is
"Input/HittestGrid.h
. Notice the lower case t in test. I'll correct it on our side.

Thanks for reporting!
by hcpizzi
12 Apr 2024, 19:07
Forum: General Discussion
Replies: 7
Views: 230

Re: Unreal Localization with Rive objects?

Hi, You need to use a RiveRun, not a RiveInput. It would look something like this: <noesis:RiveControl Source="rivs/button05b.riv" Margin="472, 392, 472, 216" Width="336" Height="112"> <noesis:RiveControl:Runs> <noesis:RiveRun RunName="bText" RunText...
by hcpizzi
27 Mar 2024, 10:01
Forum: General Discussion
Replies: 3
Views: 173

Re: Handling Input in NoesisGUI for Unreal Engine (Potential bug with NoesisInstance key mappings?)

Hi, I've been looking at the way the Common UI plugin works in conjunction with Enhanced Input. It basically bypasses it, by looking at the keys that are mapped to the Input Actions and reacting to those key events. That means the Input Mapping Contentxt's Triggers and Modifiers are ignored. Since E...
by hcpizzi
18 Mar 2024, 20:19
Forum: General Discussion
Replies: 2
Views: 197

Re: Registering View Models in Unreal Engine C++

Hi,

The factories for such components are registered automatically. The name of a native C++ UClass is of the form /Script/ModuleName.ClassName. We register such classes with the name ModuleName.ClassName. So, most likely reason is that the namespaces are wrong.

Hope this helps!
by hcpizzi
21 Feb 2024, 18:42
Forum: General Discussion
Replies: 5
Views: 205

Re: Unreal Build Configurations

Did you just rename the DLL and LIB files? They need to be rebuilt with the changed name. The DLL name is in the associated LIB file, so just renaming them won't work.
by hcpizzi
16 Feb 2024, 16:28
Forum: General Discussion
Replies: 2
Views: 121

Re: Readding to viewport retriggers everything

Hi,

Could you create a ticket for this problem? I have a patch for you to try.

Thanks!
  • 1
  • 2
  • 3
  • 4
  • 5
  • 33