|
|
|
|
|
by alpaca128
1885 days ago
|
|
You are not wrong, but the original point was that GDScript is slow because its syntax is similar to Python's and Python is slow. That just doesn't make any sense. > The default language in the engine is basically python, so it could cause a performance bottleneck. |
|
this doesn't have anything to do with the syntax. we could completely replace python syntax with e.g. pyc bytecode or serialised AST data but the language would still be challenging to execute efficiently as the language is still exactly the same
one can get a few ideas of how python could perhaps be made faster by reading about all the restrictions that rpython imposes
https://rpython.readthedocs.io/en/latest/rpython.html