Skip to content
View Gamepro5's full-sized avatar
:shipit:
Making a game!
:shipit:
Making a game!

Highlights

  • Pro
Block or Report

Block or report Gamepro5

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. Gamepro5.com Gamepro5.com Public

    A secondary repository for submitting issue reports, since the main code is private.

  2. Custom_CharacterBody3D_Movement_System Custom_CharacterBody3D_Movement_System Public

    A fully custom made replacement for Godot 4's primitive "move_and_slide()" function.

    GDScript 18 3

  3. Fandom_Wiki_Fix Fandom_Wiki_Fix Public

    We can't change the fact that Fandom destroyed all that was holy with Gamepedia wikis, but we can try. I wrote this Tampermonkey script to try to at least make the wikis usable again.

    JavaScript

  4. photosphere.js photosphere.js Public

    A WebGL library for displaying photospheres in a canvas.

    JavaScript 1

  5. From https://youtu.be/DuOmFVHqKsU From https://youtu.be/DuOmFVHqKsU
    1
    func search_and_set_viewmodel_fov_to_all_shaders_in_tree(node, fov):
    2
    	for i in node.get_children():
    3
    		search_and_set_viewmodel_fov_to_all_shaders_in_tree(i, fov)
    4
    		if i is MeshInstance3D:
    5
    			for j in range(i.mesh.get_surface_count()):