Skip to content
View Yagich's full-sized avatar
💢
💢

Organizations

@Trijam-Game-Jam
Block or Report

Block or report Yagich

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. bitwise-aiden/YATL bitwise-aiden/YATL Public

    Yet another Twitch library

    GDScript 1

  2. memes3d memes3d Public

    memes

    GDScript

  3. no-obs-ws no-obs-ws Public

    An obs-websocket client and translation layer for Godot 4.2

    GDScript 7 2

  4. mbrlabs/Lorien mbrlabs/Lorien Public

    Infinite canvas drawing/whiteboarding app for Windows, Linux and macOS. Made with Godot.

    GDScript 5k 210

  5. lua string splitting by delimiter, w... lua string splitting by delimiter, with limiting the result
    1
    function string:split(delimiter, max_matches)
    2
    	-- Split a string by delimiter. The resulting table will be of size #max_matches.
    3
    	max_matches = max_matches or #self
    4
    	assert(max_matches > 0, "max_matches must be more than 0!")
    5
    	local result = {}
  6. a godot 4 function to get MeshInstan... a godot 4 function to get MeshInstances under the cursor
    1
    func pick(in: Node3D) -> Array:
    2
    	var camera = get_viewport().get_camera_3d()
    3
    	var center_pos = get_viewport().size / 2.0
    4
    	var mouse_pos = get_viewport().get_mouse_position()
    5
    	var from = camera.project_ray_origin(center_pos)