Hello, I have an application I’m building in Xamarin and was looking to try out this engine to build a game with it. I’ve run into a bit of an issue with my xaml page from following a few examples:
It explains to implement the following in my page code:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:UrhoSharp.Demo"
xmlns:urho="clr-namespace:Urho.Forms;assembly=Urho.Forms"
x:Class="UrhoSharp.Demo.MainPage">
<urho:UrhoSurface x:Name="HelloWorldUrhoSurface" VerticalOptions="FillAndExpand" />
</ContentPage>
My implementation edits are just changing:
xmlns:local="clr-namespace:ZorduGamma"
I’m running into an issue on:
xmlns:urho="clr-namespace:Urho.Forms;assembly=Urho.Forms"
Which is telling me that that Assembly Urho.Forms was not found.
My C# scripts aren’t complaining about implementing:
using Urho;
using Urho.Forms;
I’ve installed UrhoSharp.Forms v1.9.67