Hello.
Could somebody please post a very basic working example of connecting web player app (using unitys WWW/WWWForm classes) with a django backend, specifically how the unity WWW post url should look like for localhost(do i need to specify web player default port in url), how do i capture unity WWWForm data in django
s request.POST, how to properly setup urlpatterns (especially slashes), etc.
I tried following unity documentation on WWW/WWWForm, the examples there are clear, but i fail to port them to my server setup (apache+mod_wsgi+django+mysql, which works ok, except for the unity content).
There is an example on github, however its a bit of an overkill and i
m rather new to both django and unity.
I managed to get the unity app served, get its output with Application.ExternalCall() and then parsing ang posting it with javascript to django with hidden form. It sort of works, but it`s clearly a wrong design.
Thanks for any help.