joda Posted March 26, 2020 Share Posted March 26, 2020 (edited) //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 March 26, 2020 by joda Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.