Pinned Loading
-
-
-
mbrlabs/Lorien
mbrlabs/Lorien PublicInfinite canvas drawing/whiteboarding app for Windows, Linux and macOS. Made with Godot.
-
lua string splitting by delimiter, w...
lua string splitting by delimiter, with limiting the result 1function string:split(delimiter, max_matches)
2-- Split a string by delimiter. The resulting table will be of size #max_matches.
3max_matches = max_matches or #self
4assert(max_matches > 0, "max_matches must be more than 0!")
5local result = {}
-
a godot 4 function to get MeshInstan...
a godot 4 function to get MeshInstances under the cursor 1func pick(in: Node3D) -> Array:
2var camera = get_viewport().get_camera_3d()
3var center_pos = get_viewport().size / 2.0
4var mouse_pos = get_viewport().get_mouse_position()
5var from = camera.project_ray_origin(center_pos)
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.