utekai

Results 31 comments of utekai

You could write your own custom action to do a look-at rotation. Assuming you're calling Node.LookAt [the c++ implementation is here](https://github.com/xamarin/Urho3D/blob/4862691d18c0ed40895ba532dd7ba6f17cd2c763/Source/Urho3D/Scene/Node.cpp#L666). Line 666 ... should be enough info to let...

Agree that rotateto doesn't work as expected. [Code here.](https://github.com/xamarin/urho/blob/master/Bindings/Portable/Actions/Intervals/RotateTo.cs#L50) You might want to review changes to that file to investigate the root source of the bug. [For instance, this change](https://github.com/xamarin/urho/commit/a4d392d331df2f106f0799d87d13a2cf31090c83#diff-f2968a67a8f710c3a28598bbd896ae68)....

I did what hwd71 offered up, to setup a key to github. The samples are actually in a second repository and if you don't have the key then you get...

Theres a guy, glebedev or something, that was putting together another editor. It's partially working, but he seems to have abandoned the project. I commented and he set some of...

When I change the renderpath and use FXAA2/3 on a UWP SharpReality platform, the screen goes black UNLESS I include a setting for HDR to true, then it seems to...

It's easy enough to simply override that routine in your own code, using the sample fix as shown by the original author.

Ensure you're doing this from the main thread. InvokeOnMain or InvokeOnMainAsync Messing with materials is a main thread activity. This might not be your problem, but I've seen it throw...

> this constructor is called again later Probably not the constructor, but it is looking for the Application.UnhandledException handler. That's where you e.Handled=true the unhandled exceptions, and attempt to move...

Yes, start with the samples. They will guide you initially to where you can go. You can work with urhosharp or with urho3d directly, depending upon your target devices.

I don't get most of the urho exceptions in the managed code handlers but do get them in the Application handler. In Main(), I set: ``` Application.UnhandledException += Application_UnhandledException; ```...