Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Automatically convert and include scripts when generating the exe
#7
In actual work, I may have multiple script codes that need to be asynchronously executed under specific conditions.
It is not very convenient to manage if all the scripts are placed in a single file...

I have an idea, when generating the EXE:
 
Quote:script.run("exe2.cs", a1, a2);

Automatically converted to(generate temporary code before compiling):
 
Code:
Copy      Help
run.thread(() => {
    //code
    //moved
    //from
    //exe2
});


Messages In This Thread
RE: Automatically convert and include scripts when generating the exe - by Davider - 03-31-2024, 06:49 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)