I’m working on a UWP application.
Its UI is written in XAML and c#.
One Page has a Unity scene, using the .NET scripting backend.
The .NET scripting backend seems to deprecate soon, I understood that latest version of Unity only support il2cpp for UWP.
Post processing stack v2 doesn’t build with .net backend.
I tried to build with il2cpp.
Unity generates a c++ Windows Store 10 project called Il2cppOutputProject and a c++ UWP application with XAML controls.
I’m working on an application that is already written in c# and I can’t translate all the c# code to c++.
My question is: how can I used the Il2cppOutputProject generated by Unity into a c# UWP application?
Is there an example application ?