Search found 24 matches

by simonb
09 Feb 2023, 14:58
Forum: Official Announcements
Replies: 14
Views: 5883

Re: [Beta 2] NoesisGUI v3.2

great news thanks
by simonb
08 Feb 2023, 12:11
Forum: Official Announcements
Replies: 14
Views: 5883

Re: [Beta 2] NoesisGUI v3.2

HI guys any news on the Beta 3.2 Unity release?
by simonb
04 Aug 2022, 22:06
Forum: General Discussion
Replies: 2
Views: 323

Re: Windows DPI Scaling

ah great will try that - thanks
by simonb
04 Aug 2022, 15:49
Forum: General Discussion
Replies: 2
Views: 323

Windows DPI Scaling

Hi, Is there a way to stop Noesis from respecting a users Windows DPI scaling setting (i.e. Display settings/ Scale and layout). If this is left at 100% everything is fine, but if a user sets this to a different amount it changes the scale of elements that we want to remain a fixed size. Is there an...
by simonb
13 Jun 2022, 10:52
Forum: General Discussion
Replies: 2
Views: 326

Re: right click on buttons

great thanks for the work around & update
by simonb
02 Jun 2022, 18:15
Forum: General Discussion
Replies: 2
Views: 326

right click on buttons

Hi I'm trying to implement mouse right click functionality for a Button element it works fine in Blend with: <Button.InputBindings> <MouseBinding Command="{Binding RightClickToRemoveItem}" CommandParameter="Item1" Gesture="RightClick" /> </Button.InputBindings> But in U...
by simonb
22 Apr 2022, 11:06
Forum: General Discussion
Replies: 4
Views: 640

Re: Shader effect, unknown type

Got, it.
Many thanks for the info :)
by simonb
19 Apr 2022, 18:36
Forum: General Discussion
Replies: 4
Views: 640

Re: Shader effect, unknown type

I have had a look and successfully got my image tinting working via the examples approach of adding a new ShaderEffect class & a shader into Unity. Out of interest does the NoesisApp Tinting shader described here still work? https://www.noesisengine.com/docs/App.Shaders._TintEffect.html#noesis_d...
by simonb
18 Apr 2022, 11:40
Forum: General Discussion
Replies: 4
Views: 640

Shader effect, unknown type

HI I am trying to use a Shader Effect on an Image in Unity. The code is happy to run in Blend (but gives a weird effect) But its giving me a error " Unknown type 'NoesisGUIExtensions.TintEffect'" when it runs in Unity? Am I doing something obviously wrong? (v3.1.4) xmlns:noesis="clr-n...
by simonb
14 Apr 2022, 17:44
Forum: General Discussion
Replies: 2
Views: 497

Re: MediaElement can't play in Unity?

Had the same issue trying to play wav audio files. Needed to use a MediaElement as I wanted to receive an event when the the audio stopped playing. In the end I found the best solution was to convert all the wavs into mp4 files, using 'ffmpeg' (which is all round excellent & batch converts very ...