Git Product home page Git Product logo

Comments (2)

Ahmadre avatar Ahmadre commented on August 17, 2024

@AnOnionz I solved it:

First you need to disable that ID check in FlutterUnityPlugin.java:

  @Keep
  public static void onMessage(String data) {
    Log.d(String.valueOf(FlutterUnityPlugin.class), "onMessage: " + data);
    try {
      JSONObject jsonObject = new JSONObject(data);
      int messageId = jsonObject.getInt("id");
      String messageData = jsonObject.getString("data");
      for (FlutterUnityView view : FlutterUnityPlugin.views) {
        // --- CHECK WAS REMOVED HERE ---
        view.onMessage(messageData);
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

Then you need to change FlutterUnityView.java to run in UIThread rather then the UnityMain:

  void onMessage(final String message) {
    Log.d(String.valueOf(this), "onMessage: " + message);
    final Handler mHandler = new Handler(Looper.getMainLooper());
    mHandler.post(
      new Runnable() {

        @Override
        public void run() {
          channel.invokeMethod("onUnityViewMessage", message);
        }
      }
    );
  }

from flutter-unity.

joaopedro735 avatar joaopedro735 commented on August 17, 2024

If I'm not mistaken, the ID outside the data object is meant to specify the view ID. Therefore, if the view with the specified ID doesn't exist, the onMessage wouldn't be triggered.

Copied from README.md

A `Message` object has the following members:
  • id (int)

A non-negative number representing the source view when receiving a message, and the destination view when sending a message. When sending a message, it can also be set to a negative number, indicating that the message is intended for any existing view.

  • data (string)

The actual message.

from flutter-unity.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.