Replies: 1 comment
-
Perhaps a public wrapper on |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I currently need to do very, very evil things to gdscript code on a textual level in my cutscene script loading code, because my cutscene scripts are basically a gdscript-based DSL. This works, but because it works on pure text, it's nasty. If I had a way to parse, manipulate, and compile ASTs instead of pure text, even if it was dictly-typed, it would be a lot less fragile.
Metaprogramming at this level is applicable across the board, not just to cutscenes:
array[var1--var2]
intoarray.slice(var1, var2)
))Beta Was this translation helpful? Give feedback.
All reactions