RotJS Updated (Construct 3 Plugins)

You're viewing a single comment in a conversation. View all the comments
  • 1 Comments

  • Order by
  • ! EDIT : problem found and solved !

    ------------------------------------------------------

    From "instance.js, under c3runtime folder, inside the plugin's .c3addon file

    Line 118, last line of "LoadFromJson(o)", there is this :

    "this.this.wallCleared = o["wallCleared"];"

    That line caused "wallCleared" to be undefined, and should be replaced by this :

    "this.wallCleared = o["wallCleared"];"

    Now the plugin supports Load again.

    ------------------------------------------------------