Jump to content

Basics: How do I get these 2 scripts to communicate?


joda
 Share

Recommended Posts

//main script

var action = "stop";

function update(){

   otherScript.update(whatDoIWriteHere);

}
update();
//other script

export class OtherScript {
  
  update(mainScript) {
    mainScript.action = "go";
  }

}

I'd like to set up my code to work this way, mainly to keep my code cleaner. Note the "whatDoIWritehere" above. I've tried to google around and get a simple answer, but it's pretty tricky. Any help here? Thank you!

Edited by joda
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...