Search found 6 matches

by camimamedov
29 Mar 2024, 08:23
Forum: General Discussion
Replies: 1
Views: 85

Unity Gamepad connection

When I enable actions in NoesisView gamepad connects to game but acts weird. There is no button hover effect. How can I enable it to see what I am hovering (selecting)?
by camimamedov
15 Mar 2024, 08:04
Forum: General Discussion
Replies: 4
Views: 234

Re: EventManager.RegisterClassHandler Unity crash

Any help?
by camimamedov
12 Mar 2024, 12:36
Forum: General Discussion
Replies: 4
Views: 234

Re: EventManager.RegisterClassHandler Unity crash

I think this is related to #2359. Is this happening on domain reload?
Yes . But your reference post hasn't got any solution for Button clicks.
by camimamedov
12 Mar 2024, 11:24
Forum: General Discussion
Replies: 4
Views: 234

EventManager.RegisterClassHandler Unity crash

When i am trying to detect button clicks in one "OnButtonClick" method i get unity crash. I guess this handler is not unregister on disable. What can i use instead of it or how can i fix this problem? My noesis version is 3.2.2 Noesis.EventManager.RegisterClassHandler(typeof(Button), Butto...
by camimamedov
20 Feb 2024, 07:32
Forum: General Discussion
Replies: 2
Views: 104

Re: Value Converter binding converter failed to convert value 'null'

Thank you, this solved the problem
by camimamedov
19 Feb 2024, 13:07
Forum: General Discussion
Replies: 2
Views: 104

Value Converter binding converter failed to convert value 'null'

I created a converter that changes width value public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { int width; if (value == null || !int.TryParse(value.ToString(), out width)) width = 0; double factor; if (parameter == null || !double.Try...