Suyog Sonwalkar

Results 17 comments of Suyog Sonwalkar

> Is misc/yarn.lock is required? Technically it should be committed to have more deterministic package installs. I don't think it matters too much in this case, but it's fairly standard...

`godot.round` and `godot.ceil` both are typed properly in godot.d.ts and function as expected on floats / error out on Vector3: ```typescript /** Rounds `s` upward, returning the smallest integral value...

I haven't tried it, but does https://docs.godotengine.org/en/stable/getting_started/workflow/export/exporting_for_web.html#calling-javascript-from-script work for accessing window in an html build? There's a bunch of issues with trying to use that eval function for anything but...

According to [this](https://godotengine.org/qa/19036/possible-javascript-singleton-request-game-when-exported) you might be able to get serialized (string) data back from Javascript.eval, which would at least allow you to do some bidirectional communication, but it's going to...

Probably a good idea to have a docs page - not everyone likes to read source code for api usage. To be honest, it would be better to have a...

Don't know if you got your answer already, but scriptjs doesn't use xhr ("ajax") to load its scripts. It creates a script element in the DOM that loads the scripts...

So this was slowing me down quite a bit since it was causing valid Javascript to be marked as a compiler error. I decided to just hack the webpack configs...

Spent some time trying to get this working and it seems like monaco-typescript doesn't expose a few options that might enable JSX support. Don't have enough experience with the codebase...

Had some time to look a bit more into this... unfortunately it seems like this would require some significant changes to monaco-typescript's tokenization.ts which would be better done by a...