Haoyu Qiu

Results 116 comments of Haoyu Qiu

Use the "Localized" option in the Wrench menu. ![Peek 2023-11-06 15-02](https://github.com/godotengine/godot-docs-l10n/assets/372476/61e0f60d-6bd4-4c19-a2ad-ebc5ede10736) It's not turned on by default because these English names are useful in code. To changed the default behavior,...

> You can add gender as an explanation, that way the information will be shown in the glossary sidebar. Users tend to also mark these as terminology, so it pollutes...

> Like, why allocate 32 bytes when you can allocate 20. For 2 elements, it will be 48, although there is 40 real data there. See this explaination by Juan:...

Just my two cents: It's unnecessary to explicitly mention the type here. The function signature already contains the return type :stuck_out_tongue: > it will return an empty array

> By the way this currently doesn't seem to survive the editor restart or layout load from a saved preset (goes back to being only text) @passivestar Ah yes, it...

Restoring layout should correctly apply tab style now :)

> Could this be a method of `Quat` instead of `Vector3`? Could be. The downside is that you have to create an empty Quat first, as there is no static...

Changed to `Quat.set_rotation(from, to)`. Just noticed that `Quat` already has similar methods `set_euler(euler)` and `set_axis_angle(axis, angle)`. So I adapted the naming.

CONNECT is for talking to a proxy server, asking the host to establish a tunnel to a third party server. It's fine for `HTTPClient` because making connection to host is...