Search found 18 matches

  • 1
  • 2
by Otter
12 Mar 2024, 12:54
Forum: General Discussion
Replies: 7
Views: 285

Re: RichText Hover issue

We have fixed it temporarily inside NoesisView. We used
void HitTest3D(Visual reference, Point3D point, Vector3D direction, HitTestFilterCallback filterCallback, HitTest3DResultCallback resultCallback)

and ignored Noesis.Run element
by Otter
12 Mar 2024, 12:19
Forum: General Discussion
Replies: 7
Views: 285

Re: RichText Hover issue

We found out that if you position UI at Z that is not 0, then the Run element will cause issues. Inside UpdateActions of NoesisView.cs it hits Noesis.Run element when the UI is not at position 0, otherwise it does not. Z coordinate of Noesis.Run is always 0 and then it calculates wrong mouse positio...
by Otter
22 Feb 2024, 14:53
Forum: General Discussion
Replies: 6
Views: 280

Re: LocExtension with Binding

Regarding the issue with ProvideValue not being called when templates are applied I understand now what is happening. This is a limitation of our current implementation of templates. Could you please report this as a separate issue?
Reported under: https://www.noesisengine.com/bugs/view.php?id=3114
by Otter
20 Feb 2024, 13:06
Forum: General Discussion
Replies: 6
Views: 280

Re: LocExtension with Binding

Hi sfernandez, Triggered how? The ProvideValue method is only called by the XAML parser when it finds the markup extension assigned to the property. Here is an example: public override object ProvideValue(IServiceProvider serviceProvider) { var valueTarget = serviceProvider as IProvideValueTarget; i...
by Otter
20 Feb 2024, 11:52
Forum: General Discussion
Replies: 6
Views: 280

Re: LocExtension with Binding

Additional information: when your MarkupExtension returns this, it does not get triggered again for items inside ItemTemplate
by Otter
19 Feb 2024, 18:30
Forum: General Discussion
Replies: 6
Views: 280

LocExtension with Binding

Hello, I'm trying to use LocExtension provided by Noesis and I've encountered that I cannot dynamically bind properties to this extension, something like this: Text="{noesis:Loc {Binding WorldsText}}" I have tried to extend this class with Binding property, but then I've encountered a few ...
by Otter
19 Jan 2024, 12:03
Forum: General Discussion
Replies: 2
Views: 2666

InvalidOperationException: Native type 'TypeConverter' is not registered

Hi, I'm trying to implement a MarkupExtension like this: public class SomeExtension : MarkupExtension { public Type Type { get; set; } public override object ProvideValue(IServiceProvider serviceProvider) { // Do something with Type } } And use it in XAML <namespace:Some Type="{x:Type namespace...
by Otter
13 Oct 2023, 14:45
Forum: General Discussion
Replies: 1
Views: 731

Transparent objects in front of WorldSpaceUI

Hello,

I'm wondering if transparent object in front of WorldSpaceUI is possible? Currently It gets rendered behind UI, like the picture below
WantedResult.png
Expected result:
Result.png
Scene arrangement:
TransparentObject.png
Thanks!
by Otter
11 Oct 2023, 09:00
Forum: General Discussion
Replies: 11
Views: 1789

Re: ToolTip in WorldSpace UI

  • 1
  • 2