1. The site http://monitor.exoa.fr/tcp-doc is returning a 502 Bad Gateway error. I need documentation on the available methods. Additionally, are there any methods to determine whether a touch was a single tap or a swipe in order to correctly display the menu?

  2. Camera Isometric Ortho - I'm setting up the camera as in the Demo, with Rotation x:45, y:-45, z:0, but after launching, the Rotation x changes to 35. The demo code shows the same issue. How can this be fixed?

    bekkazy hi!

    1. thanks for reporting I have issues with my web server at the moment but I can send you the api doc by email.
      You can use CameraInputs.isFingerTap or isFingerUp and IsOverUI to detect a tap on the menu for example.

    2. Thanks for reporting, here is a quick fix until I release the update on the store:
      Open CameraIsometricOrtho.cs and add this line:

    initialRotation.x = transform.rotation.eulerAngles.x;

    line 20. You end up with a code like this:

    override protected void Init()
    {
    base.Init();
    initSize = finalSize = cam.orthographicSize;
    initialRotation.y = transform.rotation.eulerAngles.y;
    initialRotation.x = transform.rotation.eulerAngles.x;

      7 days later
      6 days later

      0x4b404ec hi! Just so you know the API should be back online.
      I did sent you an email with a zip last week did you get it?

        Write a Reply...